* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    padding-top: 100px; /* Prevent content from hiding under navbar */
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between; /* Initially: Logo left, menu right */
    align-items: center;
    padding: 15px 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease-in-out;
}

/* LOGO */
.logo img {
    height: 150px;
    transition: filter 0.3s ease-in-out, height 0.3s, transform 0.5s ease-in-out;
}

/* NAVIGATION BOX */
.nav-container {
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out, padding 0.5s ease-in-out, width 0.5s ease-in-out;
}

/* NAVIGATION LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    transition: gap 0.5s ease-in-out, justify-content 0.5s ease-in-out;
}

/* NAVIGATION LINKS STYLE */
.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 8px 15px;
    transition: color 0.3s;
}

/* SCROLL EFFECTS */
.navbar.scrolled {
    background: black;
    padding: 10px 30px;
    justify-content: center; /* Move everything to center */
}

/* Move both logo and menu to the center */
.navbar.scrolled .logo {
    transform: translateX(0); /* Logo moves to center */
}

.navbar.scrolled .nav-container {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Menu moves to center */
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 50px;
}

.navbar.scrolled .nav-links {
    gap: 20px;
}

.navbar.scrolled .nav-links li a {
    color: white;
}

/* Logo color change */
.navbar.scrolled .logo img {
    filter: brightness(0) invert(1);
    height: 0px;
}

/* CONTENT */
.content {
    height: 200vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    max-width: 600px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    color: rgb(31, 41, 55);
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-text h1 .highlight {
    color: rgb(3, 24, 92);
}

.hero-text p {
    font-size: 20px;
    color: rgb(55, 65, 81);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    color: white;
    background: rgb(3, 24, 92);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: rgb(5, 19, 65);;
}

.hero-image {
    width: 40%;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* How does it work? Section */
.scrolling-section {
    text-align: center;
    padding: 80px 8%;
    background: #f9f9f9;
}
.scrolling-section h2 {
    font-size: 48px; /* Increase header size */
    font-weight: bold;
    color: rgb(31, 41, 55);
    text-align: center;
}

.scrolling-section p {
    font-size: 22px; /* Increase paragraph size */
    line-height: 1.8;
    color: rgb(55, 65, 81);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.step p {
    font-size: 20px; /* Increase paragraph size */
    line-height: 1.8;
    color: rgb(55, 65, 81);
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}


.text-center {
    text-align: center;
}

/* Steps Container */
.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.step {
    width: 30%;
    text-align: center;
}

.step img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.step p {
    font-size: 16px;
    color: rgb(55, 65, 81);
    line-height: 1.5;
}

/* New Scrolling Section */
.scroll-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.text-content {
    width: 50%;
}

.text-content h2 {
    font-size: 36px;
    color: rgb(31, 41, 55);
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.text-content p {
    font-size: 18px;
    color: rgb(55, 65, 81);
    line-height: 1.6;
    text-align: center;
}

.image-content {
    width: 40%;
    display: flex;
    justify-content: center;
}

.image-content img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* CRM Integration Section */
.crm-integration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: white;
}

.container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    gap: 50px;
}

.image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-box {
    max-width: 500px;
    text-align: center;
}

.text-box h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1A202C;
}

.text-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #2D3748;
}

/* Dress Well Section - Full Page */
.dress-well {
    background: url('manbg.html') no-repeat center center/cover;
    position: relative;
    height: 100vh; /* Full-page height */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push text to the right */
    padding: 0 10%; /* Add space on the sides */
}

.overlay {
    width: 45%; /* Adjust width for better text fit */
    background: rgba(17, 45, 54, 0.85);
    padding: 60px; /* Increased padding */
    color: white;
    border-radius: 10px;
}

.text-box h2 {
    font-size: 40px; /* Bigger heading */
    font-weight: bold;
}

.text-box p {
    font-size: 20px; /* Bigger paragraph */
    line-height: 1.8;
}
.support5 {
    display: flex;
    /* Enables flexbox */
    justify-content: space-between;
    /* Space between text & image */
    align-items: center;
    /* Aligns items in the center */
    padding: 50px;
}

/* Styling the text container */
.multi-platform5 {
    width: 50%;
    /* Takes half of the section */
    text-align: left;
    /* Aligns text to the left */
    padding-left: 100px;
    /* Adjusts spacing from the left */
    font-size: 30px;
    color: rgba(4, 9, 30, 0.7);
}

/* Styling the button */
.vcard-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: rgba(4, 9, 30, 0.7);
    /* Button color */
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.vcard-btn:hover {
    background-color: rgb(128, 144, 168);
    /* Darker shade on hover */
}

/* Styling the image container */
.support-image5 {
    width: 55%;
    /* Takes half of the section */
    display: flex;
    justify-content: flex-end;
    /* Aligns image to the right */
    margin-left: -40px;
}

/* Ensure image is responsive */
.support-image5 img {
    width: 110%;
    /* Responsive width */
    max-width: 550px;
    /* Limits the max size */
    height: auto;
}

/* Footer Background */
.footer {
    background-color: rgba(4, 9, 30, 0.7);
    /* Dark background */
    color: rgba(4, 9, 30, 0.7);
    /* Text color */
    padding: 50px 0;
}

.footer p {
    color: lightgray;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Each Column */
.footer-column {
    width: 23%;
    /* Each column takes 23% of the width */
    padding: 10px;
}

/* Footer Titles */
.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Unique Title Colors */
.about-title {
    color: rgba(4, 9, 30, 0.7);
    /* Orange */
}

.resources-title {
    color: rgba(4, 9, 30, 0.7);
    /* Blue */
}

.legal-title {
    color: rgba(4, 9, 30, 0.7);
    /* Tomato Red */
}

/* Links Styling */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    /* Light gray */
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: rgba(4, 9, 30, 0.7);
    /* White on hover */
}

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

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}