* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fefefe;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 100vw;
    margin: auto;
    padding: 0px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffe9d9;
    padding: 10px 20px;
    height: 10vh;
}

.logo img {
    height: 70px;
    width: 173px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #f04e23;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
}

.nav-link.active {
    border-bottom: 2px solid #f04e23;
    font-weight: 600;
}

.nav-link:hover {
    text-decoration: underline;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon img,
.profile-icon img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

main {
    padding: 20px;
    min-height: 80vh;
    background-color: #fff;
    background-image: url('/Logos/6943.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-section {
    margin-bottom: 40px;
}

.search-bar {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.search-bar input:focus {
    border-color: #f04e23;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.search-btn img {
    width: 20px;
    height: 20px;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: #f04e23;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.feature-info {
    flex: 1;
}

.feature-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.feature-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.companies-section {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-header h3 {
    background-color: orange;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    display: inline-block;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
}

.company-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: box-shadow 0.3s;
}

.company-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-logo {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    font-size: 12px;
    color: #666;
    font-weight: bold;
}

.company-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-info h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.company-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.view-btn {
    background-color: orange;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-start;
}

.view-btn:hover {
    background-color: #f04e23;
}

.success-card {
    border-left: 4px solid #28a745;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f04e23, orange);
    border-radius: 10px;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-cta,
.secondary-cta {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.primary-cta {
    background: white;
    color: #f04e23;
}

.secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.primary-cta:hover,
.secondary-cta:hover {
    transform: translateY(-2px);
}

footer {
    margin-bottom: 0px;
    padding: 15px 20px;
    height: 10vh;
    background-color: #ffe9d9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.footer-left,
.footer-center,
.footer-right {
    margin-top: 0px;
}

.footer-section p {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-left .social-links img {
    width: 25px;
    margin: 0 5px;
}

.footer-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.footer-center a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.footer-center a:hover {
    color: #f04e23;
}

.footer-right p {
    margin-bottom: 10px;
    font-weight: bold;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.footer-right img {
    width: 100px;
    margin: 5px 5px 0 0;
}