/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #030815;
    color: #e0e0e0;
}

/* Animated background */
body, header {
    background: url('../images/sys.gif') center/cover no-repeat, linear-gradient(270deg, #030815, #3DABE0);
    background-size: cover, 400% 400%;
    animation: animatedBackground 15s ease infinite;
}

@keyframes animatedBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Navigation styles */
nav {
    background: transparent;
    color: white;
    padding: 0.5em 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s; /* Add transition for smooth effect */
}

.nav-scrolled {
    background-color: #030815; /* New background color when scrolled */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Add shadow for depth */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0em;
}

.nav-logo img {
    width: 100px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
}

nav ul li {
    margin: 0 1em;
    position: relative;
}

/* Fancy underline hover effect for navigation links */
nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    transition: color 0.3s;
}

nav ul li a:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #3DABE0; /* Change the text color on hover */
}

nav ul li a:hover:before {
    width: 100%;
    left: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #030815;
    min-width: 160px;
    max-height: 200px; /* Set a maximum height */
    overflow-y: auto; /* Enable vertical scrollbar if content exceeds max height */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Header styles */
header {
    text-align: center;
    color: white;
    padding: 0;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-logo {
    width: 100px;
    height: auto;
}

/* Animated background for header */
.animated-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

..text-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.typed-text {
    font-size: 2.5em;
    margin-top: 1em;
    color: white;
    font-family: Bold, Arial, sans-serif;
}

.cta-button {
    display: inline-block;
    margin: 1em;
    padding: 1em 2em; /* Equal padding on both sides */
    background: #3DABE0;
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Rounded on both sides */
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: background 0.3s ease-in-out;
    box-shadow: 0px 0px 15px rgba(61, 171, 224, 0.5);
}

.cta-button:hover {
    background: #cc4627;
}

/* Lightning border effect */
.cta-button::before {
    content: "";
    position: absolute;
    top: -5px; /* Adjust for better visibility */
    left: -5px; /* Adjust for better visibility */
    width: calc(100% + 10px); /* Wider than the button */
    height: calc(100% + 10px); /* Taller than the button */
    border-radius: 50px; /* Rounded on both sides */
    border: 3px solid transparent; /* Initially transparent */
    background: none;
    z-index: -1;
    animation: flash 1s infinite; /* Flashing effect */
}

.cta-button:hover::before {
    border-color: #FFD700; /* Golden border color on hover */
}

/* Keyframe for flashing border effect */
@keyframes flash {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0); /* Invisible */
    }
    50% {
        border-color: rgba(255, 255, 255, 1); /* Fully visible */
    }
}

