/* =========================== *
   GENERAL STYLES
* =========================== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f0f4f8;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

h1, h2, h3, h4 {
  margin: 0 0 15px;
}

p {
  margin-bottom: 15px;
}

/* =========================== *
   NAVIGATION
* =========================== */
nav {
  background: #003366;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #00c0ff;
}

/* =========================== *
   HERO + SWIPER SLIDER
* =========================== */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #001f3f;
  color: #fff;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
}

.content h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #0070dd, #00c6ff);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(45deg, #0055aa, #00bfff);
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

.banner-angle-shape .shape-item {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.shape-item:nth-child(1) { top: 20%; left: 10%; }
.shape-item:nth-child(2) { bottom: 15%; right: 20%; }
.shape-item:nth-child(3) { top: 50%; left: 45%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* =========================== *
   ABOUT SECTION
* =========================== */
.about-intellect {
  background: linear-gradient(to right, #050d1d, #0b1a2e);
  color: #ffffff;
  padding: 80px 20px;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-graphic img {
  max-width: 250px;
  filter: brightness(0.8);
}

.about-media {
  max-width: 350px;
}

.badge-box {
  background: #0049b7;
  color: white;
  padding: 15px;
  border-left: 4px solid orange;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.badge-box img {
  width: 40px;
  height: 40px;
}

.award-box h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.award-box p {
  font-size: 14px;
  color: #ccc;
}

.award-box img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin-top: 10px;
}

.about-text {
  flex: 1;
  max-width: 540px;
}

.about-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-text h3 span {
  color: #00aaff;
  font-size: 16px;
}

.about-text .trusted {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-columns {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.about-columns div {
  flex: 1;
}

.about-columns h5 {
  color: #00aaff;
  font-size: 16px;
  margin-bottom: 8px;
}

.about-columns p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.experience {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.experience h1 {
  font-size: 56px;
  color: white;
}

.experience p {
  font-size: 14px;
  color: #ccc;
}

/* =========================== *
   PROCESS SECTION
* =========================== */
.process {
  background: #00182d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.process h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #00c6ff;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step-box {
  width: 250px;
  background: linear-gradient(to right, #00304f, #004b6b);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-in-out;
}

.step-box.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

.step-box h3 {
  color: #00c6ff;
  font-size: 20px;
  margin-bottom: 10px;
}

.step-box p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================== *
   METHODOLOGY SECTION
* =========================== */
.methodology-section {
  background: linear-gradient(to right, #001d33, #003355);
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

.methodology-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #00c6ff;
}

.methodology-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card-method {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateX(100px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  position: relative;
}

.card-method.visible {
  transform: translateX(0);
  opacity: 1;
}

.card-method::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: -15px;
  background: #00c6ff;
  color: #001f3f;
  font-weight: bold;
  padding: 10px 15px;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
}

.card-method h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.card-method p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================== *
   SERVICES SECTION
* =========================== */
.services-section {
  background: linear-gradient(to right, #001d33, #003355);
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #00c6ff;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: translate(80px, 80px);
  opacity: 0;
  transition: all 0.6s ease;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.service-card.visible {
  transform: translate(0, 0);
  opacity: 1;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.icon-box {
  background: #00c6ff;
  color: #fff;
  font-size: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 12px rgba(0, 198, 255, 0.3);
  transition: transform 0.4s ease;
}

.service-card:hover .icon-box {
  animation: pulse-rotate 1s infinite;
}

@keyframes pulse-rotate {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(15deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-desc {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

/* =========================== *
   CONTACT SECTION
* =========================== */
.contact {
  background: linear-gradient(to right, #002244, #003366);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
  font-size: 34px;
  color: #00c6ff;
}

.contact-form {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  background: #f8f9fb;
  color: #222;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 2px solid #00c6ff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  background: linear-gradient(to right, #007acc, #00c6ff);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(to right, #005fab, #00aaff);
}

/* =========================== *
   FOOTER
* =========================== */
.footer {
  background: #00182a;
  color: #ccc;
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Company Name Row */
.footer-logo {
  text-align: center;
  max-width: 500px;
}

.footer-logo h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-logo p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* Link Rows */
.footer-links-row {
  display: flex;
  justify-content: center;      /* Center the entire row */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 900px;             /* Limit width for better centering */
  margin: 0 auto;               /* Center the container itself */
  text-align: left;
}

.footer-links {
  flex: 1 1 200px;              /* Allows wrapping while keeping size */
  min-width: 180px;
  max-width: 250px;
}



.footer-links h4 {
  color: #00c6ff;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00e6ff;
}

/* Bottom Row */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}

.social-icons a {
  color: #00c6ff;
  margin: 0 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex: 1 1 auto;
  }
}


/* =========================== *
   RESPONSIVE
* =========================== */
@media (max-width: 991px) {
  .content h2 {
    font-size: 28px;
  }
  nav {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .swiper-slide {
    padding: 60px 15px;
    flex-direction: column;
    text-align: center;
  }
  .content h2 {
    font-size: 24px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .about-columns {
    flex-direction: column;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
