/* =========================================
   RESPONSIVE DESKTOP STYLES (Laptops/PCs)
   ========================================= */
@media (min-width: 992px) {
    /* 1. Shift the middle card down */
    .card-offset {
        transform: translateY(60px);
    }

    /* 2. Keep the shift AND add the tilt when hovering the middle card */
    .card-offset:hover {
        transform: translateY(60px) rotate(3deg);
    }

    /* 3. Apply the default tilt to the third card (if you have one) */
    .card-tilt {
        transform: rotate(4deg); /* Adjust angle as needed */
    }

    /* 4. Increase the hover tilt for the third card */
    .card-tilt:hover {
        transform: rotate(8deg);
    }

    .basic-card:hover {
        transform: rotate(8deg);
    }
}

/* =========================================
   RESPONSIVE MOBILE STYLES (Mobile Phones)
   ========================================= */
@media (max-width: 425px) {
    
    .card-text h1{
        font-size: 37px;
    }
    .card-text p{
        font-size: 14px;
    }
}


@media (max-width: 768px) {

    .hero-section{
        min-height: 60vh;
    }

    .wavelogo{
        display: none;
    }

    /* Header  */
    .adsbanner {
        min-height: 210px;
    }

    .title-ads {
        font-size: 50px;
    }
    /* Info Card  */

    .res-center {
        display: flex;
        justify-content: space-around;
    }

    .card-discover {
        border-radius: 10px;
        border: 25px solid #000;
        padding: 20px 20px 30px;
        width: 100%; /* Changed from fixed 369px so it fits all phone sizes */
        max-width: 369px;
        height: auto; /* Changed from fixed height to prevent text overflowing */
        transition: all 0.3s ease;
    }

    .card-discover-body {
        display: flex;
        padding-bottom: 10px;
        justify-content: center;
        align-items: center;
    }

    .card-discover-body-2 {
        display: flex;
        padding-bottom: 10px;
        justify-content: center;
        align-items: center;
    }

    .dot-line {
        font-size: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .card-discover-title h1 {
        color: #000;
        font-family: Lato;
        font-size: 30px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        letter-spacing: 1.44px;
    }

    .card-discover-title p {
        color: #000;
        font-family: Lato;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.6px;
    }

    .card-discover-icon {
        width: 90px;
        height: 100px;
        position: relative;
        margin-right: 20px;
        flex-shrink: 0;
    }

    /* Video Section  */

    .res-opposite {
        flex-direction: column-reverse;
    }

    .vid-card {
        width: 100%;
        height: 100%;
    }

    .card-text h1{
        font-size: 37px;
    }
    .card-text p{
        font-size: 14px;
    }

    .vid-text p {
        font-size: 16px;
    }

    /* Guide Card  */
    .guide-card {
        height: 356px;

        margin-top: 36px;
    }

    .card-statistic {
        display: flex;
        padding-top: 80px;
        padding-bottom: 90px;
        margin: 22px;
    }

    /* Footer  */
    .nav-foot ul li a {
        padding: 8px 6px;
        font-size: 12px;
    }

    .evada-foot {
        padding: 30px 0px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .eva-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-left: 31px;
    }

    .eva-logo {
        margin-bottom: 26px;
        margin-top: 20px;
    }
}


@media (min-width: 992px) {
    
}