portfolio/
├── index.html
├── styles/
│   └── style.css
├── scripts/
│   └── script.js
├── images/
│   └── [your-images-here]
└── [other-assets]


/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 10;
    padding: 0 30px; /* Equal spaces on the sides for the entire body */
    box-sizing: border-box;
    background: beige;
}

/* Headings and Text */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

p, li, a, span, div {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* Header Section */
.site-header {
    padding: 10px 20px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #ffffff;
    position: sticky;
    top: 0;
}

.logo-name-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 50px;
    height: auto;
    margin-bottom: 5px;
}

.site-name {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #333;
    text-align: center;
}

/* General Navigation Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f5f5f5;
    position: relative;
}

.logo-name-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    margin-right: 10px;
}

.site-name {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #2d2d2d;
}

/* General Navigation Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5px;
    background-color: #f5f5f5;
    position: relative;
    border-bottom: 2px solid #ffffff;
}

.logo-name-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    margin-right: 10px;
}

.site-name {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #333;
}

/* Navigation Menu Styles */
.navbar-menu {
    display: flex;
    flex: 1;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.navbar-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-menu li {
    margin: 0 15px;
}

.navbar-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.navbar-menu a:hover {
    color: #000F;
}

/* Hamburger Icon Styles */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
}

.navbar-toggler-icon::before {
    top: -10px;
}

