/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 400; 
}

.header-container {
    max-width: 1200px; /* Adjust this value to your desired width */
    margin: 0 auto; /* Center the container */
    padding: 0 1rem; /* Optional padding for responsive design */
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    max-height: 100px;
    display: block;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    color: #000; /* Black text color for the links */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem; /* Adjust font size */
    letter-spacing: 0.05em; /* Slight letter spacing */
    text-transform: uppercase; /* Uppercase text similar to Analytikus */
}

nav ul li a:hover {
    text-decoration: underline; /* Optional underline on hover */
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Hide the sidebar off-screen */
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    padding-top: 60px; /* Ensure padding is below header */
}

.sidebar.active {
    left: 0; /* Slide the sidebar into view */
}

.sidebar nav ul {
    display: flex; 
    flex-direction: column; 
    justify-content: flexs-start; 
    height: 100%; 
}

.sidebar nav ul li {
    border-bottom: 1px solid #ddd;
}

.sidebar nav ul li a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.sidebar nav ul li a:hover {
    background: #f4f4f4;
}

/* Menu Toggle Button Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background-color: #000;
    transition: 0.4s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav ul.main-menu {
        display: none; /* Hide the default nav menu on small screens */
    }

    .sidebar {
        display: block; /* Show sidebar on small screens */
    }

    .menu-toggle {
        display: block; /* Show menu toggle button on small screens */
    }
}



/* Dropdown Styles */
.dropdown {
    position: relative;
    display: block;
}

.dropbtn {
    background-color: transparent;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1;
    top: 100%; /* Position below the dropdown button */
    left: 0;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.dropdown-content a:hover {
    background-color: #f4f4f4;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .dropbtn {
    color: #007bff; /* Highlight color for dropdown button */
}


@media (max-width: 768px) {
    .logo img {
        max-height: 70px; /* Adjust as needed for smaller screens */
    }
}


/* Container Adjustment */
.container {
    width: 90%;
    margin: 0 auto;
}

/* Hero Section Adjustment (if necessary) */
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('Images/Images/black\ digital.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    margin: 0; /* Ensure no margin around the hero section */
    padding: 0; /* Ensure no padding around the hero section */
    width: 100vw; /* Full width of the viewport */
    overflow: hidden; /* Prevents scrollbars from appearing */
}
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }
    #hero p {
        font-size: 1rem;
    }
}

.hero-content {
    z-index: 1;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

#animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: transparent;
}

#business-solutions {
    background-color: #e9e8e6; 
    padding: 50px 0;
    overflow: hidden; /* Ensure smooth animation */
}
#business-solutions .container {
    max-width: 1100px; /* Adjusted width */
    margin: 0 auto;
}
#business-solutions .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}
#business-solutions .text {
    flex: 1;
    margin-right: 20px; /* Space between text and logo */
    padding-left: 0;
}
#business-solutions h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c2c2c; /* Dark font color */
    opacity: 0;
    animation: fade-in 1s forwards ease-in-out;
}
#business-solutions p {
    font-size: 18px;
    line-height: 1.6;
    color: #2c2c2c; /* Dark font color */
    opacity: 0;
    animation: fade-in 1.5s forwards ease-in-out;
}
#business-solutions .cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #360361;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 30px;
    opacity: 0;
    animation: fade-in 2s forwards ease-in-out;
}
#business-solutions .logo-container {
    flex-shrink: 0;
}
#business-solutions .logo {
    width: 250px; /* Adjust as needed */
    height: auto;
    animation: slide-in 1s ease-out;
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    #business-solutions .content {
        flex-direction: column;
        text-align: center;
    }
    #business-solutions .text {
        margin-right: 0;
    }
    #business-solutions .logo {
        margin-top: 20px;
    }
}

    #our-clients {
        background-color: #f5f5f5; /* Light background for contrast */
        padding: 50px 0;
    }
    #our-clients .container {
        text-align: center;
        max-width: 1700px;
        margin: 0 auto;
    }
    #our-clients h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 40px;
        color: #000000; /* Black text color */
    }
    #our-clients .stats {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    #our-clients .stat-item {
        margin: 20px;
    }
    #our-clients h3 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #000000; /* Black text color */
    }
    #our-clients p {
        font-size: 18px;
        color: #000000; /* Black text color */
    }
