/* Hero Section */
.hero-section {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: black;
    color: white;
    height: 270px !important;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.active {
    color: #FF9800 !important;
}

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: white;
}

.breadcrumb-item a:hover {
    color: #FF9800;
}

.container p {
    margin-bottom: 1.2rem;
}

img.rounded {
    border-radius: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white; /* Sets the slash color to white */
}

/* Vision and Mission Section styling */
.vision-mission-section {
    background-color: black;
    padding: 20px;
    border-radius: 8px;
    color: white;
}

/* Leaf icon color and hover effect */
.icon-leaf {
    color: orange;
    transition: color 0.3s ease;

    margin-top: 4px;
}

/* Hover effect: background color remains black, leaf turns green */
.vision-mission-section ul li:hover .icon-leaf {
    color: green;
}

/* Hanging indent for list items */
.vision-mission-section ul li {
    position: relative;
    padding-left: 30px; /* Adjust this based on icon size */
    text-indent: -5px; /* Same value as padding-left */
}

    .vision-mission-section ul li i {
        position: absolute;
        left: 0;
        top: 0;
    }


/* Timeline Container */
.timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}

    /* Vertical Line */
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%; /* Line will be in the center of the container */
        width: 2px;
        background-color: #2C4286; /* Blue color for the timeline line */
        transform: translateX(-50%);
    }




/* Timeline Item */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right {
        left: 50%;
    }


    /* Timeline Content */
.timeline-content {
    position: relative;
    background: #fff;
    border-radius: 6px;
    padding: 40px 20px 40px 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}
    .timeline-content:hover {
        background-color: #2C4286;
        color: white;
    }
            .timeline-content:hover .icon-wrapper {
                background-color: #28a745; /* Green background color when hovering on timeline content */
            }

        .timeline-content:hover .diamond {
            background-color: #2C4286; /* Green background color when hovering on timeline content */
        }

/* Diamond Shape */
.diamond {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white; /* Diamond color */
    transform: rotate(45deg);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

/* Position diamond on the right for timeline-item with class "left" */
.timeline-item.left .diamond {
    right: -15px; /* Adjust as needed for spacing */
}

/* Position diamond on the left for timeline-item with class "right" */
.timeline-item.right .diamond {
    left: -15px; /* Adjust as needed for spacing */
}

.timeline-item.left .timeline-content {
    margin-left: auto;
}

.timeline-item.right .timeline-content {
    margin-right: auto;
}

/* Leaf Icon inside content, aligned to the right */
.icon-wrapper {
    background-color: #FF9800;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px; /* Spacing between text and icon */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .timeline-item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

        .timeline-item.left,
        .timeline-item.right {
            left: 0;
        }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-content p{
    margin-top: 15px;
}


/* Year Label */
.year-label {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: black; /* Green color for the year */
    top: 50%;
    transform: translateY(-50%);
}

/* Position year label for left timeline items (on the right side of the line) */
.timeline-item.left .year-label {
    right: -60px; /* Adjust as needed for spacing */
}

/* Position year label for right timeline items (on the left side of the line) */
.timeline-item.right .year-label {
    left: -60px; /* Adjust as needed for spacing */
}


