/* =====================================================
   ICFRE GUEST HOUSE BOOKING PORTAL - HOME PAGE
===================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Segoe UI", Arial, sans-serif;

    color: #333;
    background: #f6f8f6;
}


/* =====================================================
   COMMON
===================================================== */

.home-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =====================================================
   WELCOME SECTION
===================================================== */

.welcome-section {
    background: #ffffff;

    border-bottom: 1px solid #e5e5e5;

    padding: 55px 0;
}

.welcome-section .home-container {

    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    gap: 70px;

    align-items: center;
}


/* Welcome Content */

.welcome-content {
    max-width: 720px;
}

.welcome-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #287a3e;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 15px;
}

.welcome-label i {
    font-size: 16px;
}


.welcome-content h1 {

    margin: 0;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 600;

    color: #333;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.welcome-content h1::after {
    content: "";
    display: block;
    width: 130px;
    height: 3px;
    background:var(--theme-2-green);
    margin-top: 10px;
    border-radius: 2px;
}

.welcome-content h1 span {
    display: block;

    color: #287a3e;
}


.welcome-content p {

    margin: 20px 0 28px;

    max-width: 680px;

    font-size: 16px;

    line-height: 1.7;

    color: #666;
}


/* =====================================================
   BUTTONS
===================================================== */

.welcome-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.btn-primary,
.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 22px;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;

    transition: 0.2s;
}


.btn-primary {

    color: #ffffff;

    background: #287a3e;

    border: 1px solid #287a3e;
}

.btn-primary:hover {
    background: #236b36;
}


.btn-outline {

    color: #287a3e;

    background: #ffffff;

    border: 1px solid #287a3e;
}

.btn-outline:hover {
    background: #f0f7f1;
}


/* =====================================================
   BOOKING BOX
===================================================== */

.welcome-box {

    background: #f7faf7;

    border: 1px solid #dfe8e0;

    border-radius: 6px;

    padding: 32px;
}


.welcome-box-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e6f2e8;

    color: #287a3e;

    font-size: 25px;

    margin-bottom: 20px;
}


.welcome-box h3 {

    margin: 0 0 10px;

    font-size: 20px;

    font-weight: 600;

    color: #333;
}


.welcome-box p {

    margin: 0 0 20px;

    color: #666;

    font-size: 14px;

    line-height: 1.6;
}


.box-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #287a3e;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;
}

.box-link:hover {
    text-decoration: underline;
}


/* =====================================================
   QUICK ACCESS
===================================================== */

.quick-section {

    background: #f6f8f6;

    padding: 45px 0;
}


.section-heading {

    margin-bottom: 25px;
}

.section-heading h2 {

    margin: 0 0 6px;

    color: #333;

    font-size: 25px;

    font-weight: 600;
}


.section-heading p {

    margin: 0;

    color: #777;

    font-size: 14px;
}


/* Quick Grid */

.quick-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.quick-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e3e7e3;

    border-radius: 5px;

    text-decoration: none;

    color: #333;

    transition: 0.2s;
}


.quick-item:hover {

    border-color: #287a3e;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}


.quick-icon {

    min-width: 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #edf6ef;

    color: #287a3e;

    border-radius: 4px;

    font-size: 19px;
}


.quick-item h3 {

    margin: 0 0 4px;

    font-size: 16px;

    font-weight: 600;
}


.quick-item p {

    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    color: #777;
}


.quick-arrow {

    margin-left: auto;

    color: #aaa;

    font-size: 13px;
}


/* =====================================================
   INFORMATION
===================================================== */

.information-section {

    background: #ffffff;

    padding: 45px 0 45px;
}


.information-box {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 25px;

    border: 1px solid #dfe6df;

    border-left: 4px solid #287a3e;

    background: #fafcf9;

    border-radius: 4px;
}


.information-icon {

    color: #287a3e;

    font-size: 24px;
}


.information-content {

    flex: 1;
}


.information-content h3 {

    margin: 0 0 5px;

    font-size: 16px;

    font-weight: 600;
}


.information-content p {

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #666;
}


.information-link {

    white-space: nowrap;

    color: #287a3e;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;
}


.information-link:hover {
    text-decoration: underline;
}

.guest-house-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .welcome-section .home-container {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .welcome-content h1 {
        font-size: 38px;
    }

    .welcome-box {
        max-width: 600px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .home-container {
        padding: 0 15px;
    }


    .welcome-section {
        padding: 35px 0;
    }


    .welcome-content h1 {
        font-size: 31px;
    }


    .welcome-content p {
        font-size: 14px;
    }


    .welcome-buttons {
        width: 100%;
    }


    .btn-primary,
    .btn-outline {
        flex: 1;
        padding: 11px 15px;
    }


    .welcome-box {
        padding: 25px;
    }


    .quick-section {
        padding: 35px 0;
    }


    .quick-grid {
        grid-template-columns: 1fr;
    }


    .information-section {
        padding-bottom: 35px;
    }


    .information-box {

        align-items: flex-start;

        flex-wrap: wrap;

        padding: 18px;
    }


    .information-content {
        width: calc(100% - 45px);
    }


    .information-link {

        margin-left: 42px;

        margin-top: 5px;
    }

}

```css
/* =================================
   Guest House Image Slider
   ================================= */

.guest-house-slider {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
    border: 1px solid #e5e5e5;
}

/* Image area */
.guest-slider-image {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 5px;
}

.guest-slider-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Previous / Next buttons */
.guest-slider-prev,
.guest-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease;
}

.guest-slider-prev:hover,
.guest-slider-next:hover {
    background: rgba(0, 0, 0, 0.70);
}

.guest-slider-prev {
    left: 12px;
}

.guest-slider-next {
    right: 12px;
}

/* Guest House information */
.guest-house-info {
    padding: 14px 16px 8px 16px;
}

.guest-house-info h3 {
    margin: 0 0 7px 0;
    color: var(--theme-2-green, #710000);
    font-size: 18px;
    font-weight: 500;
}

.guest-house-info p {
    margin: 0;
    color: #666666;
    font-size: 13px;
}

.guest-house-info p i {
    margin-right: 5px;
    color: var(--theme-2-green, #710000);
}

/* Dots */
.guest-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 10px 13px 10px;
}

.guest-dot {
    width: 8px;
    height: 8px;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: #cccccc;
    cursor: pointer;
}

.guest-dot.active {
    background: var(--theme-2-green, #710000);
}


/* =================================
   Mobile
   ================================= */

@media (max-width: 700px) {

    .guest-house-slider {
        max-width: 100%;
        margin-top: 25px;
    }

    .guest-slider-image {
        height: 230px;
    }
}

```