* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7fbff;
  color: #0b1f33;
}

html {
    scroll-behavior: smooth;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 48px;
  background: rgba(247, 251, 255, 0.85);
  backdrop-filter: blur(14px);
}

.navbar {
  max-width: 1600px;
  margin: 0 auto;
  height: 96px;
  padding: 0 34px;
  background: white;
  border: 1px solid rgba(15, 61, 93, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(15, 61, 93, 0.12);
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 18px;
}


.logo img {
  width: 220px;
  max-height: 86px;
  object-fit: contain;
  display: block;
}


.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #0b1f33;
  font-size: 13.7px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:#4EA8FF;
}


.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background:#4EA8FF;
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone {
  text-decoration: none;
  color: #0b1f33;
  font-weight: 600;
  white-space: nowrap;
}


.quote-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #2F80ED, #56CCF2);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(13, 100, 200, 0.28);
  transition: 0.25s ease;
  white-space: nowrap;
}


.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 100, 200, 0.36);
}

.menu-toggle {
  display: none;
  border: none;
  background: #eef7ff;
  color: #0d64c8;
  font-size: 28px;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  max-width: 1480px;
  margin: 0 auto;
  padding: 90px 48px 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  padding-top: 60px;
}

.eyebrow {
  color: #2F80ED;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #145DA0;
  max-width: 780px;
  margin-bottom: 26px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4c6074;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-btn {
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.25s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #2F80ED, #56CCF2);
  color: white;
  box-shadow: 0 12px 28px rgba(47, 128, 237, 0.28);
}

.hero-btn.secondary {
  background: white;
  color: #0B1F33;
  border: 1px solid rgba(15, 61, 93, 0.12);
}

.hero-btn:hover {
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #0B1F33;
  box-shadow: 0 8px 24px rgba(15, 61, 93, 0.08);
}

.hero-visual {
  position: relative;
}

.image-card {
  background: white;
  padding: 16px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 61, 93, 0.16);
}

.image-placeholder {
  height: 520px;
  border-radius: 22px;
  background: linear-gradient(135deg, #dff4ff, #ffffff);
  display: grid;
  place-items: center;
  color: #2F80ED;
  font-weight: 600;
}

.floating-card {
  position: absolute;
  left: -30px;
  bottom: 34px;
  background: white;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 61, 93, 0.18);
}

.floating-card strong {
  display: block;
  color: #0B1F33;
  font-size: 20px;
}

.floating-card span {
  color: #607589;
  font-size: 14px;
}

.expertise {
  max-width: 1480px;
  margin: 0 auto;
  padding: 70px 48px 110px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #145DA0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.expertise-card {
  background: white;
  min-height: 260px;
  padding: 34px 28px;
  border-radius: 22px;
  border: 1px solid rgba(15, 61, 93, 0.08);
  box-shadow: 0 14px 34px rgba(15, 61, 93, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef7ff;
  color: #2F80ED;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  transition: 0.35s ease;
}

.expertise-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #0B1F33;
  transition: 0.35s ease;
}

.short-text {
  color: #607589;
  line-height: 1.6;
  font-size: 15px;
  transition: 0.35s ease;
}

.hover-text {
  color: white;
  line-height: 1.7;
  font-size: 14.5px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: 0.35s ease;
}

