.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    /* important: video fills container */
    z-index: -1;
    /* send video to back */
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay for readability */
    padding: 20px 40px;
    border-radius: 10px;

    @media (max-width:768px) {
        padding: 10px;
    }
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.btn-custom {
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 30px;
}

.title-font {
    font-size: 3rem;

    @media (max-width:768px) {
        font-size: 2rem;
    }
}

.title-desc-font {
    font-size: 1.2rem;

    @media (max-width:768px) {
        font-size: 1rem;
    }
}

/* services section */
.services-section {
    margin: auto;
    padding: 3rem;

    @media (max-width:768px) {
        padding: 3rem 1rem;
    }
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.service-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h5 {
    font-weight: 700;
    margin-top: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}

.btn-custom {
    background-color: #1a56db;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    margin-top: 20px;
}

.btn-custom:hover {
    background-color: #0f3ea5;
}

/* feature section css */
.feature-section {
    margin: auto;
    padding: 3rem;
    background: #f8f9fa;

    @media (max-width:768px) {
        padding: 3rem 1rem;
    }
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card .divider {
    width: 50px;
    height: 3px;
    background: #0d6efd;
    /* bootstrap primary color */
    margin: 10px auto;
    border-radius: 5px;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

/* story section */
.story-section {
    margin: auto;
    padding: 3rem;

    @media (max-width:768px) {
        padding: 3rem 1rem;
    }
}

.story-section img {
    max-width: 100%;
    border-radius: 10px;
}

.story-text h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.story-text strong {
    color: #000;
}

.story-text a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.story-text a:hover {
    text-decoration: underline;
}