.cards-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 20px;
            position: relative;
            top: 70%; /* To place it over the banner */
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .card {
            background: white;
            border-radius: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 240px;
            text-align: center;
            padding: 20px;
            transition: transform 0.3sease, box-shadow 0.3sease;
            border-bottom: 13px solid #073E90;
            height: 250px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .card img {
               width: 130px;
                height: 60px;
                margin-bottom: 15px;
                padding-left: 70px;
        }

        .card h3 {
            font-size: 23px;
            color: #333;
            margin-bottom: 10px;
        }

        .card p {
            font-size: 16px;
            color: #3a3737;
            margin: 0;
        }

@media (max-width: 600px) {
    .cards-section {
        grid-template-columns: 1fr; /* Single column layout for mobile */
    }
    
    .card {
        padding: 10px;
    }

    .card h3 {
        font-size: 16px;
    }

    .card p {
        font-size: 12px;
    }
   
    .card {
        flex: 1 1 100%; /* Mobile pe ek card per row */
        max-width: 90%;
    }
     .cards-section {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 Cards per row */
    }

    .card {
        max-width: 150px; /* Adjust card size for mobile */
    }
}


         .hero-section {
            background-image: url('../images/2.1.jpg'); /* Replace with your background image */
            background-size: cover;
            background-position: center;
            padding: 100px 20px;
            text-align: center;
            color: white;
    mix-blend-mode: multiply;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
        }

        .hero-section h1 {
            font-size: 36px;
            margin-bottom: 10px;
            text-transform: uppercase;
            color: white;
        }

        .hero-section p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .hero-section .divider {
            width: 60px;
            height: 4px;
            background-color: #00c0c0;
            margin: 10px auto;
        }

        .packages {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

         p.subheading {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
        }

        .package-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 0 20px;
        }

        .package-card {
            display: flex;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 909px;
            width: 100%;
            position: relative;
        }

        .package-card img {
            width: 33%;
            object-fit: cover;
        }

        .package-content {
            width: 47%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            text-align: left;
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 45px;
            padding-top: 45px;
        }

        .package-content h3 {
            font-size: 20px;
            font-weight: bold;
            color: #18306e;
            margin-bottom: 10px;
            text-align: left;
        }

        .package-content .info {
           font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 700;
        }

        .package-content .info i {
            color: #f24144;
            margin-right: 8px;
        }

        .package-content .info span {
            margin-right: 15px;
        }

        .package-content p {
            font-size: 15px;
            color: #777;
            margin-bottom: 15px;
            text-align: left;
        }

        .price-section .stars {
            color: #f39c12;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .package-content .btn {
            background-color: #008c8c;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            margin-top: 10px;
        }

        .package-content .btn:hover {
            background-color: #006868;
        }

        /* Highlighted Price Section */
        .price-section {
            position: absolute;
            top: 35px;
            right: 10px;
            /* background-color: #f5f5f5; */
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
            width: 20%;
        }

        .overlay{
            background-color: transparent;
    /*background-image: linear-gradient(120deg, #0000008f 0%, #5a5a5a4d 100%);*/
    opacity: 0.6;
    mix-blend-mode: multiply;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
        }

        .price-section .price {
            font-size: 30px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .price-section .btn {
            background-color: #f24144;
            color: white;
            padding: 8px 17px;
            font-size: 16px;
            border-radius: 5px;
            font-weight: 600;
        }

        .price-section .btn:hover {
            background-color: #032b6b;
        }
        
        #super{
            width: 135px;
            height: 75px; 
            margin-bottom: 15px;
            padding-left: 55px;
        }
        
        @media (max-width: 1024px) {
    .cards-section {
        gap: 15px;
    }
    .card {
        width: 200px;
        height: auto;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .cards-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
        gap: 15px;
        justify-content: center;
    }
    .card {
        width: 100%;
        max-width: 160px; /* Mobile pe cards chhote dikhne chahiye */
    }
    .card img {
        width: 111px;
        height: 50px;
        padding-left: 60px;
    }
    .card h3 {
        font-size: 16px;
    }
    .card p {
        font-size: 12px;
    }
    #super{
     width: 113px;
    height: 55px;
    padding-left: 55px;
    }
    .hero-section{
        margin-top: -250px;
        padding: 50px 20px;
    }
    .hero-section h1{
        font-size: 30px;
    }
    #dom{
        font-size: 29px;
    }
    .package-container{
        padding: 0 0px !important;
    }
    .package-card{
        height: 115px !important;
    }
    .package-card img {
    width: 40%;
    object-fit: cover;
}
.package-content {
    width: 85%;
    display: flex;
    flex-direction: column;
        justify-content: normal;
    position: relative;
    text-align: left;
    padding-left: 4px;
    padding-right: 4px;
    font-family: 'Poppins';
   
    padding-top: 10px;
}
.package-content h3 {
    font-size: 10px;
        margin-bottom: 4px;
        text-align: start;
}
.package-content .info {
    font-size: 9px;
    color: #555;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 700;
}
.package-content .info span {
    margin-right: 0px;
}
.package-content p{
    display:none;
}
.price-section{
    display: none;
}
.desktop-hide{
    display: block !important;
        margin-left: 18px;
        border-top: 1px solid black;
        padding-top: 1px;
}
#starsphone{
    display : block;
}
.stars {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 0px;
}
.price {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.row-items {
    display: flex;
    align-items: center;
    gap: 25px; /* Optional: Add space between price and button */
}
.row-items .btn {
   background-color: #f24144;
        color: white;
        padding: 2px 5px;;
        font-size: 10px;
        border-radius: 5px;
        font-weight: 600;
        margin-top: 0px;
}
    
}

.desktop-hide{
    display : none;
}

#starsphone{
    display : none;
}
/* Agar aur chhoti screen ho (like very small phones) */
@media (max-width: 480px) {
    .cards-section {
        grid-template-columns: repeat(2, 1fr); /* Chhoti screen pe bhi 2 cards */
        gap: 10px;
        padding-top: 245px;
    }
    .card {
        max-width: 181px;
        padding: 5px;
    }
     .hero-section{
        margin-top: -250px;
        padding: 40px 15px;
    }
    .hero-section h1{
        font-size: 30px;
    }
    #dom{
        font-size: 29px;
    }
}

@media (max-width: 576px) {
    #dom{
        font-size: 29px;
    }
}