:root {
  --bg: #f8fafc;
  --primary: #00008b;
  --secondary: #3b96e4;
  --amber: #f59e0b;
  --green: #16a34a;
  --muted: #64748b;
  --card: #ffffff;
  --maxw: 1300px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: var(--bg);
  color: #0f172a;
  font-family: 'Vulf Sans', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

a {
  text-decoration: none;
}
.text-primary{
  color: var(--secondary) !important;
}

img {
  max-width: 100%;
}

.container {
  max-width: var(--maxw);
}

.primary-text {
  color: var(--primary);
}

.topbar {
  background: #0f172a;
  color: #eef2ff;
  font-size: 14px;
  padding: 8px 0
}

.top-social .svg-icon {
  color: #fff;
  fill: #fff;
  width: 16px;
  height: 16px;
}

.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 8px rgba(2, 6, 23, 0.06);
  z-index: 40
}

.btn-top {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #1ebd5d;
}

.btn-appointment {
  background-color: #ff9800;
  color: #000;
}

.btn-appointment:hover {
  background-color: #e68900;
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none
}

.btn:hover {
  background: var(--secondary);
  color: var(--bs-white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid #e6eefb;
  padding: 8px 14px;
  border-radius: 8px;
  color: #0f172a;
  text-decoration: none
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px
}
.card .fw-b{
   font-weight: 700;
   color: var(--primary);
}
.card .fw-b a{
   color: var(--primary);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px
}

.card {
  background: var(--card);
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.img-hero {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}

.img-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

section {
  padding: 80px 0
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px
}

#services {
  background: #f3f3f3;
}

.service {
  background: var(--card);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
}
.service ul li {
  padding: 5px 0;
}
.service p{
  font-size: 16px;
}
.news-article-box {
  padding: 60px 0;
}

.box-articles {
  background: #fff;
  -moz-box-shadow: 0 20px 30px #cec9c9;
  -webkit-box-shadow: 0 20px 30px #cec9c9;
  box-shadow: 0 20px 30px #cec9c9;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.box-article-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  position: relative;
}

.box-article-title h2::after {
  background: #000;
  width: 50px;
  height: 4px;
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
}

.view-all-btn a {
  background: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  padding: 6px 14px 5px;
  color: #fff;
}

.view-all-btn a:hover {
  background: var(--secondary);
  color: #fff;
}

.box-article-block {
  margin-top: 25px;
  overflow: auto;
  height: 310px;
}

.box-article-block ul {
  margin: 0;
  padding: 0;
  position: relative;
}

.box-article-block ul li {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 10px;
  padding-bottom: 13px;
}

.box-article-block ul li h3 {
  line-height: 18px;
  margin: 0;
  font-weight: 400;
}

.box-article-block ul li h3 a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.read-more {
  margin-top: 5px;
}

.read-more a {
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
}

#whyus ul {
  padding-left: 1rem;
}

#whyus li {
  margin-bottom: 10px;
}

.highlight-section {
  border-radius: 10px;
  background: #FFFACD;
  padding: 20px;
  box-shadow: 0 4px 7px rgba(2, 6, 23, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.person {
  text-align: center;
  background: var(--card);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04)
}

.person img {
  width: 130px;
  height: 130px;
  border-radius: 999px;
  object-fit: cover;
  object-position: top;
}

.person a:hover {
  text-decoration: underline;
}

#team {
  background: #f3f3f3;
}
.social-popup{
  display: flex;
  gap: 15px;
}
.profileModal .modal-dialog{
  max-width: 1200px;
}
.profile-thumb img {
  border-radius: 5px;
  box-shadow: 1px 3px 3px rgba(0,0,0,0.1);
  overflow: hidden;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.muted {
  color: var(--muted)
}

.small {
  font-size: 13px;
  color: #64748b
}

.gallery-listing {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.gallery-card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 5px;
  overflow: hidden;
}

.gallery-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.gallery-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contact {
  background: #f3f3f3;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}
.address{ font-size: 15px;}
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--green);
  color: white;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
  z-index: 60
}
.contact-grid .mt-2 a {
  color: #000;
  font-size: 16px;
}
.chat {
  position: fixed;
  right: 18px;
  bottom: 30px;
  background: var(--primary);
  color: white;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.16);
  z-index: 60;
  border: none;
}

.chat img {
  width: 25px;
}
.profile-right ul li {
  padding-bottom: 8px;
}
footer {
  color: #000;
  padding:60px 0 0px 0;
}
footer .small {
  font-size: 15px;
  color: #000;
}
footer .cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start
}

