*{box-sizing:border-box;margin:0;padding:0}
body{
  color:#1f2937;
  background:#ffffff;
  font-family: Roboto, Arial, sans-serif;
  margin: 0;
  color: #333;
  font-size: 15px;
}
a{text-decoration:none;color:inherit}
.container{width:90%;max-width:1200px;margin:auto}
.narrow{max-width:800px}
.center{text-align:center}

/* Header */
.header{
  background:#ffffff;
  border-bottom:1px solid #00b6f1;
  position:sticky;top:0;z-index:10;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:5px 0;
}
.nav a{margin-left:28px;font-weight:500}
.btn-outline{
  padding:8px 16px;border:1px solid #00b6f1;border-radius:6px;color:#00b6f1
}

/* Hero */
.hero{
  background:linear-gradient(135deg,#f8fafc,#0b78b5);
  padding:90px 0;
}
.hero-inner{display:flex;align-items:center}
.hero-text h1{font-size:44px;line-height:1.2;margin-bottom:16px}
.hero-text p{font-size:18px;color:#4b5563;max-width:600px}
.hero-actions{margin-top:28px}
.btn-primary{
  background:#2563eb;color:#fff;
  padding:14px 28px;border-radius:8px;
  display:inline-block;font-weight:600
}
.btn-link{margin-left:20px;color:#2563eb;font-weight:500}

/* Sections */
.section{padding:80px 0}
.section.light{background:#f9fafb}
.section.dark{background:#111827}
.light-text{color:#ffffff}

/* Grids */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}

/* Cards */
.card{
  background:#ffffff;border-radius:14px;
  padding:30px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  text-align:center
}
.card h3{margin-bottom:12px;font-size:20px}
.card p{color:#6b7280}

/* Stats */
.stat{text-align:center}
.stat strong{display:block;font-size:32px;color:#2563eb}
.stat span{color:#6b7280}

/* Form */
.contact-form{display:flex;flex-direction:column;gap:16px}
.contact-form input,.contact-form textarea{
	width: 100%;
  padding:14px;border-radius:8px;border:none;
  font-family:'Poppins',sans-serif
}
.contact-form textarea{min-height:120px}
.full{width:100%}

/* Footer */
.footer{
  background:#020617;color:#9ca3af;
  padding:20px 0;text-align:center
}


.site-footer {
  background: #5b5f60;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  border-bottom: 1px dotted rgba(255,255,255,0.25);
  padding-bottom: 10px;
}

.footer-col p:last-child {
  border-bottom: none;
}

/* Scroll to top button */
.scroll-top {
  position: absolute;
  right: 20px;
  bottom: 70px;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
  line-height: 38px;
  font-size: 18px;
  text-decoration: none;
}

.scroll-top:hover {
  background: #ffffff;
  color: #5b5f60;
}

/* Bottom copyright */
.footer-bottom {
  background: #3f4344;
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 10px;
  }
}



/* Responsive */
@media(max-width:900px){
  .grid-3,.grid-4{grid-template-columns:1fr}
  .hero-text h1{font-size:34px}
}






.services-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* Section title */
.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #00b6f1;
  display: block;
  margin: 12px auto 0;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

/* Service box */
.service-box {
  padding: 40px 35px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.service-box h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}

.service-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* Button */
.btn-read-more {
  display: inline-block;
  background: #00b6f1;
  color: #fff;
  font-size: 14px;
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.btn-read-more span {
  margin-left: 5px;
  font-size: 16px;
}

.btn-read-more:hover {
  background: #009ccc;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    text-align: left;
  }
}



.offer-section {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #000;
  line-height: 1.7;
}

.offer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.offer-list {
  padding-left: 25px;
  margin: 0;
}

.offer-list li {
  margin-bottom: 14px;
}

/* Optional highlight effect seen in screenshot */
.highlight {
  border-bottom: 2px solid #f5c26b;
  padding-bottom: 1px;
}



/* -------- ERROR TEXT -------- */
.field {
  margin-bottom: 15px;
}

.error {
  color: #e53935;
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

/* -------- BUTTON SPINNER -------- */
.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

button.loading .btn-text {
  display: none;
}

button.loading .spinner {
  display: inline-block;
}

/* -------- MODAL -------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.modal-content h2 {
  margin-bottom: 10px;
}



.integration-section {
  padding: 60px 15px;
  background: #ffffff;
  font-family: "Times New Roman", Times, serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.integration-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

/* Underline (gray line + small blue center line) */
.integration-underline {
  width: 220px;
  height: 3px;
  background: #8a8a8a;
  margin: 12px auto 40px;
  position: relative;
  border-radius: 2px;
}

.integration-underline .blue-bar {
  width: 60px;
  height: 4px;
  background: #0094d9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}

/* Grid */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Cards */
.integration-card {
  border-radius: 8px;
  padding: 32px 26px;
  min-height: 320px;
  color: #ffffff;
  position: relative;
  overflow: hidden;

  /* Gradient like screenshot */
  background: linear-gradient(135deg, #1f3d5f, #2b6d86);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Decorative overlay shapes (faint) */
.integration-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -70px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.integration-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -120px;
  top: -120px;
  background: rgba(0, 0, 0, 0.10);
  border-radius: 50%;
}

/* Icon */
.integration-card .icon {
  font-size: 44px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* Title inside card */
.integration-card h3 {
  font-size: 20px;
  margin: 0 0 14px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Card text */
.integration-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Hover */
.integration-card:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .integration-title {
    font-size: 26px;
  }
}



.portfolio-section {
  background: #e6f0f2; /* light blue like screenshot */
  padding: 60px 15px;
  font-family: "Times New Roman", Times, serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.portfolio-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Underline (gray line + blue center) */
.portfolio-underline {
  width: 180px;
  height: 3px;
  background: #8a8a8a;
  margin: 12px auto 22px;
  position: relative;
  border-radius: 2px;
}

.portfolio-underline .blue-bar {
  width: 55px;
  height: 4px;
  background: #0094d9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}

/* Description text */
.portfolio-desc {
  max-width: 1100px;
  margin: 0 auto 35px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Portfolio card box */
.portfolio-item {
  background: #ffffff;
  padding: 10px;
  border: 4px solid #e0e0e0; /* thick border like screenshot */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Images */
.portfolio-item img {
  width: 100%;
  height: 240px; /* same height to align boxes */
  object-fit: cover;
  display: block;
}

/* Hover effect */
.portfolio-item:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-title {
    font-size: 26px;
  }

  .portfolio-item img {
    height: 200px;
  }
}




.portfolio-item {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 3s ease;
}

/* Scroll full image height */
.portfolio-item:hover img {
  transform: translateY(calc(-100% + 260px));
}
