.footer {
    background-color: white !important;
    color: black;
    padding: 50px 0;
}

.col-lg-3.col-md-6 h4 {
    margin-left: 40px;
    padding: 50px 0;
    /* Adjust the value as needed */
}

/* Ensure Equal Column Spacing */
.footer .row {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 50px;
}

/* Make Section Titles Orange */
.footer h4 {
    color: orange;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    /* Adds space between the title and links */
}

/* Align Links in a Column */
.footer .btn-link {
    display: block;
    /* Makes links appear in column format */
    color: black !important;
    /* Ensures black color */
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect: Move Text from Left to Right & Change Color to Red */
.footer .btn-link:hover {
    color: red !important;
    transform: translateX(10px);
    text-decoration: underline;
}

/* Reduce spacing between social icons */
.btn-social {
    margin-right: 1px;
    /* Adjust spacing */
    padding: 4px 7px;
    /* Adjust button padding */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black !important;
    /* Default background color */
    color: white !important;
    /* Default icon color */
    font-size: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-social:last-child {
    margin-right: 0;
    /* Remove margin from last icon */
}


/* Hover Effect: Icon Turns Red */
.btn-social:hover {
    background-color: black !important;
    /* Keep background black */
    color: red !important;
    /* Change only icon color */
    transform: rotate(360deg) scale(1.2);
}

/* Newsletter Input Field */
.footer .form-control {
    border-radius: 25px;
    border: 2px solid #007bff;
}

/* SignUp Button */
.footer button {
    border-radius: 25px;
    font-weight: bold;
}

/* Responsive Styling */
@media (max-width: 1000px) {
    .footer .row {
        flex-direction: column;
        text-align: center;
    }

    .btn-social {
        margin: 5px auto;
    }

    .footer .btn-link {
        text-align: center;
    }
}

/* Center the copyright text */
.copyright {
    background-color: white !important;
    text-align: center;
    padding: 10px 0;
}

/* Ensure the text inside is centered */
.copyright .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Adjust text alignment */
.copyright p {
    font-size: 14px;
    color: black;
    text-align: center;
    margin: 0 auto;
    /* Ensures full centering */
}

/* Team section */

/* General Reset for the Container */
.container-team {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 70%;
    width: 80%;

    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;

}

/* Heading Section */
.heading h2 {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    position: relative;
}



/* Team Row */
.team-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

/* Team Member Cards */
.team-wrap,
.member-container {
    background: #F1F8FF;
    border-radius: 8px;
    overflow: hidden;


    width: 48%;
    /* Default width */
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.team-wrap:hover,
.member-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Team Image Styles */
.team-img img,
.member-img img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #007bff;
    border-radius: 50%;
    object-fit: cover;
}



.team-img:hover .overlay {
    display: block;
}

/* Team Member Titles and Names */
.team-title,
.member-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

.team-member span,
.member-container span {
    font-size: 1.1rem;

    margin-top: 5px;
}

/* Media Queries */

/* Medium to large devices (tablets and up) */
@media (min-width: 768px) {

    .team-wrap,
    .member-container {
        width: 48%;
    }
}

/* Large devices (desktops and up) */
@media (min-width: 992px) {

    .team-wrap,
    .member-container {
        width: 40%;
    }

    .heading h2 {
        font-size: 3rem;
    }
}

/* Small to Extra small devices */
@media (max-width: 767px) {

    .team-wrap,
    .member-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .heading h2 {
        font-size: 2rem;
    }

    .team-title,
    .member-name {
        font-size: 1.2rem;
    }

    .team-member span,
    .member-container span {
        font-size: 1rem;
    }
}

/* Very small devices (portrait mobile, less than 360px) */
@media (max-width: 360px) {
    .heading h2 {
        font-size: 1.6rem;
    }

    .team-title,
    .member-name {
        font-size: 1rem;
    }

    .team-member span,
    .member-container span {
        font-size: 0.9rem;
    }

    .team-img img,
    .member-img img {
        width: 70%;
        height: 70%;
    }
}


/* Mission Vision */

/* Vision and Mission Card Styling */
.vision-mission-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    /* Adding rounded corners */
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* Smooth transition for hover effect */
}

/* Hover Effect */
.vision-mission-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Increase shadow on hover */
    transform: translateY(-5px);
    /* Lift the card slightly */
    border: 2px solid #007bff;
    /* Add a border with color when hovered */
}

/* Icon container */
.icon-container i {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    /* Smooth icon scale on hover */
}

/* Hover effect on the icon */
.vision-mission-card:hover .icon-container i {
    transform: scale(1.1);
    /* Slightly enlarge the icon on hover */
}

/* Mission and Vision Card Text Styling */
.vision-mission-card h4 {
    font-size: 2rem;
    color: #007bff;
    transition: color 0.3s ease;
    /* Smooth transition for text color */
}

.vision-mission-card:hover h4 {
    color: #0056b3;
    /* Change color on hover */
}

.vision-mission-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    transition: color 0.3s ease;
    /* Smooth transition for paragraph color */
}

.vision-mission-card:hover p {
    color: #555;
    /* Change text color slightly on hover */
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .vision-mission-card {
        padding: 30px;
    }

    .text-center h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .vision-mission-card {
        padding: 20px;
    }

    .icon-container i {
        font-size: 3rem;
    }

    .text-center h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .vision-mission-card {
        padding: 15px;
    }

    .icon-container i {
        font-size: 2.5rem;
    }

    .text-center h2 {
        font-size: 1.6rem;
    }
}


/* Company Overview start  */

.section-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
}

.list-group-item {
    background-color: #f8f9fa;
    border: none;
    padding: 15px;
    transition: transform 0.3s;
}

.list-group-item:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
}

.technology-section {

    color: rgb(0, 0, 0);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 3rem;
    margin-right: 15px;
}

.container {
    padding-top: 50px;
}

/* < !-- Company Overview End --> */