/* Base Reset & Fonts */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0e1a2b;
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(14, 26, 43, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideInDown 0.6s ease-out forwards;
}

@keyframes slideInDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.logo {
  width: 80px;
  height: auto;
  border-radius: 19%;
}

.logo-text {
  color: #40E0D0	;
  padding-left: 20px;
  padding-top: 25px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo-container {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: -15px;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li {
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

nav ul li:hover {
  color: #00d9ff;
}

nav ul li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #00d9ff;
  transition: width 0.3s ease-in-out;
}

nav ul li:hover::after {
  width: 100%;
}

/* Dropdown Menu */
nav ul li.dropdown {
  position: relative;
}

nav ul li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: rgba(14, 26, 43, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 12px rgba(0, 206, 209, 0.15);
  z-index: 1000;
}

nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

nav ul li.dropdown .dropdown-menu li {
  padding: 10px 16px;
  white-space: nowrap;
  transition: background 0.3s;
}

nav ul li.dropdown .dropdown-menu li:hover {
  background-color: rgba(0, 217, 255, 0.1);
}

nav ul li.dropdown .dropdown-menu li a {
  display: block;
  color: white;
}

/* Header Section */
header {
  background: url('https://source.unsplash.com/1600x600/?business,team') no-repeat center center/cover;
  color: white;
  padding: 100px 20px 80px 20px;
  text-align: center;
  margin-top: 60px;
}

header h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
}

header p {
  font-size: 20px;
  max-width: 900px;
  margin: auto;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}

/* Container */
.container {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #00ffff;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
}

/* About Section */
.about-content,
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.about-image,
.about-img {
  flex: 1 1 40%;
  max-width: 500px;
}

.about-image img,
.about-img img {
  margin-top: 20%;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.25);
}

.about-text {
  flex: 1 1 55%;
  max-width: 700px;
  color: #cbd6f6;
  text-align: justify;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.about-text h3 {
  color: #00ffff;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 24px;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
}

.about-text p {
  margin-bottom: 20px;
}

#text1 p {
  margin-left: -37%;
}

.about-text ul {
  list-style-type: disc;
  color: #89cfff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.about-text ul li {
  margin-bottom: 8px;
}

/* Values Section */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
  justify-content: center;
}

.value-box {
  flex: 1 1 220px;
  background: #0a2239;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.15);
  text-align: center;
  color: #c0d9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
  transform: scale(1.05);
  animation: bounce 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

@keyframes bounce {
  0%   { transform: scale(1.05); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1.05); }
}

.value-box h3 {
  color: #00ffff;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 22px;
}

/* Call to Action */
.cta {
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(0, 38, 61, 0.95);
  color: #a8c9ff;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #00ffff;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
}

.cta a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 14px 36px;
  background: #00ffff;
  color: #002222;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.cta a:hover {
  background-color: #00b8cc;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 184, 204, 0.8);
}

.cta a::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00ffff33, transparent 70%);
  animation: pulse 2s infinite;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.cta a span {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  max-width: 1300px;
  margin: 60px auto 30px auto;
  padding: 25px 20px;
  background-color: rgba(15, 32, 63, 0.9);
  color: #a0d8f7;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 8px rgba(0, 102, 204, 0.5);
  user-select: none;
  font-weight: 500;
}

footer a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #0072ff;
}

/* Fade-in Animation on Scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-content,
  .about {
    flex-direction: column;
  }

  .about-text,
  .about-image,
  .about-img {
    max-width: 100%;
  }

  header h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 24px;
  }

  .cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  nav ul {
    gap: 12px;
  }

  nav .logo-container {
    margin-right: 10px;
  }

  .cta a {
    padding: 12px 24px;
    font-size: 16px;
  }
}