/* Services Section Styles */
#services {
    padding: 4rem 0;
    background: #f4f4f4;
}

#services h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    padding: 1.5rem;
    flex: 1 1 calc(33.333% - 2rem);
    box-sizing: border-box;
    text-align: center;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #007bff;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%;
    }
}

/* About Us Section Styles */
#about-hero {
    background: url('Images/Images/server.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: white;
}

#about-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

#about-hero p {
    font-size: 1.5em;
}

#about {
    padding: 50px 0;
    background-color: #000;
}

.about-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.about-text {
    flex: 1; /* Makes the text take up available space */
    text-align: left;
}

.about-image {
    flex: 1; /* Makes the image take up available space */
}
.about-intro img {
    max-width: 300px; /* Adjust image size */
    height: auto;
    border-radius: 8px;
    flex-shrink: 0; /* Prevents image from shrinking */
}

.mission-section, .unique-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.mission-section .mission-text, .unique-section .unique-text {
    flex: 1;
    padding: 20px;
}

.mission-section .mission-image, .unique-section .unique-image {
    flex: 1;
    padding: 20px;
}

.mission-section img, .unique-section img {
    max-width: 60%; /* Adjust this percentage to control the size */
    height: 190px; /* Maintain the aspect ratio */
    border-radius: 10px;
    margin: 0 auto; /* Center the images */
    display: block; /* Ensure images are centered */
}


h2 {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #fff;
}

ul {
    list-style: disc;
    padding-left: 40px;
}

ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #fff;
}
.unique-section ul {
    list-style-type: disc;
    margin-left: 20px;
}

.unique-section li {
    margin-bottom: 10px;
    font-size: 1.1em;
}
/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 1.5s ease-out;
}

.animate-slide-in {
    animation: slideIn 1.5s ease-out;
}



/* Contact Section Styles */

.contact-container {
    max-width: 450px; /* Width of the form */
    margin: 0; /* Remove default margin */
    padding: 15px; /* Padding inside the form */
    background-color: #ffffff; /* Background color of the form */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for the form */
    border-radius: 8px; /* Rounded corners */
    position: relative; /* Relative positioning for alignment */
    text-align: left; /* Align text to the left */
    margin-top: 50px;
}
@media (max-width: 768px) {
    .contact-container {
        width: 100%;
    }
}
.contact-section {
    display: flex;
    justify-content: flex-start; /* Align the form to the left */
    padding: 20px; /* Padding around the section */
    margin-top: 50px;
}


.contact-container h2 {
    text-align: center;
    font-size: 1.4em; /* Slightly reduce the font size */
    margin-bottom: 15px; /* Reduce bottom margin */
    font-weight: 600; /* Keep the header bold */
    color: #333; /* Dark color for readability */
}

.contact-container form {
    display: flex;
    flex-direction: column;

}

.contact-container label {
    font-size: 0.85em; /* Slightly reduce label font size */
    margin-bottom: 5px;
    color: #555; /* Subtle color for labels */
}

.contact-container input,
.contact-container textarea {
    padding: 12px; /* Reduce padding for input and textarea */
    margin-bottom: 12px; /* Reduce bottom margin */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em; /* Reduce font size */
}

.contact-container button {
    padding: 12px; /* Reduce button padding */
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em; /* Reduce button font size */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-container button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}




.map-container {
    max-width: 100%;
    height: 450px;
    margin: 20px 0;
}

#location {
    text-align: right;
}


/* Footer Styles */
footer {
    background-color: #747373;
    color: #fff;
    padding: 2rem 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; /* Adjust as needed to match other sites */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-about {
    flex: 1;
    margin-right: 2rem;
}

.footer-about img {
    max-height: 80px;
    margin-bottom: 1rem;
}

.footer-about p,
.footer-links a,
.footer-contact p {
    font-size: 0.875rem; /* Adjust the font size to match other sites */
}

.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    margin-right: 2rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    font-size: 0.875rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-contact p {
    margin: 0.5rem 0;
}

.footer-social a {
    display: inline-block;
    margin-right: 1rem;
}

.footer-social img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}
@media (max-width: 768px) {
    .footer-about, .footer-links, .footer-contact, .footer-social {
        flex: 1 1 100%;
        text-align: center;
    }
}

/* Utility Classes */
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.p-2 { padding: 2rem; }

/* Hide elements on smaller screens */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}
