/* Main Styles for BeneVet */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}


/* Navbar */
.navbar {
    background-color: #00509e;
    padding: 15px;
    text-align: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}

.navbar a:hover {
    background-color: #003f7e;
    border-radius: 5px;
}



/* About Us Banner */
.about-banner {
    background-image: url('img/about_us_banner.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
}

.about-banner .banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 2.5em;
    text-shadow: 2px 2px 5px #000;
}


/* Breadcrumb */
.breadcrumb {
    padding: 10px 20px;
    background-color: #f4f4f4;
}

.breadcrumb a {
    color: #00509e;
    text-decoration: none;
}

/* About Us Content */
.about-section {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.about-section .title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00509e; /* Blue Color */
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.about-content .image-container {
    flex: 1;
    padding: 20px;
}

.about-content .image-container img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

.about-content .text-container {
    flex: 2;
    padding: 20px;
}

/*  Innovating for a Healthier Future for Pets Section -->*/
:root {
    --bg-color: #e5f2f8;
    --primary-color: #005a8d;
    --accent-color: #ffffff;
    --text-color: #333;
    --font: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    color: var(--text-color);
}

.healthier-future {
    background-color: #64baaf;
    padding: 4rem 2rem;
    text-align: center;
}

.healthier-future h2 {
    color: #fbfbfb;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.healthier-future .intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.image-section img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.research-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.research-item {
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.research-item:hover {
    transform: scale(1.05);
}

.research-item img {
    width: 120px;
    height: 100px;
    margin-bottom: 1rem;
}

.research-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.research-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #f0f0f0;
}


/* Our Team Section */
.our-team {
    text-align: center;
    padding: 2rem;
}

.our-team h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #00509e; /* Primary dark blue color */
}

.team-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Team Card Layout */
.team-card {
    display: flex;
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 80%;
    max-width: 1000px;
    padding: 1rem;
    align-items: center;
    position: relative;
}

.team-card img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin-right: 1.5rem;
}

.team-content {
    flex-grow: 1;
    color: #333;
    text-align: left;
}

.team-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00509e; /* Primary dark blue color */
}

.team-content .position {
    font-size: 1rem;
    font-weight: bold;
    color: #666;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.team-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Social Icons Vertical */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
}

.social-icons a {
    color: #00509e;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f76c85; /* Pink color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        align-items: center;
    }

    .team-card img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .social-icons {
        flex-direction: row;
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
}


/* Footer Section */
.footer {
    background-color: #2d2e83; /* Dark blue background */
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info h3 {
    font-size: 1.5rem;
    color: #f76c85; /* Pink for company name */
    margin-bottom: 10px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.3s;
}

.social-icons a img {
    width: 24px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-links h4,
.footer-instagram h4,
.footer-message h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f76c85;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #f76c85; /* Pink hover color */
}

.instagram-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.instagram-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.footer-message input[type="email"] {
    width: 200px;
    padding: 8px;
    border-radius: 20px;
    border: none;
    margin-bottom: 10px;
    outline: none;
}

.footer-message .message-btn {
    padding: 8px 20px;
    background-color: #f76c85; /* Pink button */
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.footer-message .message-btn:hover {
    background-color: #e65c75;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}