<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* MICE Section */
.component-section {
    background: linear-gradient(135deg, #034f32, #90b6aa);
}

.component_heading {
    font-size: 2.5rem;
    color: white;
    /* margin-bottom: 20px; */
    text-align: center;
    font-weight: bold;
}

.container-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* padding: 60px; */
}

.container-box .box1 {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    width: 250px;
    /* padding: 20px; */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px; /* Set fixed height for all boxes */
}

.container-box .box1:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.container-box .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 15px; */
}

.container-box .icon img {
    width: 50px;
    height: 50px;
}

.container-box h1 {
    font-size: 20px;
    color: #121111;
    /* margin-bottom: 10px; */
}

.container-box p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .container-box {
        padding: 40px;
        gap: 15px;
    }

    .box1 {
        width: 200px;
    }

    h1 {
        font-size: 18px;
    }

    p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .container-box {
        padding: 20px;
    }

    .box1 {
        width: 180px;
        padding: 15px;
    }

    h1 {
        font-size: 16px;
    }

    p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container-box {
        padding: 10px;
        gap: 10px;
    }

    .box1 {
        width: 100%;
        padding: 10px;
    }

    h1 {
        font-size: 14px;
    }

    p {
        font-size: 11px;
    }
}


/* How Travel MICE Services Work */
.component-work-section {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.work-heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.container-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 40px 10px;
}

.card-b {
    width: 18rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-b:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #075419;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #095b1b;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:active {
    background-color: #1e7e34;
    transform: scale(0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .container-box {
        padding: 0px;
    }

    .card {
        width: 90%;
    }
    .container-box .box1 {width: 100%;margin-bottom: 15px;}
    .card-b {width: 100%;}
}

@media (max-width: 480px) {
    .work-heading {
        font-size: 2rem;
    }

    .card {
        width: 100%;
    }

    .card-text {
        font-size: 0.8rem;
    }
}



/* How Travel MICE Services Work */





/* Benefits of MICE Services */
.services {
    padding: 40px 20px;
    text-align: center;
    /*background-color: #f4f4f4;*/
}

.service_heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.container-box-b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.service_box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    background-color: #1d5c38; 
}

.service_body {
    padding: 20px;
}

.service_title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d0d0e;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service_box:hover .service_title {
    color: #f0f4f8; 
}

.service_text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service_box:hover .service_text {
    color: #ffffff; 
}

@media (max-width: 768px) {
    .service_heading {
        font-size: 2rem;
    }

    .service_body {
        padding: 15px;
    }

    .service_title {
        font-size: 1.2rem;
    }

    .service_text {
        font-size: 0.9rem;
    }
}

/* Benefits of MICE Services */
.Benefits-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #dce1df, #90b6aa);

    text-align: center;
}
.Benefits_heading{
    font-size: 2.5rem;
    color:#333;
    /* margin-top:10px; */
    text-align: center;
    font-weight: bold;
}
.container-box-c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.benefits {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
 .benefits .icon{

    display: flex;
    justify-content: center;
    align-items: center;

 }
.benefits::before, 
.benefits::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.benefits::before {
    background: linear-gradient(135deg, #1d5c38, #6b9f8a);
    transform: scale(0.9);
    opacity: 0;
}

.benefits::after {
    background: rgba(0, 0, 0, 0.03);
    transform: scale(1.1);
    opacity: 0;
}

.benefits:hover::before {
    transform: scale(1);
    opacity: 1;
}

.benefits:hover::after {
    transform: scale(1.05);
    opacity: 1;
}

.benefits:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.icon img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.benefits h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.benefits:hover h1 {
    color: #fff;
}

.benefits p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.benefits:hover p {
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .container-box-c {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .benefits {
        padding: 15px;
    }

    .benefits h1 {
        font-size: 1.2rem;
    }

    .benefits p {
        font-size: 0.8rem;
    }
    .container-box-b {max-width: 100%;padding: 0px;}
}
/* Benefits of MICE Services */
  .mice-hero {
            background:url(../Member/slider-3.jpg);
            color: #fff;
            text-align: center;
            padding: 60px 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .mice-hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color:#fd7e14;
        }

        .mice-hero p {
            font-size: 1.2rem;
            color:#fff;
            margin: 0;
        }

        .mice-section {
            margin-bottom: 50px;
        }

        .mice-section h2 {
            font-size: 2.5rem;
            color:#000;
            text-align: center;
            margin-bottom: 20px;
        }

        .mice-services-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
         .mice-service-item img {
    height: 50px;
    width: 50px;
}

.mice-service-item {
    background: #fff;
    border-radius: 8px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: border-radius 0.3s ease, box-shadow 0.3s ease;
}

.mice-service-item:hover {
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: linear-gradient(135deg, #1d5c38, #6b9f8a);
}

        

        @media (max-width: 768px) {
            .mice-hero h1 {
                font-size: 2rem;
            }

            .mice-hero p {
                font-size: 1rem;
            }
        }
    
</pre></body></html>