body, html {
    height: 100vh;
    margin: 0;
    font-family: 'Poppins',sans-serif;
}

header {
    background: url('../images/headerbackground.avif') no-repeat center center/cover;
    height: 100vh;
    color: white;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay */
    z-index: 1;
}

.header-content {
    position: absolute;
    z-index:2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navbar {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

 
.navbar-brand, .navbar-nav .nav-link, .btn-outline-warning {
    font-size: 1rem;
}
.active {
    color: #ffc107 !important; /* Bootstrap's warning color */
  }

.display-3 {
    font-size: 2.5rem;
    font-weight: 900; /* Adjusted font weight for thicker text */
}

.lead {
    font-size: 1.25rem;
}

h1, h5 {
    font-weight: 700;
}
.card {
    background-color: transparent !important;
    border: none !important;
}
.card-title {
    font-weight: 400;
}
.card-link {
    text-decoration: none; /* Remove underline from links */
    color: white;
}

.card-body {
    border: 1px solid #ffffff;
    padding: 20px;
   
}
.card-link:hover .card-body {
    border-color: #ffc107; /* Change border color on hover */
}


/* Custom button-link style */
.btn-custom-link {
    border: 1px solid #ffc107;
    color: #000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.btn-custom-link:hover {
    background-color: #ffc107;
    color: #000;
}

/* Custom button style */
.btn-custom {
    border: 1px solid #ffc107;
    color: #ffffff;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #ffc107;
    color: #000;
}
/* Section Header Styles */
.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #ffc107;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

* Team section styles */
#team-section {
    background-color: #f8f9fa;
    min-height: 100vh; /* Ensure it fills the viewport */
    padding-top: 60px; /* Account for the height of the sticky navbar */
     
}

#team-section h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

#team-section .card {
    border: none;
    transition: transform 0.3s ease;
}

#team-section .card:hover {
    transform: scale(1.05);
}

#team-section .card-img-top {
    border-radius: 0;
}

#team-section .card-body {
    padding: 15px;
}

#team-section .card-title {
    font-weight: 700;
}

#team-section .card-text {
    color: #6c757d;
}

 .fullscreen{
 min-height: 100vh;
 }
 /* Remove full screen height on small screens */
@media (max-width: 768px) {
    .fullscreen {
        min-height: auto; /* Remove full screen height */
        height: auto; /* Set height to auto */
        padding-top: 40px; /* Adjust padding for small screens */
        padding-bottom: 40px; /* Adjust padding for small screens */
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    color: #000;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Progress bar styles */
.progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    margin-bottom: 10px;
    height: 10px;
    border-radius: 5px;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: #ffc107;
    border-radius: 5px;
}

.investment-type {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    
}

/* Form steps */
.form-step {
    display: none;
}

.form-step-active {
    display: block;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000;
}

input[type="text"], input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button.next-btn, button[type="submit"] {
    background-color: transparent;
    color: #000;
    padding: 5px 20px;
    border: 3px solid #ffc107;
    border-radius: 10px;
    cursor: pointer;
}

button.next-btn:hover, button[type="submit"]:hover {
    background-color: #ffc107;
}

