@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
:root {
  --ink: #11263c;
  --blue: #b22222;
  --sky: #eaf5ff;
  --cyan: #21b8da;
  --muted: #617487;
  --line: #dce7f0;
  --white: #fff;
  --shadow: 0 18px 45px rgba(17, 56, 93, 0.12);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.7 "DM Sans", sans-serif;
  background: #fff;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, sans-serif;
  line-height: 1.18;
  margin: 0 0 15px;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.13rem;
}
p {
  margin: 0 0 16px;
  color: var(--muted);
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.section {
  padding: 50px 0;
}
.eyebrow {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin: 20px 0px;
}
.lead {
  max-width: 670px;
  font-size: 1.08rem;
}
.section-head {
  max-width: 700px;
  margin-bottom: 46px;
}
.section-head.center {
  text-align: center;
  margin: 0 auto 46px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 700;
  transition: 0.25s;
  cursor: pointer;
  font: inherit;
}
.btn.primary {
  background: linear-gradient(115deg, #b22222, #1a1a1a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 97, 184, 0.28);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 28px rgba(17, 97, 184, 0.38);
}
.btn.light {
  background: #fff;
  color: var(--ink);
}
.btn.outline {
  border-color: #b9d4eb;
  color: var(--blue);
  background: #fff;
}
.btn.outline:hover {
  background: var(--sky);
}
/* Header */
.topbar {
  background: #b22222;
  color: #ffffff;
  font-size: 0.78rem;
}
.topbar .container {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.navbar {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(220, 231, 240, 0.8);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: Manrope;
  font-size: 1.13rem;
  font-weight: 800;
  line-height: 1.05;
}
.brand-mark {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  background: linear-gradient(135deg, #18b8db, #1356ae);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
}
.brand small {
  font: 600 0.59rem "DM Sans";
  letter-spacing: 0.13em;
  color: #5a748b;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-weight: 700;
  font-size: 0.88rem;
}
.nav-links a {
  position: relative;
  padding: 7px 0;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: 0.25s;
}
.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}
.nav-actions {
  display: flex;
  gap: 9px;
}
.nav-actions .btn {
  font-size: 0.8rem;
  padding: 9px 13px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--ink);
}
/* Hero */
.hero {
  min-height: 695px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  /* background: radial-gradient(
      circle at 85% 25%,
      rgba(31, 181, 218, 0.35),
      transparent 25%
    ),
    linear-gradient(115deg, #0a2948 5%, #114c81 65%, #0e315a); */
  background-image: url('../img/banner.jpg');
  background-size: cover;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 25, 44, 0.85),
    rgba(5, 25, 44, 0.46)
  );
}
.hero:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  right: -220px;
  bottom: -290px;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035),
    0 0 0 140px rgba(255, 255, 255, 0.025);
}
.hero-content {
  position: relative;
  z-index: 1;
  /* max-width: 760px; */
  padding: 90px 0;
}
.hero .eyebrow {
  color: #8deaff;
}
.hero p {
  font-size: 1.13rem;
  max-width: 670px;
  color: #deedf8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-badges {
  display: flex;
  gap: 27px;
  margin-top: 50px;
  color: #e9f4fb;
  font-weight: 700;
  font-size: 0.88rem;
}
.hero-badges span:before {
  content: "  ";
  color: #7ce3f6;
  margin-right: 8px;
  width: 10px;
  height: 10px;
}
.float-card {
  position: absolute;
  z-index: 2;
  right: max(5%, calc((100vw - 1160px) / 2));
  top: 300px;
  width: 245px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: #b2222247;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}
.float-card strong {
  font: 800 2rem Manrope;
}
.float-card p {
  font-size: 0.78rem;
  margin: 0;
  color: #d8ecfa;
}
@keyframes float {
  50% {
    transform: translateY(-15px);
  }
}
/* General cards */
.grid {
  display: grid;
  gap: 20px;
}
.intro-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 75px;
}
.about-image-panel {
  min-height: 800px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #dcecf7, #8cc3e4);
  background-image: url('../img/about.jpeg');
  background-size: cover;
}
.image-panel {
  min-height: 420px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #dcecf7, #8cc3e4);
}
.image-panel:before {
  content: "WF";
  position: absolute;
  font: 800 11rem Manrope;
  color: rgba(255, 255, 255, 0.55);
  right: -15px;
  bottom: -45px;
}
.image-panel:after {
  content: "Reliable service. Remarkable standards.";
  position: absolute;
  left: 25px;
  bottom: 24px;
  padding: 12px 16px;
  background: rgba(10, 43, 75, 0.8);
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-family: Manrope;
}
.value-grid {
  grid-template-columns: repeat(3, 1fr);
}
.value-card,
.service-card,
.industry-card,
.feature-card,
.testimonial,
.contact-info {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: 0.28s;
}
.value-card:hover,
.service-card:hover,
.industry-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #b2222233, #b2222233);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.pale {
  background: #f6fbff;
}
.stats {
  background: linear-gradient(112deg, #b22222, #1a1a1a);
  color: #fff;
}
.stats p,
.stats .eyebrow {
  color: #cfeafb;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}
.stat {
  border-left: 1px solid rgba(255, 255, 255, 0.27);
  padding-left: 24px;
}
.stat:first-child {
  border: 0;
  padding-left: 0;
}
.stat strong {
  font: 800 clamp(2rem, 4vw, 3.2rem) Manrope;
}
.stat span {
  display: block;
  font-size: 0.88rem;
  color: #d4eaf8;
}
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.service-card p {
  font-size: 0.9rem;
}
.service-card .read-more {
  font-weight: 800;
  color: var(--blue);
  font-size: 0.88rem;
  margin-top: auto;
}
.service-card .read-more:after {
  content: " â†’";
  transition: 0.2s;
}
.service-card:hover .read-more:after {
  margin-left: 5px;
}
.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}
.industry-card {
  text-align: center;
  padding: 22px 10px;
}
.industry-card .icon {
  margin: 0 auto 10px;
  width: 40px;
  height: 40px;
  font-size: 1.15rem;
}
.industry-card h3 {
  font-size: 0.87rem;
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process:before {
  content: "";
  height: 2px;
  background: #b22222;
  position: absolute;
  left: 9%;
  right: 9%;
  top: 32px;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 0 9px;
}
.step-no {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #b22222;
  color: var(--blue);
  font: 800 1.15rem Manrope;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 0.95rem;
}
/* Testimonials & footer */
.testimonial-wrap {
  background: #f5faff;
}
.slider {
  position: relative;
  max-width: 800px;
  margin: auto;
}
.testimonial {
  text-align: center;
  box-shadow: 0 12px 35px rgba(17, 56, 93, 0.08);
  padding: 36px 52px;
  display: none;
}
.testimonial.active {
  display: block;
  animation: fade 0.45s;
}
@keyframes fade {
  from {
    opacity: 0.3;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.quote {
  font-size: 2.5rem;
  line-height: 0.5;
  color: #3aa1da;
}
.stars {
  letter-spacing: 3px;
  color: #ffb51b;
  margin: 18px 0;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 18px auto 9px;
  background: #d8edfa;
  color: var(--blue);
  font-weight: 800;
}
.slider-controls {
  text-align: center;
  margin-top: 20px;
}
.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  margin: 0 4px;
  background: #b9d3e5;
  cursor: pointer;
}
.dot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 8px;
}
.cta {
  padding: 65px 0;
  background: linear-gradient(110deg, #b22222, #1a1a1a);
  color: #fff;
}
.cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cta h2 {
  margin: 0;
}
.cta p {
  color: #d9eeff;
  margin: 5px 0 0;
}
.footer {
  background: #1a1a1a;
  color: #c5d5e2;
  padding: 65px 0 0;
}
.footer p {
  color: #aabfce;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 35px;
}
.footer .brand {
  color: #fff;
}
.footer h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer li {
  margin: 8px 0;
  font-size: 0.88rem;
}
.footer a:hover {
  color: #b22222;
}
.socials {
  display: flex;
  gap: 9px;
}
.socials a {
  width: 31px;
  height: 31px;
  border: 1px solid #456078;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}
.copyright {
  border-top: 1px solid #29435a;
  margin-top: 45px;
  padding: 18px 0;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
}
.backtop {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 21px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.25s;
}
.backtop.show {
  opacity: 1;
  transform: none;
}
/* Pages */
.page-hero {
  padding: 50px 0px;
  background: linear-gradient(
90deg, #b22222, #1a1a1a);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 60px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -90px;
  top: -180px;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: #ffffff;
}
.breadcrumb {
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 14px;
}
.about-copy {
  font-size: 1.02rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.check-list li {
  margin: 10px 0;
  color: var(--muted);
}
.check-list li:before {
  content: "âœ“";
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: #b22222;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  margin-right: 10px;
  /*position: relative;
  bottom: 5px;*/
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-logo {
  height: 105px;
  border: 1px solid #b22222;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #5f656b;
  font: 700 15px Manrope;
  background: linear-gradient(135deg, #b222221f, #b222221f);
  text-align: center;
  padding: 10px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
}
.form-card {
  padding: 34px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
  font-size: 0.82rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d2e0ea;
  border-radius: 8px;
  font: inherit;
  outline: 0;
  color: var(--ink);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #e3f2fc;
}
.info-row {
  display: flex;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-row .icon {
  margin: 0;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  font-size: 1rem;
}
.info-row p {
  font-size: 0.87rem;
  margin: 0;
}
.map {
  height: 180px;
  margin-top: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8ecf7, #b9dce9);
  display: grid;
  place-items: center;
  color: #266892;
  font-weight: 800;
}
.form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #168356;
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s, transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.row {
    display: flex;
    gap: 20px; /* dono columns ke beech space */
  }

  .col-lg-6 {
    flex: 1; /* dono columns equal width lenge */
    padding: 20px;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
    }
  }

  .main-img{
    width: 100%;
  }


/*Services Section*/

.technical-section{
  display:flex;
  min-height:100vh;
}

.left-content{
  width:50%;
  background:#f3f3f3;
  padding: 50px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.logo{
  font-size:42px;
  font-weight:700;
  color:#d9d9d9;
  margin-bottom:40px;
}

.small-title{
  color: #000000;
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:2px;
  position:relative;
  padding-bottom:10px;
  margin-bottom:25px;
}

.small-title::after{
  content:'';
  width:60px;
  height:3px;
  background: #b22222;
  position:absolute;
  left:0;
  bottom:0;
}

.left-content h2{
  font-size: 40px;
  font-weight:300;
  color: #b22222;
  line-height:1;
  letter-spacing: 0px;
}

.left-content h1{
  font-size: 45px;
  color: #b22222;
  font-weight:700;
  line-height:1;
  margin-bottom:30px;
  letter-spacing: 0px;
}

.description{
  color:#555;
  font-size:17px;
  line-height:1.9;
  margin-bottom:30px;
}

.left-content h4{
  font-size:22px;
  color:#333;
  margin-bottom:20px;
}

.service-list{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:40px;
}

.service-list ul{
  list-style:none;
}

.service-list li{
  margin-bottom:15px;
  color:#444;
  font-size:16px;
  position:relative;
  padding-left:20px;
}

.service-list li::before{
  content:'â€¢';
  color: #b22222;
  position:absolute;
  left:0;
  top:0;
  font-size:20px;
}

.thumb-gallery{
  display:flex;
  gap:15px;
}

.thumb-gallery img{
  width:33.33%;
  height:180px;
  object-fit:cover;
}

.right-image{
  width:50%;
}

.right-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media(max-width:992px){
  .technical-section{
    flex-direction:column;
  }

  .left-content,
  .right-image{
    width:100%;
  }

  .left-content{
    padding:40px 25px;
  }

  .left-content h2{
    font-size:44px;
  }

  .left-content h1{
    font-size:50px;
  }

  .service-list{
    flex-direction:column;
  }

  .thumb-gallery{
    flex-direction:column;
  }

  .thumb-gallery img{
    width:100%;
    height:220px;
  }

  .right-image{
    height:450px;
  }
}