/* Lightning border animation */
@keyframes lightning {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Other sections */
section {
    padding: 2em 1em;
    background: #030815;
    color: #e0e0e0;
    text-align: center;
}

.service, .project, .team-member, .about-container {
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

 h1 {
            display: none;
    }
        
h2 {
    text-align: center;
    margin-bottom: 1em;
    color: #3DABE0;
}

.service i, .project i, .about-container i {
    font-size: 4em;
    margin-bottom: 0.5em;
    color: #3DABE0;
    animation: bounce 2s infinite;
}

#projects {
    padding: 2em 0;
    background-color: #030815;
    text-align: center;
    position: relative;
}

/* Slider wrapper with fixed width for displaying 3 projects at a time */
.slider-wrapper {
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Project container for slider */
.project-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: max-content; /* Allows smooth slide transition */
}

/* Project items */
.project {
    min-width: 300px;
    margin-right: 20px;
    background: #000328;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1em;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease; /* Slight scaling on hover */
}

.project img {
    width: 100%;
    height: 200px; /* Ensure all images have the same height */
    object-fit: cover; /* Crop images to maintain aspect ratio */
    border-radius: 10px;
    margin-bottom: 1em;
    transition: transform 0.5s ease; /* Animate the image */
    transform: scale(1); /* Initial state: regular size */
}
.project:hover img {
    transform: scale(1.2) translateX(50px); /* Enlarge and move the image to the right */
}

.project:hover {
    transform: scale(1.05); /* Slight scale for the entire project card */
    z-index: 2; /* Bring the hovered project to the front */
}
.project h3 {
    color: #3DABE0;
    margin-bottom: 0.5em;
}

.project p {
    color: #e0e0e0;
}

/* Navigation arrow styling */
.ue-remote-carousel-navigation-wrapper {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.ue-remote-arrow {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.ue-remote-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.ue-carousel-nav-icon i {
    font-size: 24px;
    color: #ffffff;
}

/* For smaller devices, ensure project size and container are optimized */
@media (max-width: 768px) {
    .project {
        min-width: 200px; /* Smaller project size for mobile */
    }
}

@keyframes scrollProjects {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .project {
        min-width: 200px; /* Adjusting the width for smaller screens */
        margin-right: 10px; /* Adjusting the margin for smaller screens */
    }
}
.contact-item i, #contact i {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #3DABE0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

#preloader {
    background: #000328;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.svg-container {
    width: 100px;
    height: 100px;
    animation: draw-logo 4s linear forwards;
}

@keyframes draw-logo {
    0% {
        stroke-dasharray: 0 1000;
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dasharray: 1000 0;
        stroke-dashoffset: -1000;
    }
}

.sub-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1em;
}

.sub-service {
    flex: 1 1 30%;
    text-align: center;
    margin: 1em;
}

.sub-service i {
    font-size: 2em;
    color: #3DABE0;
}

.sub-service h4 {
    margin-top: 0.5em;
    color: #3DABE0;
}

.cloud-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1em;
}

.cloud-icons .cloud-icon {
    flex: 1 1 30%;
    text-align: center;
    margin: 1em;
}

.cloud-icons i {
    font-size: 2em;
    color: #3DABE0;
    animation: bounce 2s infinite;
}

.cloud-icons p {
    margin-top: 0.5em;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .sub-service, .cloud-icon {
        flex: 1 1 100%;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: #3DABE0;
        padding: 10px;
        border-radius: 50%;
        z-index: 1001;
    }

    .menu-toggle i {
        font-size: 20px;
        color: #fff;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: none;
        position: absolute;
        top: 60px; /* Adjust as needed */
        left: 45%;
        z-index: 1;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown .dropdown-content {
        position: flex;
		right: 45%;
        background-color: none;
        box-shadow: none;
        width: 100%;
    }
}

/* Hide hamburger menu on larger screens */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
        position: static;
        background-color: transparent;
    }

    .nav-links.show {
        display: flex;
    }

    .dropdown .dropdown-content {
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Footer styles */
footer {
    text-align: center;
    padding: 2em 1em;
    background: #030815;
    color: #e0e0e0;
}

.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 0 1em;
}

.footer-menu ul li a {
    color: #e0e0e0;
    text-decoration: none;
}

.footer-menu ul li a:hover {
    color: #3DABE0;
}

.footer-logo img {
    width: 100px;
}

.team-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.team-hierarchy img {
    width: 180px;
    margin-bottom: 0;
}

.team-member {
    margin: 1em 0;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 0.5em;
}

.social-media a {
    color: white;
    margin: 0 1em;
    font-size: 0.5em;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.whatsapp-button:hover {
    background: #128C7E;
}

/* Client logos */
#clients {
    background-color: #030815;
    color: #e0e0e0;
    text-align: center;
    padding: 2em 0;
}

.client-logos-container {
    overflow: hidden;
    white-space: nowrap;
    animation: scrollClients 20s linear infinite;
}

.client-logo {
    display: inline-block;
    padding: 0 10px;
}