.expertise-card:hover {
  background: linear-gradient(135deg, #2F80ED, #56CCF2);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(47, 128, 237, 0.28);
}

.expertise-card:hover .card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.expertise-card:hover h3,
.expertise-card:hover .short-text {
  color: white;
}

.expertise-card:hover .hover-text {
  opacity: 1;
  max-height: 180px;
  transform: translateY(0);
  margin-top: 14px;
}


.services {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 48px 110px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border-radius: 22px;
  padding: 34px 28px;
  border: 1px solid rgba(15, 61, 93, 0.08);
  box-shadow: 0 14px 34px rgba(15, 61, 93, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 128, 237, 0.45);
  box-shadow: 0 24px 60px rgba(47, 128, 237, 0.18);
}

.service-number {
  display: inline-block;
  color: #2F80ED;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #0B1F33;
}

.service-card p {
  color: #607589;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}

.service-card a {
  text-decoration: none;
  color: #2F80ED;
  font-weight: 600;
  transition: 0.25s ease;
}

.service-card:hover a {
  color: #0B1F33;
  padding-left: 6px;
}

.industries {
  max-width: 1480px;
  margin: 0 auto;
  padding: 30px 48px 110px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1050px;
  margin: 0 auto;
}

.industry-pill {
  background: white;
  color: #0B1F33;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(15, 61, 93, 0.08);
  box-shadow: 0 10px 26px rgba(15, 61, 93, 0.07);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.industry-pill:hover {
  background: linear-gradient(135deg, #2F80ED, #56CCF2);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(47, 128, 237, 0.22);
}

.stats {
    padding: 100px 48px;
    background: linear-gradient(180deg,#0B1F33,#153854);
}

.stats-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:40px 30px;
    transition:.35s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
    background:#2F80ED;
    box-shadow:0 25px 50px rgba(0,0,0,.25);
}

.stat-card h2{
    color:white;
    font-size:48px;
    margin-bottom:12px;
}

.stat-card h4{
    color:white;
    font-size:22px;
    margin-bottom:16px;
}

.stat-card p{
    color:rgba(255,255,255,.75);
    line-height:1.7;
}

.estimate {
  max-width: 1480px;
  margin: 0 auto;
  padding: 110px 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.estimate-content h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #145DA0;
  margin-bottom: 24px;
}

.estimate-content p {
  color: #607589;
  font-size: 18px;
  line-height: 1.8;
  max-width: 580px;
}

.contact-details {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.contact-details a {
  color: #0B1F33;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.contact-details a:hover {
  color: #2F80ED;
}

.estimate-form {
  background: white;
  padding: 34px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 61, 93, 0.14);
  border: 1px solid rgba(15, 61, 93, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(15, 61, 93, 0.12);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  outline: none;
  background: #f7fbff;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: #2F80ED;
  background: white;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form button {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #2F80ED, #56CCF2);
  color: white;
  padding: 17px 24px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 12px 28px rgba(47, 128, 237, 0.28);
}

.estimate-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(47, 128, 237, 0.35);
}

/* ===================================
   FOOTER
=================================== */

.footer{

    background:#081726;

    margin-top:100px;

    color:white;

}

.footer-container{

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:
    2fr
    1fr
    1fr
    1.3fr;

    gap:70px;

    padding:80px 48px;

}

.footer-brand img{

    width:230px;

    margin-bottom:24px;

}

.footer-brand p{

    color:rgba(255,255,255,.7);

    line-height:1.9;

    max-width:420px;

}

.footer h4{

    margin-bottom:22px;

    font-size:20px;

    color:white;

}

.footer a{

    display:block;

    color:rgba(255,255,255,.75);

    text-decoration:none;

    margin-bottom:14px;

    transition:.25s;

}

.footer a:hover{

    color:#56CCF2;

    padding-left:6px;

}

.footer-contact p{

    color:rgba(255,255,255,.7);

    margin-top:14px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:26px;

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

}


@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-container{
    grid-template-columns:repeat(2,1fr);
}
.estimate {
  grid-template-columns: 1fr;
}
.footer-container{

    grid-template-columns:1fr 1fr;

}
}

@media (max-width: 650px) {
  .services {
    padding-left: 22px;
    padding-right: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .industries {
  padding-left: 22px;
  padding-right: 22px;
 }
 .industry-pill {
  width: 100%;
  text-align: center;
}
.stats{
    padding:70px 22px;
}

.stats-container{
    grid-template-columns:1fr;
}
.estimate {
  padding: 70px 22px;
}

.form-row {
  grid-template-columns: 1fr;
}

}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    left: 20px;
  }
}

@media (max-width: 650px) {
  .hero,
  .expertise {
    padding-left: 22px;
    padding-right: 22px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .image-placeholder {
    height: 360px;
  }
}


@media (max-width: 1300px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    height: 82px;
    position: relative;
  }

  .logo img {
    width: 210px;
  }

  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 116px;
    left: 24px;
    right: 24px;
    background: white;
    flex-direction: column;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 61, 93, 0.18);
  }

  .nav-menu.open a::after {
    display: none;
  }
}


@media (max-width: 520px) {
  .site-header {
    padding: 12px;
  }

  .navbar {
    padding: 0 16px;
    height: 76px;
  }

  .logo img {
    width: 175px;
  }
}

.hero-image{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:22px;
    display:block;
}

