/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}
/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7fcff; /* Light gray background for contrast */
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Logo */
.logo img {
    width: 50px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #222222; /* Dark gray text for readability */
    font-size: 18px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0056b3; /* Deep blue-gray hover effect */
}

/* Hamburger Menu (Initially Hidden on Large Screens) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #333333; /* Dark gray bars */
    margin: 5px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #f7fcff;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
 

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }
}

/* Section Styling */
.company-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #ffffff; /* Changed to white */
    margin-top: 60px; /* Add space from the navbar */
}

/* Left Section (Company Name and Subline) */
.company-info {
    width: 45%;
    margin-top: -60px;
}

.company-info h1 {
    font-size: 3.6rem;
    color: #222222; /* Dark gray for contrast */
    margin-bottom: 10px;
}

.company-info h2 {
    font-size: 2.5rem;
    color: #333333; /* Slightly lighter gray */
    font-weight: 300;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
}

.company-info h3 {
    font-size: 1.2rem;
    color: #444444; /* Medium gray for subtle contrast */
    font-weight: 300;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
}

/* Right Section (GIF Styling) */
.company-video {
    width: 50%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    margin-top: 30px; /* Add margin to push GIF below */
    height: 500px;
}

.company-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .company-section {
        flex-direction: column;
        align-items: center;
    }

    .company-info {
        width: 80%;
        text-align: center;
    }

    .company-info h1 {
        font-size: 3rem;
        margin-top: 25px;
    }

    .company-info h2 {
        font-size: 1.8rem;
    }

    .company-video {
        width: 100%;
        margin-top: 20px;
        height: 350px;
    }
}

/* Section Styling */
.deals-section {
    background-color: #ffffff; /* Changed to white */
    color: #222222; /* Dark gray text for contrast */
    padding: 50px 0;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    color: #222222; /* Dark gray for heading */
    margin-bottom: 30px;
}

/* Cards Container Styling */
.cards-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card Styling */
.card {
    background-color: #f5f5f5; /* Light gray background */
    border-radius: 10px;
    overflow: hidden;
    width: 25%;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Softer shadow */
    cursor: pointer;
    text-align: left;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 200px;
}

/* Card Content */
.card-content {
    padding: 20px;
}

.card h3 {
    font-size: 1.8rem;
    margin: 10px 0;
    color: #333333; /* Darker gray for contrast */
}

.card p {
    font-size: 1.2rem;
    color: #555555; /* Medium gray for readability */
    margin-bottom: 15px;
}

/* Button Styling */
.know-more-btn {
    background-color: transparent;
    border: 2px solid #222222; /* Dark gray border */
    padding: 10px 20px;
    color: #222222; /* Dark text */
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.know-more-btn span {
    margin-left: 10px;
    font-size: 1.5rem;
}

/* Button Hover Effect */
.know-more-btn:hover {
    background-color: #ebf5fc; /* Light gray */
    color: #222222;
}

/* Card Hover Effect */
.card:hover {
    transform: scale(1.05);
    background-color: #e9e9e9; /* Slightly darker shade for hover effect */
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 30px;
    }
}

/* General styles for About Us section */
.about-us {
    padding: 50px 0;
    background-color: #ffffff; /* Changed to white */
    color: #222222; /* Dark gray for contrast */
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 3rem;
    color: #222222; /* Dark gray for heading */
}

.section-header p {
    font-size: 18px;
    color: #555555; /* Medium gray for description */
}

/* Button styles */
.button-container {
    text-align: center;
    margin-bottom: 30px;
}

.tab-button {
    background-color: #e0e0e0; /* Light gray button */
    color: #222222; /* Dark text for contrast */
    border: none;
    padding: 10px 30px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button.active {
    background-color: #ffc107; /* Active button color */
    color: #222222;
}

.tab-button:hover {
    background-color: #dcdcdc; /* Slightly darker gray */
}

/* Content cards */
.content-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.content {
    display: none; /* Hide all cards by default */
    width: 100%;
    max-width: 700px;
    transition: opacity 0.5s ease;
}

.content.active {
    display: block; /* Only show active content */
    opacity: 1;
}

.video-container {
    width: 100%;
    text-align: center;
}

.video-container video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.text-container {
    text-align: center;
    margin-top: 20px;
}

.text-container h3 {
    font-size: 30px;
    color: #222222; /* Dark gray for readability */
}

.text-container p {
    font-size: 18px;
    color: #555555; /* Medium gray for description */
    margin-top: 10px;
}

/* Team Section */
#team {
    background-color: #ffffff; /* Changed to white */
    color: #222222; /* Dark text for contrast */
    padding: 50px 20px;
    text-align: center;
}

#team h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
    color: #222222; /* Dark heading */
}

/* Container for the cards */
.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual team card */
.team-card {
    background-color: #f3f3f3; /* Light gray background for visibility */
    width: calc(25% - 10px); /* Keep original width */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 15px; /* Keep compact design */
    box-sizing: border-box;
}

.team-card img {
    width: 210px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.team-card h3 {
    font-size: 24px;
    margin: 20px 0;
    font-family: 'Oswald', sans-serif;
    color: #222222; /* Dark text */
}

.team-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555; /* Medium gray for readability */
}

/* Know more button styling */
.team-card .know-more {
    font-size: 16px;
    color: #222222; /* Dark text */
    text-decoration: none;
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #222222; /* Dark border */
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.team-card .know-more span {
    margin-left: 10px;
}

/* Hover Effects */
.team-card:hover {
    transform: scale(1.05);
    background-color: #e6e6e6; /* Slightly darker gray */
}

.team-card:hover .know-more {
    background-color: #989383; /* Accent color */
    color: #222222;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .team-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .team-card {
        width: 100%;
    }
}

.footer {
    background: #eff6fa;
    color: #222222; /* Dark text for contrast */
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-left {
    flex: 1;
    min-width: 250px;
}

.company-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #222222; /* Dark text */
}

.copyright {
    font-size: 14px;
    color: #555555; /* Medium gray for readability */
}

.footer-right {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222222; /* Dark heading */
}

.social-link,
.footer-link {
    color: #222222; /* Dark links */
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.social-link:hover,
.footer-link:hover {
    color: #0062ff; /* Accent color on hover */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
}