.client-logo img {
    max-height: 50px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo img:hover {
    filter: none;
}

@keyframes scrollClients {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Ensure all logos are visible and animated on mobile devices */
@media (max-width: 768px) {
    .client-logos-container {
        overflow: hidden; /* Keep overflow hidden to maintain animation */
        white-space: nowrap; /* Ensure all logos are in one line */
        animation: scrollClients 20s linear infinite;
    }
    .client-logo {
        display: inline-block;
        margin-right: 10px;
    }
}
/* Remove underline from 'Read More' links */
a.read-more {
    text-decoration: none;
    color: inherit;
}

a.read-more:hover {
    text-decoration: underline;
}

/* Contact form styles */
#contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    margin: 1em;
    font-size: 1em;
}

label {
    margin-top: 1em;
}

input, textarea {
    padding: 1em;
    margin-top: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #000328;
    color: white;
}

button {
    margin-top: 1em;
    padding: 1em;
    background: #3DABE0;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
footer {
    text-align: center;
    padding: 1em 0;
    background: #000328;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-menu {
    text-align: left;
    margin-right: 40px;
}

.footer-menu h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #3DABE0;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-menu ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3DABE0;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.footer-menu ul li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

.footer-motto {
    text-align: left;
}

.footer-motto h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #3DABE0;
}

.footer-legal {
    margin-right: 40px;
}

.footer-legal a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3DABE0;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.footer-legal a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

.footer-social {
    display: flex;
    justify-content: space-around;
    width: 100px;
    margin: 20px 0;
}

.footer-social a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3DABE0;
}

.footer-bottom {
    margin-top: 20px;
    color: #3DABE0;
    font-size: 0.8rem;
}
/* Microsoft 365 Section */
#microsoft-365 {
    padding: 50px 0;
    background: #030815; /* Background removed */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    filter: brightness(1.2); /* Increased brightness */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Add a subtle border */
    border-radius: 15px; /* Rounded corners for the section */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
}

#microsoft-365 h2 {
    color: #3DABE0;
    margin-bottom: 1em;
}

#microsoft-365 h2 i {
    font-size: 2em;
    vertical-align: middle;
    margin-right: 0.5em;
}

#microsoft-365 .offerings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

#microsoft-365 .offering {
    background: #000328;
    border-radius: 10px;
    padding: 1em;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#microsoft-365 .offering i {
    font-size: 2em;
    color: #3DABE0;
    margin-bottom: 0.5em;
}

#microsoft-365 .offering h3 {
    color: #3DABE0;
    margin-bottom: 0.5em;
}

#microsoft-365 .offering p {
    color: #e0e0e0;
}

#microsoft-365 .offering:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
}

/* Responsive Styles */
@media (max-width: 768px) {
    .offerings-container {
        flex-direction: column;
        align-items: center;
    }

    .offering {
        width: 100%;
        max-width: none;
    }
}
/* AWS Offerings Section */
#aws-offerings {
    padding: 50px 0;
    background: #030815; /* Background removed */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    filter: brightness(1.2); /* Increased brightness */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Add a subtle border */
    border-radius: 15px; /* Rounded corners for the section */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
}

#aws-offerings h2 {
    color: #FF9900; /* AWS brand color */
    margin-bottom: 1em;
}

#aws-offerings h2 i {
    font-size: 2em;
    vertical-align: middle;
    margin-right: 0.5em;
}

#aws-offerings .offerings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

#aws-offerings .offering {
    background: #000328;
    border-radius: 10px;
    padding: 1em;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#aws-offerings .offering i {
    font-size: 2em;
    color: #FF9900; /* AWS brand color */
    margin-bottom: 0.5em;
}

#aws-offerings .offering h3 {
    color: #FF9900; /* AWS brand color */
    margin-bottom: 0.5em;
}

#aws-offerings .offering p {
    color: #e0e0e0;
}

#aws-offerings .offering:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Azure Offerings Section */
#azure-offerings {
    padding: 50px 0;
    background: #030815; /* Background removed */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    filter: brightness(1.2); /* Increased brightness */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Add a subtle border */
    border-radius: 15px; /* Rounded corners for the section */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
}

