		/* General reset and styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 40px;
    background-color: black;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar .logo h1 {
    font-size: 24px;
    color: #BFF747;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

/* Contact Button */
:root {
    --heading-color: #333;
    --white-smoke: #f2f2f2;
}

.contact-btn {
    height: 50px;
    width: 150px;
    padding: 0;
    line-height: 47.5px;
    border: 2px solid var(--heading-color);
    box-shadow: 0 4px 0 0 var(--white-smoke); /* Initial white shadow */
    background-color: #BFF747;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease; /* Smooth transition */
    text-decoration: none;
    border: 2px solid black;
}

.contact-btn:hover {
    background-color: #A0E300; /* Slightly darker shade on hover */
    box-shadow: 0 0 0 var(--white-smoke); /* Shadow moves up and hides under the button */
    transform: translateY(-4px); /* Button moves up */
}
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.hamburger-menu span {
    width: 30px;
    height: 4px;
    background-color: #fff;
}

/* Sidebar Styles (for mobile view) */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Initially off-screen */
    width: 250px;
    height: 100%;
    background-color: white;
    color: black;
    transition: left 0.3s ease-in-out;
    padding-top: 60px;
    z-index: 1001;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.sidebar ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

/* Close Button for Sidebar inside a box */
.close-btn {
    font-size: 30px;
    position: absolute;
    top: 3px;
    right: 20px;
    cursor: pointer;
    color: black; /* Text color */
    transition: all 0.3s ease;
    height: 10px;
}

.close-btn:hover {
    transform: scale(1.1); /* Slightly larger on hover */
}

/* Show hamburger menu on mobile */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
		margin-left:10%;
		margin-top;3%;
    }

    .sidebar {
        left: 0;
    }
    .logo{
        height: 10px;
        margin-top: -2%;
        margin-left: -20px;
    }
    .logo img{
        height: 30px;
    }
    .contact-btn{
        display: none;
    }
	.projects h1 {
		height:28px;
	}
	.story h1{
	font-size:15px;
	}

}

/*landing*/
/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    height: 800px;
    padding: 50px 0;

}

.hero-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    align-items: center;
}

.text-content {
    width: 50%;
    text-align: left;
}

.text-content h1 {
    font-size: 50px;
    font-weight: bold;
}

.text-content h1 img {
    width: 30px;
    margin-left: 10px;
}

.text-content p {
    font-size: 18px;
    margin: 20px 0;
}

.cta-wrap {
    display: flex;
    align-items: center;
    position: relative;
}

.cta-btn {
    height: 50px;
    width: 50%;
    padding: 0;
    line-height: 47.5px;
    border: 2px solid var(--heading-color);
    box-shadow: 0 4px 0 0 var(--white-smoke); /* Initial white shadow */
    background-color: #BFF747;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease; /* Smooth transition */
    text-decoration: none;
    border: 2px solid black;
    margin-top: 10%;
}

.cta-btn:hover {
    background-color: #A0E300;
}

/* Shape Animation (Moving to the left of the button) */
.shape-animation {
    position: absolute;
    margin-left: 150px;
    animation: moveShape 6s ease-in-out infinite;
    top: -20%;
    transform: translateY(-50%);
    margin-left: 300px;
}

@keyframes moveShape {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}

.image-content {
    width: 45%;
    position: relative;
    overflow: hidden;
    border: 2px solid white; /* Add white border around image */
    border-radius: 10px;
    height: 400px;
}

.image-content img {
    width: 100%;
    height: 400px;
}


/* Styling the layout */
@media screen and (max-width: 768px) {
    .hero{
        height: 800px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 2%;
    }

    .text-content {
        width: 100%;
        padding: 30px;
    }

    .image-content {
        width: 80%;
        margin-top: 20px;
        height: 300px; /* Reduce image height on mobile */
    }
    .image-content img {
        width: 100%;
        height: 255px;
    }
    .cta-btn {
        width: 80%; /* Make the button wider */
        margin-top: 20px;
        margin-left: 45px;
    }
    .shape-animation{
        display: none;
    }
}
@media screen and (max-width: 480px) {
    /* Very Small Devices: Make additional adjustments */
    .text-content h1 {
        font-size: 30px; /* Reduce font size on very small screens */
    }

    .text-content p {
        font-size: 16px; /* Reduce paragraph font size */
    }

    .cta-btn {
        width: 80%;
        font-size: 14px; /* Reduce button font size */
    }

    .image-content {
        height: 200px; /* Even smaller image height */
    }
}

