*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Inter;
}

.contactus-navbar{
    color: black;
    display: flex;
    justify-content: space-around;
}

/* Flex container for map and details side by side */
.ci-map-details-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Make details list take up less width on large screens */
.ci-map-details-flex .ci-details-list-vertical {
    flex: 1 1 350px;
    max-width: 400px;
}

.ci-map-details-flex .ci-map-iframe-mock-boxed {
    flex: 1 1 600px;
    min-width: 300px;
    max-width: 700px;
}

@media (max-width: 1100px) {
    .ci-map-details-flex {
        flex-direction: column;
        gap: 30px;
    }
    .ci-map-details-flex .ci-details-list-vertical,
    .ci-map-details-flex .ci-map-iframe-mock-boxed {
        max-width: 100%;
        min-width: 0;
    }
}
/* ==================================== */
/* Contact Information Section Styles (CI - Boxed Design) */
/* ==================================== */

.ci-contact-section-boxed {
    /* Use the light background color as the outer page background */
    background-color: #dbe7e4; 
    padding: 80px 20px;
    font-family: 'Roboto', sans-serif; 
    display: flex;
    justify-content: center;
}

.ci-section-container-boxed {
    /* Container to center the main box */
    max-width: 1300px;
    width: 100%;
}

/* --- Main Info Box (The big card) --- */
.ci-main-info-box {
    background-color: white; /* White background for the card */
    padding: 40px;
    border-radius: 8px;
    /* Soft shadow for the "box" effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); 
}

/* Section Heading inside the box */
.ci-main-heading-boxed {
    color: #3e6d62; /* Primary dark green color */
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

/* Map Styling inside the box */
.ci-map-container-boxed {
    margin-bottom: 50px;
    /* Remove individual box-shadow as the main box already has one */
    border-radius: 4px;
    overflow: hidden; 
}

.ci-map-iframe-mock-boxed {
    position: relative;
    width: 100%;
    height: 0; 
    padding-bottom: 50%; 
}

.ci-map-image-boxed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Map Info Box (Inner styles for consistency) */
.ci-map-info-box-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 280px;
    background-color: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    font-size: 13px;
    line-height: 1.5;
    color: #354e4c;
}

/* --- Vertical Contact Details List --- */

.ci-details-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px; 
    padding: 0 10px; /* Slight horizontal padding for list */
}

.ci-contact-item-vertical {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 60px; /* Space for the icon and the vertical line */
}

/* Vertical Line Styling */
.ci-contact-item-vertical:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px; 
    top: 50px; 
    bottom: -35px; 
    width: 2px;
    background-color: #e0e0e0; /* Lighter line color for contrast with the white box */
    z-index: 1;
}

/* Icon Wrapper Styling (More prominent) */
.ci-icon-wrapper-vertical {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: white;
    font-size: 20px; /* Slightly larger icon */
    background-color: #3e6d62; /* Primary green color */
    box-shadow: 0 0 0 4px rgba(62, 109, 98, 0.2); /* Subtle ring effect */
    z-index: 2; 
}

/* Text Content Container */
.ci-text-content-vertical {
    flex-grow: 1;
    color: #354e4c;
}

/* Item Heading Style */
.ci-item-heading-vertical {
    color: #354e4c;
    font-size: 18px;
    font-weight: 700; /* Bolder heading */
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Content Styling */
.ci-item-content-vertical {
    font-size: 15px;
    color: #354e4c;
    line-height: 1.8;
    display: block;
    text-decoration: none;
    font-weight: 300;
}

/* Phone/Email Specific Styles */
.ci-phone-label-vertical {
    font-weight: 500; 
}
.ci-email-content-vertical {
    color: #3e6d62; /* Email link in primary color */
    font-weight: 500;
}
.ci-email-content-vertical:hover {
    text-decoration: underline;
}


/* ==================================== */
/* 📱 MOBILE RESPONSIVENESS */
/* ==================================== */

@media (max-width: 768px) {
    .ci-main-info-box {
        padding: 30px 20px;
    }
    
    .ci-main-heading-boxed {
        font-size: 24px;
    }
    
    .ci-map-iframe-mock-boxed {
        padding-bottom: 70%; 
    }
    
    .ci-map-info-box-inner {
        width: 90%; 
        left: 5%;
        right: 5%;
        top: 15px;
        padding: 10px;
    }
    
    /* Vertical line adjustments for mobile */
    .ci-contact-item-vertical {
        padding-left: 50px; 
    }

    .ci-contact-item-vertical:not(:last-child)::after {
        left: 20px; 
    }
}



/* ------------------- Navigation Bar Styling ------------------- */
/* ------------------- Navigation Bar Styling ------------------- */
/* ------------------- Navigation Bar Styling ------------------- */
/* ------------------- Navigation Bar Styling ------------------- */
/* ------------------- Navigation Bar Styling ------------------- */
