﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600;700;800&display=swap");
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

:root {
  --blue: #086ad8;
  --blue-dark: #004ea2;
  --heading: #0e2b4c;
  --text: #5f6f86;
  --muted: #eef4fb;
  --dark: #101a25;
  --border: #e7eef7;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(6, 36, 78, 0.1);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 30px));
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
}

.section {
  padding: 92px 0;
}

.section-top {
  padding-top: 92px;
}

.bg-gray {
  background: var(--muted);
}

.text-center {
  text-align: center;
}

.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.topbar .container {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left,
.topbar-right,
.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar i {
  margin-right: 8px;
}

.topbar .divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.45);
}

.social-links {
  gap: 18px;
}

.social-links a {
  color: var(--white);
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(12, 38, 75, 0.05);
}

.navbar {
  min-height: 91px;
  display: grid;
  grid-template-columns: 220px 1fr 245px;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 171px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #111827;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 91px;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue);
}

.call-box {
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 1px solid #e6edf6;
  padding-left: 26px;
  justify-self: end;
}

.call-box i {
  color: var(--blue);
  font-size: 34px;
  transform: rotate(100deg);
}

.call-box span {
  display: block;
  font-size: 13px;
  color: #697386;
  line-height: 1.2;
}

.call-box strong {
  display: block;
  color: #081a34;
  font-size: 14px;
  line-height: 1.6;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
}

.hero {
  min-height: 585px;
  background: var(--muted);
  overflow: hidden;
}

.hero .container {
  min-height: 585px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: start;
  gap: 40px;
  padding: 116px 0 24px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 22px;
  color: #0d2239;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
}

.hero h1 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: clamp(40px, 4.3vw, 58px);
  font-weight: 800;
  line-height: 1.15;
}

.hero p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #536173;
  font-size: 13px;
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-more {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
  text-transform: capitalize;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  margin-top: -88px;
}

.hero-media img {
  width: min(100%, 520px);
  margin-right: 10px;
}

.about-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.about-images {
  position: relative;
  min-height: 510px;
}

.about-images .main {
  width: 73%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-images .small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  border: 12px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 38px;
  width: 260px;
  padding: 26px 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.section-title h5,
.feature-copy h5,
.site-heading h4 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title h2,
.feature-copy h2,
.site-heading h2,
.about-copy h2,
.tab-content h2,
.contact-form h2 {
  margin: 0 0 22px;
  color: var(--heading);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.25;
}

.about-copy p {
  margin: 0 0 24px;
}

.vision-list {
  display: grid;
  gap: 22px;
  margin: 28px 0;
}

.vision-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
}

.round-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
}

.vision-list h4,
.feature-card h5,
.service-card h4,
.choose-card h4 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.vision-list p {
  margin: 0;
}

.author {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 4px;
}

.signature {
  max-width: 145px;
}

.author h5 {
  margin: 0 0 4px;
  color: var(--heading);
  font-size: 17px;
  font-weight: 800;
}

.author span {
  font-size: 13px;
}

.features {
  position: relative;
  overflow: hidden;
}

.features .shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 210px;
  opacity: 0.75;
}

.feature-grid {
  grid-template-columns: 0.85fr 1.15fr;
  position: relative;
  z-index: 1;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  color: var(--heading);
  font-weight: 800;
}

.play-circle {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 9px rgba(8, 106, 216, 0.12);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.feature-card,
.service-card,
.choose-card,
.contact-form,
.contact-info-panel {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 38px 30px 32px;
}

.feature-card i,
.service-card .icon i,
.tab-content .service-icon {
  color: var(--blue);
  font-size: 42px;
}

.feature-card p,
.service-card p,
.choose-card p {
  margin: 0;
  font-size: 14px;
}

.site-heading {
  max-width: 620px;
  margin: 0 auto 42px;
}

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

.service-card {
  min-height: 230px;
  padding: 34px 25px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(6, 36, 78, 0.14);
}

.service-card .icon {
  margin-bottom: 18px;
}

.service-card .arrow {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border-radius: 50%;
  color: var(--blue);
  background: #eaf3ff;
}

.clients {
  padding-bottom: 80px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.client-logo {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

.client-logo img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

.page-hero {
  position: relative;
  padding: 95px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(4, 18, 38, 0.72), rgba(4, 18, 38, 0.72)),
    url("../img/video-bg.jpg") center / cover;
}

.page-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--white);
}

.services-tabs {
  display: grid;
  gap: 32px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tab-button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--heading);
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tab-image {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.tab-content {
  padding: 58px 60px;
}

.tab-content ul {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.tab-content li {
  position: relative;
  padding-left: 28px;
  color: #3e4b5d;
  font-weight: 600;
}

.tab-content li::before {
  content: "\f00c";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.video-area {
  position: relative;
  overflow: hidden;
  padding: 110px 0 135px;
  color: var(--white);
  text-align: center;
  background-position: center;
  background-size: cover;
}

.video-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 36, 0.76);
}

.video-area .container {
  position: relative;
  z-index: 1;
}

.video-area h2 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
}

.video-area .shape-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  min-height: 70px;
  object-fit: cover;
  z-index: 1;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: -55px;
  position: relative;
  z-index: 2;
}

