/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

h2 {
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


.navbar-links {
    display: flex;
}

.navbar-links ul {
    list-style: none;
    display: flex;
}

.navbar-links li {
    margin: 0 15px;
}

.navbar-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #1db954;
}

.toggle-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar-links ul li {
        text-align: center;
        padding: 15px 0;
        width: 100%;
    }

    .navbar-links.active {
        display: flex;
    }
}



/* Continuing the Team Section CSS */
.team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease;
    text-align: center;
    color: #1db954; /* Adjusted to match the hover color */
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    border-radius: 50%;
    margin-right: 20px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.team-info {
    text-align: left;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1db954; /* Primary color for names */
}

.team-info p.education {
    font-size: 1rem;
    color: #ffcc00; /* Golden color for education */
    font-style: italic;
    margin-bottom: 5px;
}

.team-info p.experience {
    font-size: 1rem;
    color: #00bfff; /* Sky blue color for experience */
    font-style: italic;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 1.2rem;
    color: #bbbbbb;
}
/* Default styles */
.team-member h3 {
    font-size: 24px;
    margin: 10px 0;
}

.team-member p {
    font-size: 16px;
    margin: 5px 0;
}

/* Responsive styles for mobile */
@media only screen and (max-width: 768px) {
    .team-member h3 {
        font-size: 13px; /* Adjust font size for smaller screens */
        margin: 8px 0;
    }

    .team-member p {
        font-size: 10px; /* Adjust font size for smaller screens */
        margin: 4px 0;
    }

    .team-member p.education {
        font-size: 9px; /* Smaller font for education on mobile */
        margin: 3px 0;
    }

    .team-member p.experience {
        font-size: 9px; /* Smaller font for experience on mobile */
        margin: 3px 0;
    }
}


/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #181818;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    animation: fadeIn 2s ease;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1db954;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1aa34a;
}

.map {
    margin-top: 30px;
    max-width: 600px;
    margin: 30px auto 0;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 2s ease;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    background-color: #181818;
    color: #e0e0e0;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* General Styles for Animated Elements */
.animated {
    opacity: 0;
    transform: translateY(50px); /* Default starting position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible Class to Trigger Animation */
.animated.visible {
    opacity: 1;
    transform: translateY(0); /* End position */
}

/* Add additional animations if needed */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Team Section Styles */
.team {
    padding: 50px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.team h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.team h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member {
    display: inline-block;
    width: 30%;
    margin: 20px;
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team-member h3 {
    margin: 10px 0;
}


.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.team-member:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.team-member:hover:before {
    transform: translateY(0);
}

.team-member .team-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-info {
    opacity: 1;
}

/* Contact Page Styles */
.contact {
    padding: 50px 20px;
    background-color: #222;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
    font-size: 1em;
    position: relative;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    transition: transform 0.3s ease, font-size 0.3s ease;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    transform: translateY(-20px);
    font-size: 0.8em;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}
/* Work Photos Section Styles */
.work-photos {
    padding: 50px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.work-photos h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.work-photos h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery img {
    width: calc(33.333% - 20px);
    height: auto;
    max-width: 400px; /* Maximum width */
    min-width: 250px; /* Minimum width */
    max-height: 300px; /* Maximum height */
    min-height: 200px; /* Minimum height */
    object-fit: cover; /* Ensures images are covered within constraints */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery img {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 100%;
    }
}
.brand-title {
    cursor: pointer; /* Change cursor to pointer on hover */
    font-size: 2em;
    font-weight: bold;
    color: #fff; /* Adjust color as needed */
    text-align: center;
    margin: 20px;
    transition: color 0.3s ease; /* Optional: Add color transition on hover */
}

.brand-title:hover {
    color: #007bff; /* Optional: Change color on hover */
}

/* --- Verify Employee Banner on Team Page --- */
.verify-banner {
    background-color: #252525;
    padding: 0;
}

.verify-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.verify-banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
}

.verify-banner-text i {
    color: #f07b26;
    font-size: 18px;
    flex-shrink: 0;
}

.verify-banner-text span {
    line-height: 1.4;
}

.verify-banner-btn {
    display: inline-block;
    padding: 8px 24px;
    background-color: #f07b26;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.verify-banner-btn:hover {
    background-color: #bc570d;
    color: #ffffff;
}

@media (max-width: 576px) {
    .verify-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 0;
        gap: 12px;
    }

    .verify-banner-text {
        flex-direction: column;
        gap: 6px;
    }
}

