
@media screen and (max-width: 360px) {

    .search-btns {
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        cursor: pointer;
        color: #ff1e3b;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .search-btns:hover {
        background-color: #45a049;
    }

    .search-btns i {
        font-size: 18px;
    }

    header {
        background-color: #3498db;
        color: white;
        text-align: center;
        padding: 20px 10px;
        margin-top: -60px;
    }

    header h1 {
        font-size: 1.7rem;
        margin: 0;
        display: inline;
    }

    header h1 span.intelli {
        color: navy;
    }

    header h1 span.host {
        color: burlywood;
    }

    header p {
        font-size: 1rem;
        margin-top: 10px;
    }

    h2 {
        font-size: 1.5rem;
        color: #e91e63;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .rooms {
        padding: 40px 10px;
    }

    .room-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .room-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .room-item:hover {
        transform: scale(1.05);
    }

    .room-item img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
    }

    .room-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .room-item p {
        color: #555;
        font-size: 1rem;
    }

    .services {
        padding: 40px 5px;
    }

    .service-list {
        display: grid;
        gap: 10px;
        grid-template-columns:repeat(2,1fr);
    }

    .service-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .service-item:hover {
        transform: scale(1.05);
    }

    .service-item img {
        width: 120px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
    }

    .service-item h3 {
        color: #e91e63;
        margin-top: 10px;
        font-size: 1rem;
    }

    .service-item p {
        color: #555;
        font-size: 0.8rem;
    }

    .security {
        padding: 40px 10px;
    }

    .security-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .security-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .security-item:hover {
        transform: scale(1.05);
    }

    .security-item img {
        width: 120px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
    }

    .security-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .security-item p {
        color: #555;
        font-size: 0.7rem;
    }

    .footer {
        padding: 15px 10px;
        font-size: 8px;
        margin-top: 0;
       
    }

    .footer-nav {
        margin-bottom: 12px;
    }

    .footer-links { 
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-links a {
        text-decoration: none;
        color: white;
        font-size: 16px;
    }

    .footer-links a:hover {
        color: #25D366;
    }

    .social-icon {
        color: white;
        font-size: 14px;
        margin: 0 8px;
        text-decoration: none;
    }

    .social-icon:hover {
        color: #25D366;
    }

    .footer p {
        margin: 0;
        font-size: 10px;
    }

}





