/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #f1f1f1; /* Light text for dark background */
    background-color: #121212; /* Dark background */
    position: relative;
    z-index: 0;
}

/* Background Image Overlay */
body::before {
    content: "";
    background: url('ai-software-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.1; /* Subtle background */
}

/* Content container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Header */

header {
    background-color: transparent;
    transition: background-color 0.3s ease;
    color: #f1f1f1;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Solid background when scrolled */
header.scrolled {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 30px;
    color: yellow;
    font-weight: 700;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav a {
    color: yellow; 
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

nav a:hover {
    color: #0077b6;
}

/* Sections */
.section {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: yellow;
    font-family: 'Georgia', serif;
    border-bottom: 2px solid yellow;
    display: inline-block;
    padding-bottom: 10px;
}

.section p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    color: #dddddd;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    font-size: 18px;
    line-height: 2;
    .contact-info i {
    margin-right: 8px;
      }
      
}

.contact-info a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #ffd700;

}

/* Footer */
footer {
    background-color: transparent;
    color: #f1f1f1; 
    text-align: left;
    padding: 20px 0;
    font-size: 11px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .section h2 {
        font-size: 26px;
    }

    .section p {
        font-size: 16px;
    }
}
/* Adjust scroll offset so headings are visible below sticky header */
#about,
#products,
#contact,
#careers {
scroll-margin-top: 50px; /* Adjust value to fit your header height */
}
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
  }
  
  .floating-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    background-color: #fff;
    padding: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .floating-icons a img:hover {
    transform: scale(1.1);
  }
  #background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 1;
  }
  
  /* Overlay with dark tint */
  #background-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust darkness: 0.5 is medium */
    z-index: 1;
  }
  nav a.active {
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
  }
/* Product Section Title Styling */
.products-title {
    font-family: 'Georgia', serif;
    /* font-size: 36px; */
    color: #ffd700;
    font-weight: 700;
  }
  
  .products-title span {
    /* color: #00d4ff; */
    font-style: italic; 
  }
  
  /* Product Subtitle Styling */
  .products-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  /* Product Description Styling */
  .product-highlight {
    font-family: 'Courier New', Courier, monospace;
    font-size: 17px;
    color: #00ffc8;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-left: 4px solid #00d4ff;
    border-radius: 6px;
    font-style: italic;
  }
    
