.elementor-4002 .elementor-element.elementor-element-57b1d1d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4002 .elementor-element.elementor-element-ed335fd{--display:flex;}.elementor-4002 .elementor-element.elementor-element-73f5710{text-align:center;}.elementor-4002 .elementor-element.elementor-element-73f5710 .elementor-heading-title{font-family:"Tahoma", Sans-serif;font-weight:600;color:#E19C41;}.elementor-4002 .elementor-element.elementor-element-ab4b9ee{text-align:justify;font-family:"Tahoma", Sans-serif;font-weight:400;color:#4C4C4C;}.elementor-4002 .elementor-element.elementor-element-71f6b03{text-align:center;}.elementor-4002 .elementor-element.elementor-element-71f6b03 .elementor-heading-title{font-family:"Tahoma", Sans-serif;font-weight:600;color:#E19C41;}.elementor-4002 .elementor-element.elementor-element-9b11bcf{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-4002 .elementor-element.elementor-element-ddbfa25{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4002 .elementor-element.elementor-element-8e67cd1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4002 .elementor-element.elementor-element-3e8063c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4002 .elementor-element.elementor-element-410b999{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-4002 .elementor-element.elementor-element-6f6b833{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4002 .elementor-element.elementor-element-dd246ec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4002 .elementor-element.elementor-element-658ad71{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-4002 .elementor-element.elementor-element-ddbfa25{--width:33.3%;}.elementor-4002 .elementor-element.elementor-element-8e67cd1{--width:33.3%;}.elementor-4002 .elementor-element.elementor-element-3e8063c{--width:33.3%;}.elementor-4002 .elementor-element.elementor-element-6f6b833{--width:33.3%;}.elementor-4002 .elementor-element.elementor-element-dd246ec{--width:33.3%;}.elementor-4002 .elementor-element.elementor-element-658ad71{--width:33.3%;}}/* Start custom CSS for container, class: .elementor-element-9b11bcf *//* Card Container Styling */
.safari-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 450px; /* Adjust width as needed */
    margin: 20px auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Hover effect for a "Better" feel */
.safari-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image Section */
.card-image-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-card:hover .card-image-box img {
    transform: scale(1.05);
}

/* Content Padding */
.card-content-box {
    padding: 25px;
    text-align: left;
}

/* Title Styling */
.card-title {
    color: #87a34a; /* Mossy Green */
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

/* Tagline Styling */
.card-tagline {
    color: #707a7c;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Divider Line */
.card-divider {
    height: 1px;
    background-color: #7c2e2e; /* Dark Red from original */
    width: 100%;
    margin-bottom: 20px;
    opacity: 0.6;
}

/* Info Grid Layout */
.card-info-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: #2e9a4d; /* Bright Green */
    font-weight: 700;
    font-size: 13px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.info-value {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.4;
}

/* Button Styling */
.card-action {
    display: flex;
    justify-content: center;
}

.explore-button {
    background-color: #e6842e; /* Orange */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.explore-button:hover {
    background-color: #cf7120;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .card-info-grid {
        flex-direction: column;
        gap: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-410b999 *//* Card Container Styling */
.safari-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 450px; /* Adjust width as needed */
    margin: 20px auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Hover effect for a "Better" feel */
.safari-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image Section */
.card-image-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-card:hover .card-image-box img {
    transform: scale(1.05);
}

/* Content Padding */
.card-content-box {
    padding: 25px;
    text-align: left;
}

/* Title Styling */
.card-title {
    color: #87a34a; /* Mossy Green */
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

/* Tagline Styling */
.card-tagline {
    color: #707a7c;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Divider Line */
.card-divider {
    height: 1px;
    background-color: #7c2e2e; /* Dark Red from original */
    width: 100%;
    margin-bottom: 20px;
    opacity: 0.6;
}

/* Info Grid Layout */
.card-info-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: #2e9a4d; /* Bright Green */
    font-weight: 700;
    font-size: 13px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.info-value {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.4;
}

/* Button Styling */
.card-action {
    display: flex;
    justify-content: center;
}

.explore-button {
    background-color: #e6842e; /* Orange */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.explore-button:hover {
    background-color: #cf7120;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .card-info-grid {
        flex-direction: column;
        gap: 15px;
    }
}/* End custom CSS */