.choose-card {
  min-height: 250px;
  padding: 42px;
}

.call-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  color: var(--heading);
  font-weight: 800;
}

.call-inline .round-icon {
  width: 52px;
  height: 52px;
}

.contact-form,
.contact-info-panel {
  padding: 48px;
}

.contact-form .heading p {
  margin: -8px 0 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-control {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 18px;
  color: var(--heading);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea.form-control {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 106, 216, 0.12);
}

.form-status {
  display: none;
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 700;
}

.form-status.success {
  display: block;
  color: #086d31;
  background: #e8f8ee;
}

.form-status.error {
  display: block;
  color: #9a1f1f;
  background: #fdecec;
}

.contact-tabs .tab-buttons {
  justify-content: flex-start;
  gap: 32px;
  margin: 0 0 34px;
  padding: 0;
  border-bottom: 1px solid #dfe7f1;
}

.contact-list {
  display: grid;
  gap: 40px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 24px;
  align-items: center;
}

.contact-list p {
  margin: 0;
  color: var(--heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-list p span {
  display: block;
  margin-top: 6px;
  color: #59677a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-transform: none;
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 4px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #c8d2df;
}

.site-footer .footer-map {
  position: absolute;
  top: 35px;
  right: 3%;
  width: 520px;
  opacity: 0.08;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 82px 0 66px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.5fr;
  gap: 36px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 24px;
}

.site-footer h4 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.footer-contact i {
  color: var(--blue);
  margin-top: 6px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.whatsapp-float {
  position: fixed;
  left: 15px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.whatsapp-float i {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #25d366;
  font-size: 29px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.whatsapp-float span {
  display: none;
  padding: 3px 16px;
  border-radius: 10px;
  background: #25d366;
  font-size: 15px;
  font-weight: 600;
}

.whatsapp-float:hover span {
  display: inline-flex;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 80;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
}

.scroll-top.visible {
  display: inline-flex;
}

@media (max-width: 1199px) and (min-width: 901px) {
  .container {
    width: min(960px, calc(100% - 30px));
  }
}

@media (max-width: 1100px) {
  .navbar {
    grid-template-columns: 190px 1fr auto;
  }

  .call-box {
    display: none;
  }

  .services-grid,
  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar .container,
  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar .container {
    padding: 9px 0;
  }

  .navbar {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 14px;
    border-top: 1px solid var(--border);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    min-height: 46px;
  }

  .hero,
  .hero .container {
    min-height: auto;
  }

  .hero .container,
  .about-grid,
  .feature-grid,
  .contact-grid,
  .tab-card,
  .choose-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero .container {
    padding: 70px 0 64px;
  }

  .hero-media {
    justify-content: center;
    margin-top: 0;
  }

  .hero-media img {
    width: min(100%, 500px);
    margin: 0;
  }

  .about-images {
    min-height: 440px;
  }

  .page-hero .container,
  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 70px 0;
  }

  .tab-image {
    min-height: 320px;
  }

  .tab-content,
  .contact-form,
  .contact-info-panel,
  .choose-card {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .section,
  .section-top {
    padding: 64px 0;
  }

  .hero-kicker,
  .eyebrow {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .feature-cards,
  .services-grid,
  .client-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: 330px;
  }

  .about-badge {
    width: 220px;
    left: 12px;
    bottom: 20px;
    padding: 20px;
    font-size: 15px;
  }

  .author {
    align-items: flex-start;
    flex-direction: column;
  }

  .tab-buttons {
    justify-content: stretch;
  }

  .tab-button {
    width: 100%;
  }

  .tab-content,
  .contact-form,
  .contact-info-panel,
  .choose-card {
    padding: 28px 22px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}





@media (max-width: 640px) {
  .whatsapp-float { left: 10px; bottom: 8px; }
  .whatsapp-float i { width: 44px; height: 44px; border-radius: 12px; font-size: 25px; }
}


.contact-info-panel {
  background: transparent;
  box-shadow: none;
  padding: 0 4px;
}

.contact-tabs .tab-button {
  min-height: auto;
  padding: 0 0 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #061f38;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.contact-tabs .tab-button.active {
  border: 0;
  background: transparent;
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.contact-list .round-icon {
  width: 100px;
  height: 100px;
  border-radius: 42% 50% 40% 50%;
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 14px 38px rgba(10, 38, 82, 0.11);
  font-size: 34px;
}

@media (max-width: 640px) {
  .contact-tabs .tab-buttons {
    gap: 20px;
    margin-bottom: 28px;
  }

  .contact-tabs .tab-button {
    width: auto;
    font-size: 31px;
    padding-bottom: 11px;
  }

  .contact-list {
    gap: 30px;
  }

  .contact-list li {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .contact-list .round-icon {
    width: 74px;
    height: 74px;
    font-size: 26px;
  }

  .contact-list p,
  .contact-list p span {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .topbar {
    font-size: 14px;
    line-height: 1.45;
  }

  .topbar .container {
    width: 100%;
    min-height: 0;
    padding: 10px 18px 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    justify-content: stretch;
  }

  .topbar span,
  .topbar a {
    width: 100%;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    text-align: left;
  }

  .topbar i {
    margin: 3px 0 0;
    text-align: center;
  }

  .topbar .divider,
  .social-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }
}
