    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        flex-direction: column;
        display: flex;
        justify-content: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Navigation Bar */

    #nav {
        top: 0;
        width: 100vw;
        height: 12vh;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        position: fixed;
        z-index: 10;
        background-color: rgb(255, 255, 255);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Navigation Bar Logo */

    #nav img {
        width: 160px;
        height: 35px;
        box-shadow: 0px 8px 15px #0000004e;
    }

    /* Naviagtion Bar Search Bar */

    #nav #search {
        border: 1.5px solid #ccd0d3;
        height: 41px;
        width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        z-index: 100;
    }

    #search span {
        display: flex;
        align-items: center;
        width: 100%;
    }

    #nav #search img {
        margin: 10px;
        width: 23px;
        height: 23px;
        box-shadow: none;
    }

    #nav #search input {
        border: none;
        width: 352px;
        height: 39px;
        border-radius: 10px;
        outline: none;
    }

    .search::placeholder {
        color: #95abbd;
        font-size: 15px;
    }

    /* Animation in Search Bar */

    .cursor {
        display: inline-block;
        width: 2px;
        height: 1em;
        background: #ffcc00;
        margin-left: 2px;
        animation: blink 0.7s steps(1) infinite;
    }

    @keyframes blink {
        50% {
            opacity: 0;
        }
    }

    /* Naviation Bar : Contact */

    #contact {
        width: 350px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    #contact #number,
    #contact #mail {
        width: 130px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    #contact #number img,
    #contact #mail img {
        width: 20px;
        height: 20px;
        box-shadow: none;
    }

    #contact #number p,
    #contact #mail p {
        font-size: 13px;
    }

    #contact #mail {
        width: 160px;
    }

    #circle {
        width: 32px;
        height: 32px;
        background-color: #CE3C3D;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    #circle:hover {
        transform: scale(1.1);
    }

    #circle img {
        width: 20px;
        height: 20px;
        box-shadow: none;
        transform: rotateZ(20deg);
    }

    #suggestionsBox {
        position: relative;
        top: 0%;
        min-height: fit-content;
        width: 100%;
        border-radius: 0 0 10px 10px;
        background: #f3f2f2;
        z-index: 1000;
        max-height: 200px;
        overflow-y: auto;
        display: block;
    }

    #suggestionsBox div {
        padding: 10px;
        cursor: pointer;
    }

    #suggestionsBox div:hover {
        background: #f0f0f0;
    }

    /* search box ended */


    main {
        margin: 100px 0 0 0;
        padding: 40px;
        background: #f8f9fa;
        width: 100vw;
        min-height: 450px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.01rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        justify-items: center;
        margin: 100px 0 0 0;
        padding: 40px;
        background: #f8f9fa;
        width: 100vw;
        min-height: 450px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.01rem;

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        justify-items: center;
        /* Center cards in their grid cells */
    }





    .destination-card {
        /* margin-top: 40px; */
        position: relative;
        border-radius: 20px;
        flex: 0 0 340px;
        height: 270px;
        background-position: center;
        background-size: cover;
        overflow: hidden;
        cursor: pointer;
        scroll-behavior: smooth;
        transition: transform 0.3s ease;

        /* new updated */
        position: relative;
        border-radius: 20px;
        width: 300px;
        /* fixed width for cards */
        height: 270px;
        background-position: center;
        background-size: cover;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;


        /* newly updated css */
        .destination-card {
            position: relative;
            border-radius: 20px;
            width: 100%;
            /* take full available grid cell width */
            max-width: 300px;
            /* don’t stretch too much */
            height: 270px;
            background-position: center;
            background-size: cover;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

    }

    .destination-card:hover {
        transform: translateY(-10px);
    }


    .card-content {
        border-radius: 20px;
        width: 250px;
        height: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .destination-card img {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        z-index: 1;
        object-fit: cover;
        transition: 0.3s ease;
    }


    .blackgrd {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        border-radius: 20px;
    }

    .destination-card h3 {
        position: absolute;
        color: white;
        z-index: 3;
        bottom: 60px;
        left: 20px;
        right: 20px;
        font-weight: 600;
        font-size: 18px;
        line-height: 1.3;
    }

    .card-content p {
        position: absolute;
        color: white;
        z-index: 3;
        bottom: 20px;
        left: 20px;
        right: 20px;
        font-size: 14px;
        opacity: 0;
        transition: 0.3s ease;
    }

    .destination-card:hover .card-content img {
        transform: scale(1.1);
    }

    .destination-card:hover .card-content p {
        opacity: 1;
    }


    /* Fotter */

    #fotter {
        z-index: 10;
        /* bottom: -15%; */
        position: fixed;
        width: 100vw;
        bottom: 0;
        /* min-height: 100%; */
        min-height: 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px 40px;
        background: #f8f9fa;
        border-top: 2px solid #CE3C3D;
    }

    #link {
        display: flex;
        align-items: center;
        gap: 20px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 100;
    }

    #link h3 {
        color: #364153;
        font-size: 16px;
    }

    .icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease;
        cursor: pointer;
    }

    .icon img {
        width: 20px;
        height: 20px;
    }

    .icon:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    #copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        color: #364153;
    }

    #copyright span {
        font-weight: 600;
        color: #364153;
    }



    /* Tablet (max-width: 1024px) */
    @media (max-width: 1024px) {
        #nav #search {
            width: 400px;
        }

        section {
            grid-template-columns: 65% 33%;
            padding: 0 3%;
        }

        .about-section,
        .form-section {
            /* width: 60%; */
            height: 98vh;
        }

        .title-section {
            /* overflow: scroll; */
            width: 80%;
            height: 45px;
        }

        .title-section ul li button {
            width: 78px;
            height: 45px;
            font-size: 13px;
        }

        .description {
            height: 9vh;
        }

        .form-title h2 {
            font-size: 1.6vw;
        }

        .form-input input,
        .form-input select,
        .form-input #submit {
            height: 7vh;
            margin: 15px 0;
            font-size: 15px;
        }

        .form-input input::placeholder {
            font-size: 15px;
            color: #95abbd;
        }
    }

    @media (max-width: 768px) {
        #nav {
            display: flex;
            gap: 50px;
            justify-content: space-around;
        }

        #nav #search input {
            border: none;
            width: 600px;
            height: 39px;
            border-radius: 10px;
            outline: none;
        }

        #nav #search {
            border: 1.5px solid #ccd0d3;
            height: 41px;
            width: 600px;
            display: flex;
            align-items: center;
            border-radius: 10px;
        }

        main {
            padding: 80px 0 50px 0;
        }

        #nav img {
            margin-left: 10px;
        }

        #nav #search input {
            width: 452px;
        }

        #contact {
            visibility: hidden;
        }

        section {
            display: grid;
            grid-template-columns: 100%;
        }

        .title h1 {
            font-size: 23px;
            color: #1E2939;
        }

        .title-section {
            overflow: hidden;
            width: 80%;
            height: 50px;
        }

        .title-section ul li button {
            height: 45px;
            width: 90px;
        }

        .form-title h2 {
            font-size: 2.1vw;
        }

        .form-section {
            height: 90vh;
        }


        .form-input input,
        .form-input select,
        .form-input #submit {
            width: 90%;
            height: 7.5vh;
            margin: 10px 0;
            border: 1px solid #c0c0c186;
            padding-left: 10px;
            border-radius: 5px;
            font-size: 14px;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }

        #fotter {
            padding: 40px 40px;
        }

        #link h3 {
            width: 90px;
            color: #364153;
            font-size: 12.5px;
        }

        .icon {
            width: 30px;
            height: 30px;
        }

        #copyright {
            font-size: 13px;
            color: #364153;
        }
    }

    @media (max-width: 426px) {
        #nav #search {
            width: 190px;
        }

        #nav #search input {
            width: 140px;
        }

        main {
            padding: 80px 0 50px 0;
        }

        section {
            display: grid;
            grid-template-columns: 100%;
        }

        .title-section {
            overflow: scroll;
            width: 95%;
        }

        .title h1 {
            font-size: 23px;
        }

        .form-title h2 {
            color: white;
            font-weight: 600;
            font-size: 3.6vw;
        }

        #fotter {
            flex-direction: column;
        }

        #link {
            margin: 15px 0;
        }

        .icon {
            width: 45px;
            height: 45px;
        }

        #link h3 {
            width: 105px;
            color: #364153;
            font-size: 15px;
        }

        #copyright {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            color: #364153;
        }
    }

    @media (max-width: 376px) {
        #nav #search {
            width: 150px;
        }

        #nav #search input {
            width: 100px;
        }

        main {
            padding: 80px 0 50px 0;
        }

        section {
            grid-template-columns: 350px;
        }

        .title-section {
            overflow: scroll;
            width: 95%;
        }

        .form-title h2 {
            color: white;
            font-weight: 600;
            font-size: 4.5vw;
        }


        #fotter {
            min-height: 90px;
            flex-direction: column;
            padding: 10px;
        }

        #link {
            margin: 15px 0;
        }

        .icon {
            width: 45px;
            height: 45px;
        }

        #link h3 {
            width: 105px;
            color: #364153;
            font-size: 15px;
        }
    }

    @media (max-width: 321px) {

        #nav {
            display: flex;
            gap: 20px;
            justify-content: space-around;
        }

        #nav img {
            width: 130px;
            height: 25px;
        }

        #nav #search {
            width: 155px;
        }

        .image {
            height: 60%;
        }

        #nav #search input {
            width: 110px;
        }

        main {
            padding: 80px 0 50px 0;
        }

        section {
            padding: 10px;
            grid-template-columns: 300px;
        }

        .about-section {
            height: 80vh;
        }

        .title-section {
            overflow: scroll;
            width: 95%;
        }

        .title h1 {
            font-size: 21px;

        }

        .form-title h2 {
            color: white;
            font-weight: 600;
            font-size: 5.8vw;
        }

        .description {
            height: 6vh;
        }

        .description h2 {
            font-size: 25px;
        }

        #fotter {
            flex-direction: column;
            padding: 10px;
        }

        #link {
            margin: 15px 0;
        }

        .icon {
            width: 30px;
            height: 30px;
        }

        #link h3 {
            width: 105px;
            color: #364153;
            font-size: 12px;
        }

        #copyright {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            color: #364153;
        }
    }