/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #2e2e2e;
}

h1, h2, h3 {
  margin: 0;
}

a {
  text-decoration: none;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 10%;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}
.hero-text {
  flex: 1;
  z-index: 1;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #34495E;
  color: #fff;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #8fa0b2;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  width: 90%;
  max-width: 500px;
  animation: float 5s ease-in-out infinite;
}
.glow-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #aabfff33, transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

/* Typing Animation */
.typing {
  overflow: hidden;
  border-right: .15em solid #2e2e2e;
  white-space: nowrap;
  animation: typing 2.5s steps(30, end), blink-caret 0.75s step-end infinite;
  max-width: 100%;
  display: inline-block;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #2e2e2e; }
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1.5s ease 2.6s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Float Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Services Section */
.services {
  background: #fafafa;
  padding: 100px 10%;
  text-align: center;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}
.service-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid #dcdcdc;
   border-left: 6px solid #a3b4c7;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

/* Process Accordion Section */
.process-accordion {
  padding: 80px 20px;
  background: #ffff;
}
.process-accordion .container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion {
  border-top: 2px solid #34495E;
}
.accordion-item {
  border-bottom: 2px solid #34495E;
  overflow: hidden;
}
.accordion-header {
  background: #f7f7f7;
  padding: 15px 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #34495E;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  width: 100%;
  text-align: left;
}
.accordion-header:hover {
  background: #e0e0e0;
}
.accordion-header.active {
  background: #FFC107;
  color: #34495E;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.5s ease;
  padding: 0 20px;
}
.accordion-content p {
  padding: 15px 0;
  color: #666;
  font-size: 1em;
}


.integration {
  position: relative;
  background: linear-gradient(to right, #e6eef3, #f8f9fa);
  padding: 100px 10%;
  text-align: center;
  overflow: hidden;
}
.integration::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #34495E, transparent 90%);
  filter: blur(100px);
  z-index: 0;
}
.integration-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}
.integration-content h2 {
  font-size: 2.5rem;
  color: #2e2e2e;
  margin-bottom: 20px;
}
.integration-content p {
  font-size: 1.1rem;
  color: #4e5d6c;
}


/* Contact Us Section */
.contact {
  background: #f9fafc;
  padding: 100px 10%;
  text-align: center;
  color: #2e2e2e;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #2e2e2e;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #505050;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border: 1px solid #c4c4c4;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a3b4c7;
  outline: none;
  box-shadow: 0 0 10px #a3b4c7aa;
}

.contact-form button.btn {
  background: #34495E;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 0;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button.btn:hover {
  background: #8fa0b2;
}

/* Subtle floating glow behind form */
.contact::before {
  content: "";
  position: absolute;
  top: -120px;
  right: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a3b4c7bb, transparent 70%);
  filter: blur(90px);
  transform: translateX(50%);
  z-index: 0;
}

/* Animate form inputs sliding up */
.contact-form input,
.contact-form textarea,
.contact-form button {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}

.contact-form input:nth-child(1) {
  animation: fadeSlideUp 0.5s ease forwards 0.3s;
}

.contact-form input:nth-child(2) {
  animation: fadeSlideUp 0.5s ease forwards 0.5s;
}

.contact-form textarea {
  animation: fadeSlideUp 0.5s ease forwards 0.7s;
}

.contact-form button {
  animation: fadeSlideUp 0.5s ease forwards 0.9s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.contact-form input:nth-child(3) {
  animation: fadeSlideUp 0.5s ease forwards 0.6s;
}
.contact-form textarea {
  animation: fadeSlideUp 0.5s ease forwards 0.75s;
}
.contact-form button {
  animation: fadeSlideUp 0.5s ease forwards 0.9s;
}