/*end landing */
.provide {
    font-size: 40px;
    font-family: syne sans-serif ;
    letter-spacing: -0.7px;
    text-align: center;
    margin-top: 4%;
}


@media (max-width: 768px) {
    .provide {
        font-size: 25px; 
        margin-top: 5%;
    }
    .provide img{
      height: 30px;
    }
}



/* Basic Layout */
.what-we-provide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    border-bottom: 2px solid black ; /* Adjusted to ensure a solid line */
}


.main {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 30px;
}

/* Box Styling */
.product-box {
    width: 45%;
    background-color: white;
    padding: 45px;
    margin: 10px 0;
    text-align: left;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: black;
    position: relative;
    border: 2px black solid;
    height: 300px;
}

.product-box i {
    font-size: 40px;
    color: black;
    margin-bottom: 20px;
}

.product-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.product-box p {
    font-size: 16px;
    margin-bottom: 20px;
}

.product-box img.arrow-icon {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

/* Hover Effect */
/* Hover Effect with Shadow */
.product-box:hover {
    background-color: #BFF747;
    color: black;
    box-shadow: 9px 9px 15px rgba(5, 5, 5, 0.3); /* Add bottom and right shadow */
}

.product-box:hover img.arrow-icon {
    transform: translateY(5px);
}


.product-box:hover img.arrow-icon {
    transform: translateY(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-box {
        width: 100%;
        height: 350px;
    }

    .main {
        flex-direction: column;
        align-items: center;
    }
}
.our-bussiness {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
}

.our-bussiness h1 {
    font-size: 46px;
    font-weight: bolder;
    line-height: 1.4;
    font-family: 'Syne', sans-serif;
    margin-bottom: 10px;

}

.our-bussiness h1 img {
    width: 30px; /* Adjust size of the image */
    height: auto;
    vertical-align: middle; /* Align image in line with the text */
    margin-left: 10px; /* Add space between text and image */
}

.our-bussiness h2 {
    font-size: 20px;
    color: black;
    margin-top: 10px;
    width: 100%; /* Make sure the h2 takes the full width */
    text-align: center; /* Center align h2 */
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-bussiness {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: end; /* Center the text */
    }

    .our-bussiness h1 {
        font-size: 36px; /* Adjust font size for smaller screens */
    }

    .our-bussiness h2 {
        font-size: 18px; /* Adjust font size for smaller screens */
        text-align: end;
    }
}

@media (max-width: 480px) {
    .our-bussiness h1 {
        font-size: 28px; /* Further reduce font size on very small screens */
    }

    .our-bussiness h2 {
        font-size: 16px; /* Reduce h2 font size on very small screens */
    }

    .our-bussiness h1 img {
        width: 24px; /* Reduce the image size on very small screens */
    }
}
/*our-exp*/.our-experience {
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for small screens */
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.our img {
    width: 100%;
    height: 400px;
    border-radius: 2%; /* Slightly rounded corners */
    border: 5px solid black;
    object-fit: cover; /* Ensure image fits without distortion */
}

.our-exp-year {
    width: 30%;
    background-color: black;
    height: 400px;
    margin-left: -105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: white;
    padding: 20px;
    box-sizing: border-box; /* Includes padding in width calculation */
    text-align: center;
}

.our-exp-year h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Syne', sans-serif;
    position: relative;
}

.our-exp-year h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: white;
    margin: 10px auto 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-experience {
        flex-direction: column; /* Stack vertically */
        text-align: center;
    }

    .our img {
        width: 100%; /* Full width for image */
        height: auto; /* Let height adjust to maintain aspect ratio */
        margin-bottom: 20px;
    }

    .our-exp-year {
        width: 100%; /* Full width for stats section */
        height: auto; /* Let height adjust to content */
        margin-left: 5px;
    }
}

@media (max-width: 480px) {
    .our-exp-year h1 {
        font-size: 20px; /* Smaller font size for small screens */
    }
}


/* Section Styling */
.projects {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.projects h1 {
    font-size: 36px;
    font-family: 'Syne', sans-serif;
    position: relative;
}

.projects h1 img {
    width: 30px;
    height: auto;
    margin-left: 10px;
    vertical-align: middle;
}

/* Box Layout */
.project-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-box {
    width: calc(50% - 20px); /* Two boxes per row */
    text-align: center;
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.project-box img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 3px solid #000;
}

/* Text Styling */
.project-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-box {
        width: 100%; /* Full width on smaller screens */
		margin-top:15%;
    }
}




/* General Layout */
.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.left-section {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.left-section h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.left-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.right-section {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.accordion-item {
    margin-bottom: 10px;
    background-color: #f7f7f7;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    background-color: #e0e0e0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #d3d3d3;
}

.toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f4f4f4;
    font-size: 16px;
    color: #555;
}

.accordion-content.open {
    max-height: 200px;
    padding: 15px;
}

.accordion-item.open .toggle-icon {
    transform: rotate(45deg); /* Rotate icon to make it look like '-' */
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 20px;
    }

    .left-section, .right-section {
        padding: 20px;
    }

    .accordion-header {
        font-size: 16px;
    }
}



/*testimonials*/
/* Testimonials Section */
.testimonials-section {
    padding: 50px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 38px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 900;
}

.section-title img {
    width: 30px;
    height: auto;
    vertical-align: middle;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-box {
    background-color: #f9f9f9;
    border: 2px solid black; /* Black border */
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-box:hover {
    transform: translate(-5px, -5px); /* Slightly move box */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4); /* Dark shadow on left and bottom */
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #ddd;
}

.testimonial-author p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.testimonial-author span {
    font-size: 12px;
    color: #777;
}

.testimonial-rating {
    font-size: 18px;
    color: #ffcc00;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
	.testimonial-box{
		margin-top:20%;	
	}
    .testimonial-author {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin: 0 auto 10px;
    }
	.section-title{
		height:28px;
	}
}
.auto-slider {
    background-color: black;
    overflow: hidden;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-content {
    display: flex;
    animation: infinite-scroll 15s linear infinite;
    white-space: nowrap;
    color: #BFF747;
    gap: 10px;
}

.rotating-image {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    animation: rotate360 2s linear infinite;
}

/* Rotating star animation */
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Horizontal scrolling animation */
@keyframes infinite-scroll {
    0% {
        transform: translateX(0); /* Start at the beginning */
    }
    100% {
        transform: translateX(-50%); /* Move left by half the content's width */
    }
}


/* Footer Styles */
.footer {
    background-color: black;
    color: #f1f1f1;
    padding: 60px 0;
    width: 100%;
    font-family: 'Arial', sans-serif;
    height: 600px;
}

.footer-width {
    margin: 0 auto;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* Left Section */
.footer-info {
    width: 50%;
    line-height: 1.8;
    height: 20px;
}

.footer-info h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.footer-info p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #f1f1f1;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #BFF747; /* Highlighted contact info */
}

.decorative-shape {
    margin-top: 30px;
    max-width: 100px;
    opacity: 0.8;
}

/* Right Section */
.footer-message {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-message input,
.footer-message textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 20px;
    background: #202020;
    color: #f1f1f1;
}

.footer-message input::placeholder,
.footer-message textarea::placeholder {
    color: #bbb;
}

.footer-message textarea {
    height: 120px;
    resize: none;
}

:root {
    --heading-color: #333;
    --white-smoke: #f2f2f2;
}

.message-btn {
    height: 50px;
    width: 100%;
    padding: 0;
    line-height: 47.5px;
    border: 2px solid var(--heading-color);
    box-shadow: 0 4px 0 0 var(--white-smoke); /* Initial white shadow */
    background-color: #BFF747;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease; /* Smooth transition */
    text-decoration: none;
    border: 2px solid black;
}

.message-btn:hover {
    background-color: #A0E300; /* Slightly darker shade on hover */
    box-shadow: 0 0 0 var(--white-smoke); /* Shadow moves up and hides under the button */
    transform: translateY(-4px); /* Button moves up */
}

/* Contact Media Styling */
.contact-media {
    display: flex;
    gap: 15px; /* Spacing between icons */
    margin-top: 20px;
}

.contact-media a {
    display: inline-block;
    border: 2px solid white;
    border-radius: 50%; /* Circular icons */
    padding: 8px; /* Space around the icon */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
}

.contact-media img {
    height: 25px; /* Icon size */
    width: 30px;
    filter: brightness(0) invert(1); /* Makes the icon white */
    margin-top: 4px;
}

.contact-media a:hover {
    transform: scale(1.2); /* Slightly enlarge on hover */
    background-color: #BFF747; /* Light background on hover */
    border-color: black; /* Light border color */
}

.contact-media a:hover img {
    filter: brightness(0) invert(0); /* Change icon back to black on hover */
}

@media (max-width: 768px) {
    .contact-media {
        gap: 10px; /* Reduce spacing for smaller screens */
        justify-content: center;
		
    }

    .contact-media img {
        height: 20px;
        width: 20px; /* Adjust icon size */
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-width {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info,
    .footer-message {
        width: 100%;
    }

    .footer-info {
        margin-bottom: 40px; /* Space between sections */
    }

    .footer-info h1 {
        font-size: 48px;
    }

    .footer-info p,
    .contact-info p {
        font-size: 16px;
    }

    .footer-message {
        margin-top: 20px;
    }

    .footer-message input,
    .footer-message textarea {
        font-size: 16px;
        padding: 12px;
    }

    .message-btn {
        font-size: 16px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .footer{
        height: 200%;
    }
    .footer-width {
        flex-direction: column;
    }

    .footer-info h1 {
        font-size: 36px;
    }

    .footer-info p,
    .contact-info p {
        font-size: 14px;
    }
    .footer-message{
        margin-top: 100%;
    }
    .footer-message input,
    .footer-message textarea {
        padding: 10px;
        font-size: 14px;
    }

    .message-btn {
        font-size: 14px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-info h1 {
        font-size: 28px;
    }

    .footer-info p {
        font-size: 12px;
        line-height: 1.4;
    }

    .contact-info p {
        font-size: 12px;
    }

    .footer-message input,
    .footer-message textarea {
        font-size: 12px;
        padding: 8px;
    }

    .message-btn {
        font-size: 12px;
        height: 38px;
    }
}



.whats-button {
    position: fixed;
    bottom: 90px; 
    right: 20px; 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; 
}

.whats-button img {
    width: 85px; 
    height: 85px;
}

.whats-button:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}




/* Container for the two sections */
.vision-mission-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between columns */
    margin: 40px 0;
    flex-wrap: wrap; /* Ensures the layout is responsive */
    width: 80%;
    margin-left: 10%;
}

/* Core Vision Section */
.core-vision, .main-mission {
    flex: 1; /* Ensures both divs take equal width */
    padding: 20px;
    border-radius: 8px;
    text-align: left; /* Align text to the left */
}

/* Heading styles (highlighted with black) */
.core-vision h2, .main-mission h2 {
    font-family: 'Arial', sans-serif; /* Custom font family */
    font-size: 28px;
    color: black;
    font-weight: bold; /* Make the title bold */
    text-transform: uppercase; /* Uppercase for emphasis */
    margin-bottom: 10px;
    border-bottom: 2px solid black; /* Black border below the title */
    padding-bottom: 5px;
}

/* Paragraph styles */
.core-vision p, .main-mission p {
    font-family: 'Georgia', serif; /* Good serif font family */
    font-size: 18px;
    color: #333; /* Dark text color for readability */
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Hover Effect for Mission Section */
.main-mission {
    border-left: 4px solid black; /* Add black left border on hover */
    transition: border-left 0.3s ease;
}
.core-vision{
    border-left: 4px solid black; /* Add black left border on hover */
    transition: border-left 0.3s ease;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .vision-mission-container {
        flex-direction: column; /* Stack sections vertically */
    }

    .core-vision, .main-mission {
        flex: 1 1 100%; /* Make each section take full width on small screens */
        margin-bottom: 20px; /* Space between the sections */
    }
}