/* Lightning border effect */
#azure-offerings::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%);
    animation: lightning 2s infinite;
}

@keyframes lightning {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.offerings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.offering {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Light background for contrast */
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.offering i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #3DABE0;
    filter: brightness(0.7); /* Reduced brightness on icons */
    animation: glow 1.5s infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0px 0px 10px #3DABE0, 0px 0px 20px #3DABE0;
    }
    50% {
        text-shadow: 0px 0px 20px #3DABE0, 0px 0px 40px #3DABE0;
    }
}

.offering h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.offering p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.offering a {
    color: #3DABE0;
    text-decoration: none;
    font-weight: bold;
}

.offering a:hover {
    text-decoration: underline;
}
.offerings {
    display: flex; /* Flexbox for offerings layout */
    justify-content: space-between; /* Space between offerings */
    margin-top: 30px; /* Space above offerings */
    
}
.offering:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.read-more {
    color: #3DABE0; /* Link color */
    text-decoration: none; /* No underline */
    font-weight: bold; /* Bold link */
}

.read-more:hover {
    text-decoration: underline; /* Underline on hover */
}
/* Background Lightning Effect */
#azure-offerings::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%);
    animation: lightning 2s infinite;
}
/* Google Cloud Offerings Section */
#google-cloud-offerings {
    padding: 50px 0;
    background: #030815; /* Background removed */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    filter: brightness(1.2); /* Increased brightness */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Add a subtle border */
    border-radius: 15px; /* Rounded corners for the section */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Add a shadow for depth */
}

#google-cloud-offerings h2 {
    color: #4285F4; /* Google brand color */
    margin-bottom: 1em;
}

#google-cloud-offerings h2 i {
    font-size: 2em;
    vertical-align: middle;
    margin-right: 0.5em;
}

#google-cloud-offerings .offerings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

#google-cloud-offerings .offering {
    background: #000328;
    border-radius: 10px;
    padding: 1em;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#google-cloud-offerings .offering i {
    font-size: 2em;
    color: #4285F4; /* Google brand color */
    margin-bottom: 0.5em;
}

#google-cloud-offerings .offering h3 {
    color: #4285F4; /* Google brand color */
    margin-bottom: 0.5em;
}

#google-cloud-offerings .offering p {
    color: #e0e0e0;
}

#google-cloud-offerings .offering:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Cyber Security Section */
#cyber-security-offerings {
    background: #030815;
    color: #e0e0e0;
    padding: 2em 1em;
    text-align: center;
}

#cyber-security-offerings h2 {
    color: #FF4C4C; /* Cyber Security themed color */
    margin-bottom: 1em;
}

#cyber-security-offerings h2 i {
    font-size: 2em;
    vertical-align: middle;
    margin-right: 0.5em;
}

#cyber-security-offerings .offerings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

#cyber-security-offerings .offering {
    background: #000328;
    border-radius: 10px;
    padding: 1em;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#cyber-security-offerings .offering i {
    font-size: 2em;
    color: #FF4C4C; /* Cyber Security themed color */
    margin-bottom: 0.5em;
}

#cyber-security-offerings .offering h3 {
    color: #FF4C4C; /* Cyber Security themed color */
    margin-bottom: 0.5em;
}

#cyber-security-offerings .offering p {
    color: #e0e0e0;
}

#cyber-security-offerings .offering:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* General Styling for Offerings Sections */
.offerings-section {
    background: #030815;
    color: #e0e0e0;
    padding: 2em 1em;
    text-align: center;
    margin-bottom: 2em;
}

.offerings-section h2 {
    margin-bottom: 1em;
}

.offerings-section h2 i {
    font-size: 2em;
    vertical-align: middle;
    margin-right: 0.5em;
}

