
/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #2c3e50;
}

a {
  text-decoration: none;
  color: #3498db;
}

a:hover {
  color: #2980b9;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #3498db;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #2980b9;
}

/* Header */
header {
  background: #2c3e50;
  color: #fff;
  padding: 20px 0;
}

header .logo h1 {
  margin: 0;
  font-size: 24px;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: #fff;
  font-weight: bold;
}

/*/* Hero Section with Video Background */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

#video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 1;
}
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* About Us */
.about {
  padding: 50px 0;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Services */
.services {
  padding: 50px 0;
  background: #f4f4f4;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-card i {
  font-size: 40px;
  color: #3498db;
  margin-bottom: 15px;
}

/* Data Analysis & Cybersecurity */
.data-analysis, .cybersecurity {
  padding: 50px 0;
  text-align: center;
}

/* Contact Us */
.contact {
  padding: 50px 0;
  background: #f4f4f4;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact form input, .contact form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact form button {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-info {
  margin-top: 30px;
}

.contact-info p {
  margin: 10px 0;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer .social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
}