/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styles */
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

header .logo {
  width: 180px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #0056A6;
  font-weight: 600;
}

nav a:hover {
  color: #003d73;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 86, 166, 0.8), rgba(0, 86, 166, 0.8)), url('images/hero-background.jpg') center/cover no-repeat;
  color: #fff;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.btn-primary {
  background: #0056A6;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #003d73;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0056A6;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background: #fff;
  padding: 30px;
  width: 300px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
}

.service-card:hover {
  border-color: #0056A6;
  box-shadow: 0 0 10px rgba(0, 86, 166, 0.2);
}

.service-card h3 {
  color: #0056A6;
  margin-bottom: 10px;
}

/* About Section */
.about-apexcloud, .why-choose, .cta-section {
  padding: 60px 20px;
  text-align: center;
}

.about-apexcloud h2, .why-choose h2, .cta-section h2 {
  font-size: 2.5rem;
  color: #0056A6;
  margin-bottom: 20px;
}

/* Why Choose Us List */
.why-choose ul {
  list-style: none;
  padding: 0;
}

.why-choose li {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #0056A6;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .service-cards {
    flex-direction: column;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}
