@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.logo-icon {
  width: 100px;
  height: 60px;
  vertical-align: middle;
  margin-right: 10px;
  filter: brightness(3) ; /* Color shift */
  transition: transform 0.5s ease-in-out;
  animation: pulseZoom 2.5s infinite alternate;
  fill: #00c0ff; /* Changes color of SVG if it's inline or allowed */
}

@keyframes pulseZoom {
  0% {
    transform: scale(1);   /* Normal size */
  }
  100% {
    transform: scale(1.2); /* Zoom in */
  }
}


body {
  font-family: 'Times New Roman', Times, serif;
  background: linear-gradient(to bottom, #f2f9ff, #e4f0ff);
  color: #1a1a1a;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Header */
header {
  background: linear-gradient(to right, #141e30, #243b55);
  color:  #00c0ff;
  padding: 0.1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 1s ease;
}

@keyframes slideDown {
  from { top: 100px; opacity: 0; }
  to { top: 0; opacity: 1; }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  animation: glow 2s ease-in-out infinite alternate;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00c0ff;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #00c0ff;
}

/* Split Section */
.split-section {
  padding: 5rem 1rem;
  background: white;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.split-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.split-section.reverse .split-text {
  order: 2;
}
.split-section.reverse .split-image {
  order: 1;
}

.split-text {
  flex: 1 1 500px;
}

.split-text h2 {
  font-size: 2.5rem;
  color:  #00c0ff;
  margin-bottom: 1rem;
  animation: slideUp 1s ease;
}
/* Change h3 and p text color in Services section */
#services h3 {
  color: #00537e; /* example: deep blue */
}

#services p {
  color:black; /* example: dark gray */
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.split-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.split-image {
  flex: 1 1 500px;
  text-align: center;
}

.split-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: zoomIn 1s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 192, 255, 0.3);
}

.btn.primary {
  background: linear-gradient(to right, #00c0ff, #00537e);
  color: white;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00c0ff;
  color: #00c0ff;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00c0ff;
  background: #00c0ff;
  color: white;
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 2s ease;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  background: #00c0ff;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #009edc;
  box-shadow: 0 0 15px #00c0ff;
}

/* Footer */
footer {
  background: linear-gradient(to right, #141e30, #243b55);
  color: white;
  padding: 3rem 1rem;
  margin-top: 3rem;
  animation: fadeIn 2s ease;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

footer h3, footer h4 {
  margin-bottom: 1rem;
  color: #00c0ff;
  animation: blink 2s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #00c0ff;
}

footer p {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive: Stack columns on smaller screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .split-text h2 {
    font-size: 2rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}
