/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  background: linear-gradient(to bottom right, #0f1c2e, #132e4c);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #00d8ff;
  text-decoration: none;
}

a:hover {
  color: #76e2f7;
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo span {
  color: #00d8ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.nav-links li a.active,
.nav-links li a:hover {
  border-bottom: 2px solid #00d8ff;
}





/* Hero Section */
.hero {
  flex-grow: 1;
  background: url('../assets/AquaQbg.jpg') no-repeat center center / cover;
  padding: 2rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Intro Section */
.intro {
  margin-top: 2rem;
  text-align: center;
}

.main-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 10px #00d8ff;
}

.main-title span {
  color: #00d8ff;
}

.subtitle {
  font-size: 1.25rem;
  color: #aad8ff;
  margin-bottom: 2rem;
}

/* Horizontal Icon Navigation */
.horizontal-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.icon {
  width: 200px;
  height: 200px;
  background-color: rgba(0, 216, 255, 0.08);
  border: 2px solid #00d8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px 10px rgba(0, 216, 255, 0.6);
}

/* Icon Image */
.icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}


.icon:hover .icon-img {
  transform: scale(1.1);
} 


.content-section {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  color: #ffffff;
}

.content-section h2 {
  font-size: 2.5rem;
  color: #00d8ff;
  margin-bottom: 1rem;
  text-align: center;
}

.content-section p {
  font-size: 1.1rem;
  text-align: left;
  line-height: 1.6;
  color: #cceeff;
}


/* Footer */
footer {
  background-color: #0a0f1c;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
}

