* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

.navbar-brand {
    width: 10vw;
    height: 8vh;
}

@media (max-width: 568px) {
    .navbar-brand {
        width: 30vw;
        height: 8vh;
    }
}

.nav-link {
    color: #555;
    font-weight: 500;
}

.nav-link:hover {
    color: #000;
}

.hero-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-section .lead {
    color: #6c757d;
}

.tride-img {
    transform: skew(-1deg, 10deg);

}

.training-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.training-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.training-card:hover {
    transform: translateY(-10px);
}

.training-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    width: 100%;
}

.training-card .card-content h3 {
    margin-bottom: 0.25rem;
}

.training-card .card-content p {
    margin-bottom: 0;
    font-weight: 500;
    color: #ddd;
}

.volatility-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}

.volatility-image-container {
    margin-top: 2rem;
    background-image: url('https://res.cloudinary.com/dl4viyuwh/image/upload/v1753943460/Add_Poster_w4ez4k.jpg');
    height: 50vh;
    border-radius: 1.5rem;
    background-size: cover;
}

.Accurate-card {
    width: 20vw;
    padding: 30px;
    color: #000;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-right: 2rem;
    height: 40vh;
    font-size: 0.5rem;
    overflow: hidden;
}

.dot {
    vertical-align: middle;
    font-size: 1.5rem;
}

.heading-accurate {
    font-weight: bolder;
    color: #000;
}

.video-section {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: white;
    overflow: hidden;
    padding: 2rem;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    object-fit: cover;
}

.heading-treding {
    font-size: 10px;
    font-weight: bold;
}

.logo {
    margin: 2rem 0 0 0;
    font-size: 12px;
}

.logo-sg {
    text-decoration: overline;
    text-decoration-color: #fff;
    text-decoration-thickness: 2px;
    font-weight: bold;
    font-size: 12px;
    margin-right: 1rem;
}

.common-font {
    font-weight: 500;
    font-family: 'Roboto';
    margin-right: 1rem;
}