@media screen and (max-width: 412px) {

    .search-btns {
        position: absolute;
        right: 85px;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        cursor: pointer;
        color: #ff1e3b;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .search-btns:hover {
        background-color: #45a049;
    }

    .search-btns i {
        font-size: 18px;
    }

    header {
        background-color: #3498db;
        color: white;
        text-align: center;
        padding: 20px 10px;
        margin-top: -60px;
    }

    header h1 {
        font-size: 1.8rem;
        margin: 0;
        display: inline;
    }

    header h1 span.intelli {
        color: navy;
    }

    header h1 span.host {
        color: burlywood;
    }

    header p {
        font-size: 1rem;
        margin-top: 10px;
    }

    h2 {
        font-size: 1.6rem;
        color: #e91e63;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .rooms {
        padding: 40px 10px;
    }

    .room-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .room-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .room-item:hover {
        transform: scale(1.05);
    }

    .room-item img {
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 8px;
    }

    .room-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .room-item p {
        color: #555;
        font-size: 1rem;
    }

    .services {
        padding: 40px 5px;
    }

    .service-list {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2,1fr);
    }

    .service-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .service-item:hover {
        transform: scale(1.05);
    }

    .service-item img {
        width: 130px;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .service-item h3 {
        color: #e91e63;
        margin-top: 10px;
        font-size: 1rem;
    }

    .service-item p {
        color: #555;
        font-size: 0.8rem;
    }

    .security {
        padding: 40px 10px;
    }

    .security-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .security-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .security-item:hover {
        transform: scale(1.05);
    }

    .security-item img {
        width: 130px;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .security-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .security-item p {
        color: #555;
        font-size: 0.7rem;
    }

    .footer {
        padding: 15px 10px;
        font-size: 8px;
        margin-top: 0;
    }

    .footer-nav {
        margin-bottom: 12px;
    }

    .footer-links { 
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-links a {
        text-decoration: none;
        color: white;
        font-size: 16px;
    }

    .footer-links a:hover {
        color: #25D366;
    }

    .social-icon {
        color: white;
        font-size: 14px;
        margin: 0 8px;
        text-decoration: none;
    }

    .social-icon:hover {
        color: #25D366;
    }

    .footer p {
        margin: 0;
        font-size: 10px;
    }
}






@media screen and (max-width: 414px) {

    .search-btns {
        position: absolute;
        right: 90px;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        cursor: pointer;
        color: #ff1e3b;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .search-btns:hover {
        background-color: #45a049;
    }

    .search-btns i {
        font-size: 18px;
    }

    header {
        background-color: #3498db;
        color: white;
        text-align: center;
        padding: 20px 10px;
        margin-top: -60px;
    }

    header h1 {
        font-size: 1.8rem;
        margin: 0;
        display: inline;
    }

    header h1 span.intelli {
        color: navy;
    }

    header h1 span.host {
        color: burlywood;
    }

    header p {
        font-size: 1rem;
        margin-top: 10px;
    }

    h2 {
        font-size: 1.6rem;
        color: #e91e63;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .rooms {
        padding: 40px 10px;
    }

    .room-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .room-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .room-item:hover {
        transform: scale(1.05);
    }

    .room-item img {
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 8px;
    }

    .room-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .room-item p {
        color: #555;
        font-size: 1rem;
    }

    .services {
        padding: 40px 5px;
    }

    .service-list {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2,1fr);
    }

    .service-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .service-item:hover {
        transform: scale(1.05);
    }

    .service-item img {
        width: 130px;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .service-item h3 {
        color: #e91e63;
        margin-top: 10px;
        font-size: 1rem;
    }

    .service-item p {
        color: #555;
        font-size: 0.8rem;
    }

    .security {
        padding: 40px 10px;
    }

    .security-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .security-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .security-item:hover {
        transform: scale(1.05);
    }

    .security-item img {
        width: 130px;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .security-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .security-item p {
        color: #555;
        font-size: 0.7rem;
    }

    .footer {
        padding: 15px 10px;
        font-size: 8px;
        margin-top: 0;
    }

    .footer-nav {
        margin-bottom: 12px;
    }

    .footer-links { 
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-links a {
        text-decoration: none;
        color: white;
        font-size: 16px;
    }

    .footer-links a:hover {
        color: #25D366;
    }

    .social-icon {
        color: white;
        font-size: 14px;
        margin: 0 8px;
        text-decoration: none;
    }

    .social-icon:hover {
        color: #25D366;
    }

    .footer p {
        margin: 0;
        font-size: 10px;
    }
}
@media screen and (max-width: 428px) {

    .search-btns {
        position: absolute;
        right: 95px;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        cursor: pointer;
        color: #ff1e3b;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .search-btns:hover {
        background-color: #45a049;
    }

    .search-btns i {
        font-size: 18px;
    }

    header {
        background-color: #3498db;
        color: white;
        text-align: center;
        padding: 20px 10px;
        margin-top: -60px;
    }

    header h1 {
        font-size: 1.8rem;
        margin: 0;
        display: inline;
    }

    header h1 span.intelli {
        color: navy;
    }

    header h1 span.host {
        color: burlywood;
    }

    header p {
        font-size: 1rem;
        margin-top: 10px;
    }

    h2 {
        font-size: 1.6rem;
        color: #e91e63;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .rooms {
        padding: 40px 10px;
    }

    .room-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .room-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .room-item:hover {
        transform: scale(1.05);
    }

    .room-item img {
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 8px;
    }

    .room-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .room-item p {
        color: #555;
        font-size: 1rem;
    }

    .services {
        padding: 40px 5px;
    }

    .service-list {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2,1fr);
    }

    .service-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .service-item:hover {
        transform: scale(1.05);
    }

    .service-item img {
        width: 130px;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .service-item h3 {
        color: #e91e63;
        margin-top: 10px;
        font-size: 1rem;
    }

    .service-item p {
        color: #555;
        font-size: 0.8rem;
    }

    .security {
        padding: 40px 10px;
    }

    .security-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .security-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .security-item:hover {
        transform: scale(1.05);
    }

    .security-item img {
        width: 130px;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .security-item h3 {
        color: #1e3a8a;
        margin-top: 10px;
    }

    .security-item p {
        color: #555;
        font-size: 0.7rem;
    }

    .footer {
        padding: 15px 10px;
        font-size: 8px;
        margin-top: 0;
    }

    .footer-nav {
        margin-bottom: 12px;
    }

    .footer-links { 
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-links a {
        text-decoration: none;
        color: white;
        font-size: 16px;
    }

    .footer-links a:hover {
        color: #25D366;
    }

    .social-icon {
        color: white;
        font-size: 14px;
        margin: 0 8px;
        text-decoration: none;
    }

    .social-icon:hover {
        color: #25D366;
    }

    .footer p {
        margin: 0;
        font-size: 10px;
    }
}
