
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

:root {
	--yellow: #FFBD13;
	--blue: #4383FF;
	--blue-d-1: #3278FF;
	--light: #F5F5F5;
	--grey: #AAA;
	--white: #FFF;
	--shadow: 8px 8px 30px rgba(0,0,0,.05);
}



body {
    font-family: Arial, sans-serif;
}

#openModal {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
     
}

/* .modal {
    display: none;  
    position: fixed; 
    
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.7); 
    
} */

.modal-content {
    background-color: #fff;
    margin: 5% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 100%; 
    max-width: 700px;
   
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
     
}

.modal-content h6{
    font-size: 35px;

}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

h2 {
    margin-top: 0;
}






.card-section {
    display: flex;
    /* flex-wrap: wrap;   */
    overflow-x: auto;  
    align-items: center;
    gap: 20px;
    margin-left: 200px;
}

.card-jio {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 250px; /* Fixed width for cards */
    text-align: center;
    /* flex-shrink: 0;   */
    transition: transform 0.2s;
    align-items: center;
}

.card:hover {
    transform: scale(1.05);
}

.card-image {
    width: 100%; /* Make image fill the card width */
    border-radius: 5px; /* Slightly round the image corners */
}

h3 {
    margin: 10px 0;
}

p {
    color: #666;
}



.card-l {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 180px;  
    text-align: center;
    /* flex: 1; */
    transition: transform 0.2s;
    align-items: center;
    margin-bottom: 20px;
    gap: 2rem;
    /* display: flexbox; */
}

.card-container-l {
    display: flex;  
    /* justify-content: space-between;   */
    align-items: center;  
    margin: 20px;  
    gap: 2rem;
    margin-left: 120px;
}

 
 







.container {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

h1 {
    text-align: center;
}

.rating {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
}

.star.selected {
    color: gold;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
     
}

.submi {
    width: 100%;
    padding: 10px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

 
.button {
    display: flex;
    gap: 10px; /* Space between buttons */
}

.hm, .hl {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-items: center;
}

.hm {
    background-color: #0ec4c4; /* Green */
    color: white;
}

.hm:hover {
    background-color: #0dd186; /* Darker green on hover */
}

.hl {
    background-color: #f44336; /* Red */
    color: white;
}

.hl:hover {
    background-color: #e53935; /* Darker red on hover */
}





.reviews {
    margin-top: 20px;
}

.review {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

.review h4 {
    margin: 0 0 5px;
}

.review p {
    margin: 0;
}

 



 
 



@media (max-width: 768px) {
    .card-section {
        margin-left: 10px;  /* Adjusted margin for smaller screens */
        margin-right: 10px; /* Adjusted margin for smaller screens */
    }
    .card-jio {
        width: 100%; /* Make cards take full width on small screens */
        max-width: 300px; /* Optional max width */
    }
}

@media (max-width: 480px) {
    .card-section {
        flex-direction: column; /* Stack cards vertically on very small screens */
        align-items: center; /* Center align cards */
    }
    .card-jio {
        margin-bottom: 15px; /* Space between stacked cards */
        width: 90%; /* Adjust width for better fit */
    }
}