﻿

@media (max-width: 768px) {
    .hero-title

{
    margin-top: 0px !important;
    font-size: 32px;
}

.hero-subtext {
    font-size: 16px;
    margin-bottom: 30px !important;
}

.hero-button {
    padding: 10px 20px;
    font-size: 14px;
}

.main-heads {
    font-size: 26px;
    margin-top: 40px !important;
}

}

@media (max-width: 375px ) {
    .hero-section {
        height: 385px !important;
    }

    .hero-content {
        padding: 10px 0rem !important;
        margin: 0px !important;
    }
}

@media (max-width: 430px ) {
    .hero-section {
        height: 426px !important;
    }

    .hero-content {
        padding: 10px 0rem !important;
        margin: 0px !important;
    }
}

@media (min-width: 376px) and (max-width: 414px) {
    .hero-section {
        height: 429px !important;
    }

    .hero-content {
        padding: 10px 0rem !important;
        margin: 0px !important;
    }
}


@media (min-width: 415px) and (max-width: 480px) {
    .hero-section {
        height: 385px !important;
    }

    .hero-title {
        margin-top: 25px !important;
        font-size: 40px !important;
    }

    .hero-subtext {
        font-size: 14px;
        margin-bottom: 30px !important;
    }

    .hero-content {
        padding: 0px !important;
    }

    .main-heads {
        font-size: 22px;
    }

    .hero-button {
        padding: 8px 16px;
    }
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    /*         align-items: center;
            justify-content: center;
            text-align: center;
            color: white; */
}

.hero-overlay {
    /*         background-color: rgba(0, 0, 0, 0.5);
     */ padding: 20px;
    width: 100%;
    height: 100%;
}

/* .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: auto;
        } */
/*
        .hero-title {
            margin-top: 50px;
            font-size: 48px;
            font-weight: bold;
        } */

.hero-subtext {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
}

.hero-button {
    background-color: #f36d1a;
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

    .hero-button:hover {
        background-color: White;
        text-decoration: none;
        color: black;
    }

.Card {
    border: 1px;
    background: #f0f5f7 !important;
    padding: 20px 35px 20px 36px;
}

.Card-title h2 {
    color: black !important;
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-start;
}

.View-btn {
    width: 100%;
    background: #f36d1a;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 10px;
    margin-top: 33px;
    text-align: center;
}

    .View-btn:hover {
        text-decoration: none;
        color: white;
    }

.btn-feature {
    display: flex;
    justify-content: center;
}

.card-body {
    line-height: 1.6;
    font-size: 16px;
}

.cm-feature-card {
    background: white;
    border-radius: 0;
    padding: 35px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

    .cm-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #f36d1a, #f36d1a );
    }

    .cm-feature-card:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.cm-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.cm-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f36d1a, #f36d1a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 12px rgb(25 24 146 / 30%);
}

.cm-card-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.2;
}

.cm-card-body {
    /* font-size: 1.1rem; */
    color: #718096;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.cm-btn-feature {
    text-align: center;
}

.cm-view-btn {
    background: linear-gradient(135deg, #f36d1a, #f36d1a);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgb(25 24 146 / 30%);
    position: relative;
    overflow: hidden;
}

    .cm-view-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .cm-view-btn:hover::before {
        left: 100%;
    }

    .cm-view-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgb(25 24 146 / 30%);
        text-decoration: none;
        color: white;
    }

    .cm-view-btn:active {
        transform: translateY(0);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .cm-feature-card {
        padding: 25px;
    }

    .cm-card-title h2 {
        font-size: 1.7rem;
    }

    .cm-card-body {
        font-size: 1rem;
    }

    .cm-view-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cm-feature-card {
        padding: 20px;
    }

    .cm-card-title h2 {
        font-size: 1.5rem;
    }
}

.hero-title {
    color: #f36d1a;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); */
}

.hero-subtitle {
    color: #496da6;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 18px;
    padding: 70px 2rem;
    color: white;
}