footer a {
  color: #000;
}
footer .copy-right a {
  color: #eaeaea;
  text-decoration: underline;
}
footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}
footer .top-social .svg-icon {
  color: #000;
  fill: #000;
}
footer .top-social .svg-icon:hover{
  color:var(--primary);
  fill: var(--primary);
}
footer ul {
  padding-left: 10px;
}
footer ul li {
  padding: 5px 0;
}
.social-row {
  display: flex;
  gap: 14px;
  align-items: center
}

.copy-right {
  font-size: 14px;
  color: #eaeaea;
  padding: 10px 0;
  background: #18233e;
}
.industry-experience-thumb {
  padding: 10px;
}
.industry-experience-thumb img {
  border: 1px solid #f1f1f1;
  border-radius: 8px;
}
/* testimonial */
.testimonials {
  background:var(--bs-white) url(../images/map.png) no-repeat center center;
  padding: 80px 0;
  background-size:auto 90%;
}
.testi-blog h5 {
  color: #252B2C;
  font-weight: normal;
  line-height: 36px;
}
.testimonial-flex {
  display: flex;
  margin-top: 30px;
  gap: 22px;
  justify-content: center;
  text-align: left;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  background: var(--bs-white);
}
.testimonial-text {
  flex: 1;
  width: 100%;
}
.testi-blog {
  padding: 15px;
}
.testi-thumb {
  width: 92px;
  height: 92px;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--primary);
  margin-top: 45px;
}
.testi-thumb img {
  height: 100%;
  object-fit: cover;
}
.testimonial-text h4 {
  font-size: 21px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonial-text h6 {
  font-weight: 500;
  font-size: 13px;
}
.testimonials-inner .quat-img {
	width: 45px !important;
	position: relative;
	top: -30px;
	display: inline-block;
}
.testi-blog h5 {
	color: #252B2C;
	font-weight: normal;
	line-height: 26px;
	font-size: 16px;
	font-style: italic;
}
.testimonial-carousel .owl-dots {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 27px 0;
}
.testimonial-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  background: var(--bs-white);
}
.testimonial-carousel .owl-dots .owl-dot.active {
  background: var(--primary);
}

/* About */
#about-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--bs-white);
  text-align: center;
}
#about-header .btSubTitle{
  margin: auto;
}
#about-header::before {
  background: #181A1E;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 00;
  left: 0;
  opacity: .6;
  backface-visibility: hidden;
}
.btSubTitle {
  max-width: 1000px;
  line-height: 30px;
  font-size: 21px;
}
.servicesItem {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 0;
}
.sIcon {
  width: 100px;
  padding-right: 20px;
}
.sTxt {
  width: 100%;
  flex: 1;
}
.btSuperTitle {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 15px;
}
.sTxt p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
#expertise h2, #expertise .btSubTitle {
  color: var(--bs-white);
}
.associates-team{
  background: url(../images/background_4.jpg) no-repeat center center;
  background-size: cover;
}

.reason-card { transition: transform .2s, box-shadow .2s; border: 1px solid #eaeaea;}
.reason-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.feature-icon { width:56px; height:56px; display:flex; align-items:center; justify-content:center; border-radius:12px; background:#fff; box-shadow: 0 4px 12px rgba(0,0,0,.05);border: 1px solid #eaeaea; }
.testimonial { background: #fff; border-radius: .5rem; padding: 1rem; box-shadow: 0 6px 18px rgba(0,0,0,.04); }
.cta { background: linear-gradient(90deg, #0d6efd, #0dcaf0); color: #fff; border-radius: .5rem; padding: 1.25rem; }
.small-muted { color: #6c757d; }
.f-title {
  flex: 1;
}
.reason-card p {
  font-size: 15px;
}
.key-benefits ul li {
  padding: 5px 0;
  font-size: 16px;
}
.key-benefits {
  background: #f3f3f3;
}
.key-benefits .list-unstyled {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 18px;
}
.form-control{
  min-height: 50px;
}

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

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

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

  .contact-grid {
    grid-template-columns: 1fr
  }
  .key-benefits .list-unstyled {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width:767px) {
  section {
    padding: 50px 0;
  }

  header {
    backdrop-filter: inherit;
  }

  .brand {
    max-width: 50px;
  }

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

  .person {
    padding: 12px;
  }

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

  .top-inner {
    font-size: 12px;
  }

  .top-inner .top-social {
    display: none;
  }

  .topbar {
    padding: 0;
  }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}
  .gallery-listing {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: .5rem;
  }
  .testi-blog h5{ line-height: 26px;}
  footer{
    padding: 0;
  }
}