.navbar-toggler-icon::after {
    top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f5f5f5;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .navbar-menu li {
        margin: 10px 0;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-toggler.active .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler.active .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggler.active .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Navigation Menu Styles */
/*.navbar-menu {
    background-color: #dadada;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
max-width: max-content;
    display: flex;
}

.navbar-menu ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    padding: 10;
    margin: 0;
}

.navbar-menu li {
    margin: 0 10px;
}

.navbar-menu a {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 16px;
}

.navbar-menu a:hover {
    color: #000;
}

/* Hamburger Icon Styles */
/*.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
}

.navbar-toggler-icon::before {
    top: -10px;
}

.navbar-toggler-icon::after {
    top: 10px;
}

/* Responsive Styles */
/*@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f5f5f5;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-menu ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    .navbar-menu li {
        margin: 10px 0;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-toggler.active .navbar-toggler-icon {
        background-color: transparent;
    }
    
    .navbar-toggler.active .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .navbar-toggler.active .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Navigation Bar */
/*nav {
    background-color: #181818;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 10;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: #fff;
    text-decoration: none;
}*/

/* Landing Section */
.landing {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;   
    text-align: center;
}

/* Slider Section */
.hero {
    text-align: center;
    padding: 50px 0;
    color: #fff;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 2px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 10px;
}

.slider {
    margin: 2px 0; /* Add top and bottom margin */
    display: flex;
    height: 550px;
    overflow: hidden; /* Hide overflow to create a seamless loop */
    position: relative;
}

.slider img {
    min-width:auto; /* Ensure images cover the slider area */
    height: auto;
    animation: slide 60s linear infinite; /* Linear animation for smooth looping */
}

@keyframes slide {
    0% { transform: translateX(0%); }
    10% { transform: translateX(-100%); }
    20% { transform: translateX(-200%); }
    30% { transform: translateX(-300%); }
    40% { transform: translateX(-400%); }
    50% { transform: translateX(-500%); }
    60% { transform: translateX(-600%); }
    70% { transform: translateX(-700%); }
    80% { transform: translateX(-800%); }
    90% { transform: translateX(-900%); }
    100% { transform: translateX(-1000%); }
}

/* Appointments */
.appointment {
    position:absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

.appointment h2 {
    color: white;
    margin: 0;
}

.appointment button {
    padding: 5px 30px;
    margin-top: 5px;
    background-color: #d3e1ff;
    color: #f4f4f4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.appointment button:hover {
    background-color: #e4e4e4;
}

/* Client Journey Styles */
#client-journey {
    padding: 2em;
    background-color: #f0f0f0;
    text-align: center;
}

#client-journey h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}

.journey-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.journey-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    width: 40%;
}

.step-icon {
    font-size: 24px;
    background-color: #2d2d2d;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.step-content ul {
    list-style-type: disc;
    text-align: left;
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.journey-arrow {
    font-size: 24px;
    margin: 10px 0;
    color: #000;
}

/* Add a horizontal line connecting steps */
.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 2px;
    height: 15px;
    background-color: #000;
    transform: translateX(-50%);
}

/* Responsive Design */
@media (max-width: 600px) {
    .journey-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-icon {
        margin-bottom: 10px;
    }
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.project {
    background-color: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project h3 {
    margin: 10px;
}

.project p {
    margin: 10px;
    color: #555;
}

/* About Me Section */
#about-me {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.portrait {
    flex: 0 0 auto;
    margin-right: 20px;
}

.portrait img {
    width: 167px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #bbbbbb;
}

.introduction {
    text-align: left;
    max-width: 600px;
}

.introduction h1,
.introduction h2 {
    margin: 0;
    color: #333;
}

.introduction h1 {
    font-size: 24px;
}

.introduction h2 {
    font-size: 30px;
    font-weight: bold;
}

.introduction p {
    margin: 10px 0;
    color: #555;
}

.proficiency {
    text-align: center;
    margin-top: 2px;
}

.proficiency h3 {
    margin-bottom: 2px;
    font-size: 24px;
    color: #333;
}

/* Slider Styles */
.slider {
    overflow: hidden;
    width: 100%;     /* Full width */
    position: relative;
    background-color: #f9f9f9;
    padding: 10px 0;
    margin: 2px 2px;
    margin-block: 2px;
}

.slider-track {
    display: flex;
    width: calc(200px * 23);
    animation: scroll 20s linear infinite;
}

.slide {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width:fit-content;
    height:fit-content;
    transition: transform 0.2s;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1200px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .portrait {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Contact Section */
#contact {
    padding: 20px;
    background-color: #ddd;
}

form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

input, textarea, button {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #181818;
    color: #fff;
    padding: 20px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.column {
    max-width: 200px;
}

.column h3 {
    border-bottom: 2px solid #777;
    padding-bottom: 5px;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

#gallery {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.2s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CSS for Equal-Sized Spaces */
section {
    padding: 10px; /* Adjust padding as needed for top/bottom spacing */
    margin: 0 auto; /* Center the section */
    max-width: 1200px; /* Optional: Limit the maximum width of the content */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

body {
    padding: 0 60px; /* Equal spaces on the sides for the entire body */
}

/* For narrower screens, adjust the padding */
@media (max-width: 768px) {
    body {
        padding: 0 20px; /* Reduce side padding on smaller screens */
    }
}

/* Book a Discovery Call Section */
#discovery-widget {
    position: fixed;
    bottom: 50px;
    left: 20px;
    width: 200px;
    background-color: #fff;
    /*border: 1px solid #696969;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    z-index: 1000; /* Ensure it's above other elements */
}

#discovery-widget.minimized {
    transform: translateY(calc(100% - 40px));
}

.toggle-discovery {
    width: 100%;
    padding: 10px;
    background-color: #181818;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.discovery-content {
    padding: 10px;
    display: none; /* Initially hidden */
}

.discovery-content p {
    margin: 0;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.contact-link {
    display: block;
    margin-bottom: 5px;
    color: #181818;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Initially hidden */
    width: 40px;
    height: 40px;
    background-color: #2D2D2D; /* Button color */
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
    z-index: 1000; /* Ensure it appears on top */
}

.scroll-to-top:hover {
    background-color: #000; /* Darker shade on hover */
}

/*Social Media Icons*/
.social-media-links {
    display: flex;
    gap: 15px; /* Space between icons */
}

.social-icon {
    font-size: 24px; /* Size of the icons */
    color: #333; /* Color of the icons */
    text-decoration: none; /* Remove underline from links */
}

.social-icon:hover {
    color: #c5c5c5; /* Color on hover */
}
