/* Reset and basic styles */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #222;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
}



/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent background */
    padding: 1rem;
    z-index: 1000; /* Ensure header is on top */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 100%; /* Ensure the logo image does not exceed its container */
    height: auto; /* Maintain aspect ratio */
    opacity: 0.7; /* Set opacity to 80% for semi-transparent effect */
	 /* Ensure the logo stays centered vertically */
    display: block;
    margin-top: 0.25rem;
}


nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
	  margin-right: 1rem; /* Add right margin */
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    color: #4285F4; /* Blue color for hover effect */
}

/* Hero section styles */
.hero {
    background: linear-gradient(to bottom right, #005, #4285F4); /* Gradient background */
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services section styles */
.services {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Footer styles */
.footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 0.9rem;
}

.footer a {
    color: #4285F4; /* Blue color for links */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}






.services {
    background-color: #f0f0f0; /* Light background color */
    padding: 4rem 0;
}

.container {
    display: flex;
    justify-content: center; /* Center align horizontally */
    gap: 2rem; /* Gap between cards */
    max-width: 1200px; /* Limit container width */
    margin: 0 auto; /* Center align the container */
    flex-wrap: wrap; /* Allow cards to wrap */
}


.container p{  
font-size: 20px; /* Adjust the size as needed */
}
.service-card {
    background-color: #005; /* Dark blue background color */
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: calc(28.33% - 2rem); /* Adjust width to fit three cards in a row */
    flex: 1 1 30%; /* Flex basis to fit three cards in a row */
    max-width: calc(28.33% - 2rem); /* Limit max width of each card */
    text-align: left;
    margin-bottom: 2rem; /* Space between rows */
    transition: transform 0.3s ease-in-out; /* Add a smooth hover effect */
}

.card-heading {
    border-bottom: 1px solid #4285F4; /* Blue line below heading */
    padding-bottom: 1rem; /* Space between line and content */
    text-align: center; /* Center aligns text inside .card-heading */
}

.card-heading h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: inline-block; /* Ensures margin: 0 auto; works */
}
.card-content {
    padding-top: 1rem; /* Space between line and content */
	  flex: 1 1 auto; /* Flex properties: grow and shrink equally */
}

.card-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}
.service-card:hover {
    transform: translateY(-5px); /* Lift the card slightly on hover */
}

.service-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.2rem;
    line-height: 1.6;
}
.nav-desktop {
    display: flex; /* Ensure nav is displayed as flex on desktop */
}
.logo img {
    max-width: 100%; /* Ensure the logo image does not exceed its container */
    height: auto; /* Maintain aspect ratio */
}

 .fa-linkedin {
        font-size: 36px; /* Adjust the size as needed */
    }
/* Mobile styles */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 1rem;
    }

    header {
        padding: 0.5rem;
    }

   .service-card {
        width: calc(80% - 2rem); /* One card per row, 80% width */
        max-width: calc(80% - 2rem);
    }
	  nav {
        display: none; /* Hide nav on screens smaller than 768px */
    }
	    .logo img {
        width: 50%; /* Reduce logo size by 50% on screens smaller than 768px */
    }
}

   .fa-database ,.fa-chart-bar ,.fa-robot {
        font-size: 62px;
    }
	
	
  .fa-exchange-alt {
        font-size: 32px;
    }
	
	  .icon-container {
        text-align: center; /* Center aligns inline elements like <i> */
    }