/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 5px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 5px 0;
}

.top-bar p {
    margin: 0;
    padding: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 5px;
    background-color: #ff6347;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a.instagram-button {
    background-color: #E1306C;
}

.social-icons a.linkedin-button {
    background-color: #0077B5;
}

.social-icons a:hover {
    color: #fff;
    background-color: #ff4500;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.cta {
    background-color: #ff6347;
    color: #ffffff;
}

/* Company Name Styling */
header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    color: #ffffff; /* Default white color for the text */
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3); /* 3D touch */
}

header h1 .highlight {
    color: #28a745; /* Green color for the last two words */
}

header .company-logo {
    max-height: 50px;
    margin-left: 15px;
}

/* Dropdown Styles */
.services-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #2a2a2a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 15;
    top: 100%;
    left: 0;
    width: 200px;
    border-radius: 5px;
}

.services-dropdown:hover .dropdown-content {
    display: block;
}

.services-dropdown .dropdown-content li {
    width: 100%;
}

.services-dropdown .dropdown-content li a {
    padding: 10px 15px;
    display: block;
    color: #cccccc;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.services-dropdown .dropdown-content li a:hover {
    background-color: #ff6347;
    color: #ffffff;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #ff6347, #ff4500);
    color: #ffffff;
    padding: 50px 0;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 3;
    position: relative;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-content .cta {
    background-color: #ffffff;
    color: #ff6347;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-content .cta:hover {
    background-color: #ff4500;
    color: #ffffff;
}

/* Home Page Hero Image */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-image: url('hero_image_home.jpg'); /* Home page hero image */
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(255, 99, 71, 0.5), rgba(255, 69, 0, 0.5));
    z-index: 2;
}

/* About Page Hero Image */
.about-hero-image {
    background-image: url('about-us.jpg'); /* About page hero image */
}

/* About Content Section */
.about-content {
    padding: 50px 0;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff6347;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.about-content ul li:before {
    content: '\2713';
    color: #ff6347;
    margin-right: 10px;
}

/* Team Overview */
.team-overview {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.team-overview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.team-member {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    flex-basis: 30%;
}

.team-member img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    color: #666666;
}

.team-member:hover {
    transform: translateY(-10px);
    background-color: #ff6347;
    color: #ffffff;
}

.team-member:hover h3,
.team-member:hover p {
    color: #ffffff;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 3px solid #ff6347;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer-info {
    flex: 1;
    text-align: left;
    font-size: 14px;
    margin-bottom: 15px;
}

footer .social-icons {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

footer .social-icons a {
    color: #ffffff;
    background-color: #ff6347;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

footer .social-icons a.instagram-button {
    background-color: #E1306C;
}

footer .social-icons a.linkedin-button {
    background-color: #0077B5;
}

footer .social-icons a:hover {
    color: #ffffff;
    background-color: #ff4500;
}

footer .footer-links {
    flex: 1;
    text-align: right;
    margin-bottom: 15px;
}

footer .container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .container ul li {
    margin-bottom: 10px;
}

footer .container ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .container ul li a:hover {
    color: #ffffff;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6347;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    z-index: 1000;
}

#scrollToTopBtn:hover {
    background-color: #ffffff;
    color: #ff6347;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .logo-nav {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-info,
    footer .footer-links {
        margin-bottom: 15px;
        text-align: center;
    }

    footer .social-icons {
        justify-content: center;
    }
}

.company-logo {
    max-height: 50px; /* Adjust the height as needed */
    vertical-align: middle;
    margin-left: 10px; /* Space between the text and logo */
}
