/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar Styles for WebKit Browsers */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Scrollbar Styles for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* General Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Navbar Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styles */
.navbar__logo {
    background: linear-gradient(135deg, #8C84EF, #2BD5BB);
    border-radius: 50%;
    /* padding: 10px; Adjust padding as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Adjust width as needed */
    height: 50px; /* Adjust height as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.main_logo {
    width: 100%;
    height: auto;
}

.navbar__title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.navbar__links {
    list-style: none;
    display: flex;
}

.navbar__item {
    margin-left: 20px;
}

.navbar__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar__link:hover {
    color: #007bff;
}


/* Hero Section Styles */
.hero-bg {
    background: url('path/to/your-hero-image.jpg') no-repeat center center;
    background-size: cover; /* Ensure the image covers the hero section */
    height: 100vh; /* Full viewport height */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Text color on top of the hero background */
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/hero-bg-1.jpg') no-repeat center center/cover;
    position: relative;
    margin-top: 66px;
}

.hero__content {
    text-align: center;
    padding: 50px;
}

.hero__title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 20px;
    color: #dddddd;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button--primary {
    background-color: #007bff;
    color: #ffffff;
    border-radius: 5px;
}

.button--primary:hover {
    background-color: #0056b3;
}

/* Projects Section */
.projects {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.projects__heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 20px;
}

/* Card Styles */
.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card__title {
    font-size: 24px;
    margin-bottom: 10px;
}

.card__description {
    font-size: 16px;
    margin-bottom: 20px;
}

.button--secondary {
    background-color: #6c757d;
    color: #ffffff;
    border-radius: 5px;
}

.button--secondary:hover {
    background-color: #5a6268;
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #333;
    color: #ffffff;
    text-align: center;
}

.footer__social {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.footer__social-item {
    margin: 0 10px;
}

.footer__social-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__social-item a:hover {
    color: #007bff;
}