.offerings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.offering {
    background: #000328;
    border-radius: 10px;
    padding: 1em;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering i {
    font-size: 2em;
    color: #76c7c0; /* Use the appropriate color for each section */
    margin-bottom: 0.5em;
}

.offering h3 {
    color: #76c7c0; /* Use the appropriate color for each section */
    margin-bottom: 0.5em;
}

.offering p {
    color: #e0e0e0;
}

.offering:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Website Development Section */
#website-development h2 {
    color: #76c7c0;
}

#website-development .offering i, #website-development .offering h3 {
    color: #76c7c0;
}

/* Custom Software Development Section */
#custom-software-development h2 {
    color: #ff6f61;
}

#custom-software-development .offering i, #custom-software-development .offering h3 {
    color: #ff6f61;
}

/* IT Support Section */
#it-support h2 {
    color: #7c4dff;
}

#it-support .offering i, #it-support .offering h3 {
    color: #7c4dff;
}
/* WiFi AP Installations Section */
#wifi-ap-installations h2 {
    color: #FFAA00;
}

#wifi-ap-installations .offering i, #wifi-ap-installations .offering h3 {
    color: #FFAA00;
}
/#server-builds h2 {
    color: #FF5733;
}

#server-builds .offering i, #server-builds .offering h3 {
    color: #FF5733;
}

/* Server Builds, Installations, and Maintenance Section */
#server-builds h2 {
    color: #FF5733;
}

#server-builds .offering i, #server-builds .offering h3 {
    color: #FF5733;
}
/* Networking and Installations Section */
#networking-installations h2 {
    color: #00FFAA;
}

#networking-installations .offering i, #networking-installations .offering h3 {
    color: #00FFAA;
}
/* CCTV Installations and Maintenance Section */
#cctv-installations h2 {
    color: #FF5733;
}

#cctv-installations .offering i, #cctv-installations .offering h3 {
    color: #FF5733;
}
/* Access controls */
#access-control {
    background-color: #030815;
    color: #e0e0e0;
    padding: 2em 1em;
    text-align: center;
}

#access-control .container {
    max-width: 1200px;
    margin: 0 auto;
}

#access-control h2 {
    color: #3DABE0;
    margin-bottom: 1em;
}

#access-control p {
    margin-bottom: 1.5em;
}
.access-control-offerings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}
/* Digital Signage Installations and Maintenance Section */
#digital-signage h2 {
    color: #3DABE0;
}

#digital-signage .offering i, #digital-signage .offering h3 {
    color: #3DABE0;
}
/* IT Setup - New Office Setups Section */
#new-office-setups h2 {
    color: #00FFAA;
}

#new-office-setups .offering i, #new-office-setups .offering h3 {
    color: #00FFAA;
}
header {
    position: relative; /* Ensure header can contain absolute positioned elements */
}

.advertising-bubble {
    position: absolute;
    bottom: 20px; /* Position from the bottom of the header */
    right: 20px; /* Position from the right of the header */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    color: #030815; /* Text color */
    padding: 1em;
    border-radius: 30px; /* Rounded corners for bubble */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px; /* Max width for the bubble */
    animation: fadeIn 6s ease-in-out infinite; /* Fading animation */
    opacity: 0; /* Start invisible */
    overflow: hidden; /* Ensure no text overflows */
}

.bubble-question {
    margin: 0.5em 0;
    font-size: 1em;
    text-align: center;
    font-weight: bold;
    display: none; /* Hide all questions by default */
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}
 .popup {
            display: none;
            padding: 10px;
            margin-top: 10px;
            border-radius: 5px;
        }
        .popup.success {
            color: green;
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
        }
        .popup.error {
            color: red;
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
        }
/* Media query for mobile devices */
@media (max-width: 600px) {
    .questions-container {
        width: 200px; /* Reduced width */
        padding: 8px;
        font-size: 0.9em; /* Slightly smaller font size */
    }
    
    .question a {
        padding: 3px 8px; /* Reduced padding */
        font-size: 0.85em; /* Slightly smaller font size */
    }
}