:root {
  --navy: #00245a;
  --navy-deep: #001a42;
  --orange: #f26522;
  --orange-dark: #d34806;
  --text: #565969;
  --heading: #00245a;
  --muted: #cadfff;
  --line: #e8e8e8;
  --soft: #f3f3f3;
  --white: #fff;
}

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

body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; transition: 0.5s all ease; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button:focus, .btn:focus { outline: 0; box-shadow: none !important; }

.ptb-100 { padding: 100px 0; }
.pt-100 { padding-top: 100px; }
.pb-70 { padding-bottom: 70px; }
.pb-100 { padding-bottom: 100px; }
.container-wide { padding-left: 30px; padding-right: 30px; }

.section-title { margin-bottom: 50px; }
.section-title .sub-title {
  display: inline-block;
  color: var(--navy);
  position: relative;
  margin-bottom: 10px;
  font-weight: 500;
}
.section-title .sub-title:before,
.section-title .sub-title:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 2px;
}
.section-title .sub-title:before { right: -9px; background: var(--navy); }
.section-title .sub-title:after { right: -16px; background: var(--orange); }
.section-title h2 { margin-bottom: 0; font-size: 40px; }

.common-btn {
  color: #fff;
  background: var(--orange);
  font-size: 18px;
  display: inline-block;
  padding: 14px 25px;
  position: relative;
  z-index: 1;
  border: 0;
  cursor: pointer;
}
.common-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background: var(--navy);
  z-index: -1;
  transition: 0.5s all ease;
  border-radius: 50% 50% 0 0;
}
.common-btn i { margin-right: 4px; position: relative; top: 1px; }
.common-btn:hover { color: #fff; }
.common-btn:hover:before { height: 100%; border-radius: 0; }

.banner-btn {
  color: var(--text);
  background: #fff;
  font-size: 18px;
  display: inline-block;
  padding: 14px 25px;
  position: relative;
  z-index: 1;
  margin-right: 10px;
  margin-bottom: 8px;
}
.banner-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  background: var(--orange);
  z-index: -1;
  transition: 0.5s all ease;
  border-radius: 50% 50% 0 0;
}
.banner-btn i { margin-right: 4px; }
.banner-btn:hover { color: #fff; }
.banner-btn:hover:before { height: 100%; border-radius: 0; }

/* Header top */
.header-top-area {
  background: var(--navy);
  padding: 10px 0;
}
.header-top-area .left p,
.header-top-area .left p a {
  margin: 0;
  color: #fff;
  font-size: 15px;
}
.header-top-area .left p a:hover { color: var(--orange); }
.header-top-area .right { text-align: right; }
.header-top-area .social-info li {
  display: inline-block;
  margin-left: 8px;
}
.header-top-area .social-info li a {
  color: #fff;
  font-size: 18px;
}
.header-top-area .social-info li a:hover { color: var(--orange); }

/* Navbar */
.main-nav {
  background: #fff;
  padding: 0;
  transition: 0.5s all ease;
  box-shadow: 0 2px 18px rgba(0, 36, 90, 0.06);
}
.main-nav.menu-shrink {
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 8px 30px rgba(0, 36, 90, 0.12);
}
.main-nav .navbar { padding: 8px 0; }
.navbar-brand { padding: 0; margin-right: 0; }
.navbar-brand img { height: 52px; width: auto; }
.main-nav .navbar-nav { margin: 0 auto; }
.main-nav .nav-item { padding: 8px 2px; }
.main-nav .nav-item .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  padding: 10px 10px !important;
  font-size: 15px;
}
.main-nav .nav-item .nav-link:hover,
.main-nav .nav-item .nav-link.active { color: var(--orange) !important; }
.main-nav .nav-item .nav-link i { font-size: 12px; margin-left: 3px; }
.main-nav .dropdown-menu {
  border: 0;
  padding: 0;
  border-radius: 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 36, 90, 0.12);
}
.main-nav .dropdown-menu .dropdown-item {
  color: var(--navy);
  padding: 12px 18px;
  border-bottom: 1px dashed rgba(0, 36, 90, 0.28);
  font-weight: 500;
}
.main-nav .dropdown-menu .dropdown-item:hover,
.main-nav .dropdown-menu .dropdown-item.active {
  background: transparent;
  color: var(--orange);
  padding-left: 24px;
}
.side-nav { display: flex; align-items: center; gap: 8px; }
.icon-search {
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 0;
}
.main-nav .dropdown-toggle::after { display: none; }
.icon-search:hover { background: var(--navy); color: #fff; }
.navbar-toggler {
  border: 0;
  color: var(--navy);
  font-size: 28px;
  padding: 4px 8px;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 36, 90, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.search-overlay.open { display: flex; }
.search-overlay form { width: min(640px, 100%); position: relative; }
.search-overlay input {
  width: 100%;
  height: 64px;
  border: 0;
  padding: 0 70px 0 24px;
  font-size: 18px;
}
.search-overlay button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  height: 64px;
  width: 64px;
  background: var(--orange);
  color: #fff;
  border: 0;
  font-size: 22px;
}
.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
}

/* Hero */
.banner-item {
  height: 760px;
  position: relative;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}
.banner-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 36, 90, 0.82) 18%, rgba(0, 36, 90, 0.35) 55%, rgba(0, 36, 90, 0.08) 80%);
}
.banner-content { position: relative; z-index: 1; padding: 80px 0 140px; }
.banner-content .sub-text {
  display: inline-block;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  position: relative;
  margin-bottom: 10px;
}
.banner-content .sub-text:before,
.banner-content .sub-text:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0;
}
.banner-content .sub-text:before { right: -9px; background: #fff; }
.banner-content .sub-text:after { right: -16px; background: var(--orange); }
.banner-content h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 72px;
  max-width: 860px;
}
.banner-content p {
  color: #fff;
  font-size: 20px;
  max-width: 640px;
  margin-bottom: 30px;
}
.banner-bg-text {
  display: inline-block;
  font-size: 120px;
  color: #fff;
  font-family: "Dancing Script", cursive;
  opacity: 0.12;
  position: absolute;
  top: -40px;
  left: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* Features */
.feature-area { position: relative; z-index: 2; margin-top: -90px; }
.feature-item {
  background: var(--orange);
  padding: 30px 25px;
  text-align: center;
  height: 100%;
}
.feature-item .left i {
  color: #fff;
  font-size: 58px;
  line-height: 58px;
  display: inline-block;
  margin-bottom: 18px;
  transition: 0.6s;
}
.feature-item:hover .left i { transform: rotateY(360deg); }
.feature-item h3 { font-size: 22px; margin-bottom: 12px; }
.feature-item h3 a { color: #fff; }
.feature-item h3 a:hover { color: var(--navy); }
.feature-item p { color: #fff; margin-bottom: 12px; }
.feature-item .more { color: #fff; font-weight: 500; }
.feature-item.two {
  background: #fff;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.34);
}
.feature-item.two .left i { color: var(--orange); }
.feature-item.two h3 a { color: var(--navy); }
.feature-item.two h3 a:hover { color: var(--orange); }
.feature-item.two p { color: var(--text); }
.feature-item.two .more { color: var(--navy); }
.feature-item.three { background: var(--navy); }
.feature-item.three h3 a:hover { color: var(--orange); }

/* About */
.about-area { padding: 100px 0; }
.about-content { padding-right: 20px; }
.about-content .about-span {
  display: block;
  font-weight: 500;
  color: #474a59;
  font-size: 18px;
  margin-bottom: 8px;
}
.about-img { position: relative; }
.about-img .main-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-img .small-photo {
  position: absolute;
  top: 210px;
  left: -70px;
  width: 150px;
  height: 190px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 36, 90, 0.2);
}
.experience-badge {
  position: absolute;
  left: -30px;
  top: 40px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  border: 6px solid #fff;
}
.experience-badge strong { font-size: 28px; line-height: 1; color: #fff; }
.experience-badge span { font-size: 12px; color: #fff; padding: 0 8px; }
.about-call {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 28px;
}
.about-call i { font-size: 48px; color: var(--orange); }
.about-call h4 { font-weight: 400; font-size: 20px; margin-bottom: 2px; }
.about-call a { color: var(--orange); font-weight: 700; font-size: 22px; }
.about-call a:hover { color: var(--navy); }

/* Counter */
.counter-area { padding-bottom: 40px; }
.counter-item { margin-bottom: 30px; position: relative; }
.counter-item h3 {
  margin: 0;
  color: var(--orange);
  font-size: 52px;
  position: absolute;
  top: 0;
  left: 0;
}
.counter-item p {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  padding-left: 130px;
  line-height: 1.4;
}

/* Services navy */
.service-area { background: var(--navy); }
.service-area .section-title .sub-title { color: #fff; }
.service-area .section-title .sub-title:before { background: #fff; }
.service-area .section-title h2 { color: #fff; }
.service-area .common-btn:before { background: #fff; }
.service-area .common-btn:hover { color: var(--navy); }
.service-item {
  margin-bottom: 55px;
  background: #fff;
  padding: 30px 30px 18px;
  position: relative;
  transition: 0.5s all ease;
  background-size: cover;
  background-position: center;
  z-index: 1;
  min-height: 230px;
}
.service-item:before {
  position: absolute;
  content: "";
  inset: 0;
  background: #fff;
  opacity: 1;
  transition: 0.5s all ease;
  z-index: -1;
}
.service-item:hover { transform: translateY(-10px); }
.service-item:hover:before { background: #000; opacity: 0.45; }
.service-item:hover span,
.service-item:hover h3 a,
.service-item:hover p,
.service-item:hover .service-btn { color: #fff; }
.service-item span {
  display: block;
  color: var(--orange);
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 14px;
}
.service-item h3 { margin-bottom: 10px; font-size: 24px; }
.service-item h3 a { color: var(--navy); display: block; }
.service-item h3 a:hover { color: var(--orange); }
.service-item p { margin-bottom: 8px; }
.service-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  color: var(--orange);
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.34);
  position: absolute;
  right: 30px;
  bottom: -25px;
  transition: 0.5s;
}
.service-item:hover .service-icon { transform: rotateY(360deg); }
.service-btn { color: var(--orange); font-size: 28px; display: inline-block; }
.service-area.light { background: #fff; }
.service-area.light .section-title .sub-title { color: var(--navy); }
.service-area.light .section-title .sub-title:before { background: var(--navy); }
.service-area.light .section-title h2 { color: var(--navy); }
.service-item.card-shadow { box-shadow: 0 0 20px rgba(221, 221, 221, 0.27); }

/* Skills */
.skills-area { overflow: hidden; }
.skills-img {
  min-height: 520px;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.skills-content {
  padding: 70px;
  background: var(--orange);
  height: 100%;
}
.skills-content .section-title .sub-title { color: #fff; }
.skills-content .section-title .sub-title:before { background: #fff; }
.skills-content .section-title .sub-title:after { background: var(--navy); }
.skills-content .section-title h2 { color: #fff; }
.skills-content li {
  position: relative;
  padding-left: 75px;
  margin-bottom: 25px;
}
.skills-content li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 48px;
}
.skills-content li h3 { color: #fff; font-size: 22px; margin-bottom: 5px; }
.skills-content li p { color: #fff; margin: 0; }

/* Progress circles */
.progress-area { padding: 90px 0; }
.circle-wrap { text-align: center; margin-bottom: 30px; }
.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  position: relative;
}
.circle::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 50%;
}
.circle span {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}
.circle-wrap h3 { font-size: 22px; margin-bottom: 6px; }
.circle-wrap p { margin: 0; max-width: 280px; margin-inline: auto; }

/* Projects */
.projects-area { background: var(--soft); }
.projects-area .section-title,
.team-area .section-title,
.testimonials-area .section-title { text-align: center; }
.projects-area .section-title p,
.team-area .section-title p,
.testimonials-area .section-title p {
  max-width: 560px;
  margin: 8px auto 0;
}
.projects-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.projects-item img { width: 100%; height: 280px; object-fit: cover; }
.projects-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 36, 90, 0.72) 20%, rgba(255, 255, 255, 0) 59%);
  opacity: 0;
  transition: 0.5s;
}
.projects-item:hover { transform: translateY(-10px); }
.projects-item:hover:before { opacity: 1; }
.projects-item .bottom {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: 0.5s;
}
.projects-item:hover .bottom { opacity: 1; transform: none; }
.projects-item .bottom span { color: #fff; display: block; margin-bottom: 4px; }
.projects-item .bottom h3 { font-size: 22px; margin: 0; }
.projects-item .bottom h3 a { color: #fff; }
.projects-item .bottom h3 a:hover { color: var(--orange); }

/* Team */
.team-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.27);
  background: #fff;
  padding: 20px 20px 28px;
  transition: 0.5s;
}
.team-item:hover { transform: translateY(-10px); }
.team-photo {
  width: 220px;
  height: 220px;
  margin: 10px auto 18px;
  border-radius: 50%;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-item span { color: var(--orange); display: block; margin-bottom: 4px; }
.team-item h3 { font-size: 22px; margin: 0; }
.team-social { margin-top: 12px; }
.team-social a {
  display: inline-block;
  color: var(--navy);
  margin: 0 6px;
  font-size: 18px;
}
.team-social a:hover { color: var(--orange); }

/* Quote / video */
.quote-wrap {
  position: relative;
  background-size: cover;
  background-position: center;
}
.quote-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 36, 90, 0.55);
}
.quote-inner { position: relative; z-index: 1; padding: 90px 0 0; }
.quote-inner .section-title .sub-title,
.quote-inner .section-title h2 { color: #fff; }
.quote-inner .section-title .sub-title:before { background: #fff; }
.quote-card {
  background: #fff;
  padding: 47px 40px 40px;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.27);
  margin-bottom: -80px;
  position: relative;
  z-index: 3;
}
.quote-card .quote-title { color: var(--orange); display: block; margin-bottom: 5px; }
.quote-card h3 { font-size: 32px; margin-bottom: 28px; }
.form-group { margin-bottom: 22px; position: relative; }
.form-group i.input-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--orange);
  font-size: 18px;
}
.form-group .form-control,
.form-group textarea,
.form-group select {
  height: 50px;
  border: 1px solid #dfdfdf;
  border-radius: 0;
  padding-left: 44px;
  font-size: 16px;
  color: var(--text);
}
.form-group textarea {
  height: 140px;
  padding-top: 14px;
  resize: vertical;
}
.form-group .form-control:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: none;
  border-color: var(--navy);
}
.form-check { margin: 10px 0 22px; }
.form-check-label a { color: var(--orange); }
.field-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.form-group.error .form-control,
.form-group.error textarea,
.form-group.error select,
.form-control.is-invalid { border-color: #c0392b !important; }
.form-group.error .field-error { display: block; }
.form-check.error .field-error { display: block; }

/* Testimonials */
.testimonials-area { padding-top: 140px; }
.testimonials-item {
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.27);
  padding: 40px;
  margin-bottom: 30px;
  background: #fff;
  height: 100%;
  transition: 0.5s;
}
.testimonials-item:hover { transform: translateY(-10px); }
.testimonials-item h3 { font-size: 22px; margin-bottom: 12px; }
.testimonials-item h3 span { color: var(--orange); }
.testimonials-item p { margin-bottom: 24px; }
.testi-foot { display: flex; justify-content: space-between; align-items: flex-end; }
.quote-mark {
  background: var(--orange);
  color: #fff;
  height: 50px;
  padding: 0 28px 0 22px;
  display: inline-flex;
  align-items: center;
  font-size: 28px;
  position: relative;
  margin-left: -40px;
}
.quote-mark:after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  border-left: 20px solid transparent;
  border-bottom: 14px solid var(--orange-dark);
}
.testi-user { display: flex; align-items: center; gap: 12px; text-align: right; }
.testi-user img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-user h4 { font-size: 18px; margin: 0 0 2px; }
.testi-user span { font-size: 14px; }

/* Newsletter strip */
.newsletter-area {
  background: var(--orange);
  padding: 40px 0;
  position: relative;
  z-index: 2;
  margin-bottom: -30px;
}
.newsletter-area .sub { color: #fff; margin-bottom: 4px; font-weight: 500; }
.newsletter-area h2 { color: #fff; font-size: 32px; margin: 0; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form .form-control {
  height: 54px;
  border: 0;
  border-radius: 0;
  padding: 0 18px;
}
.newsletter-form .form-control:focus { box-shadow: none; }
.newsletter-form .common-btn {
  height: 54px;
  background: var(--navy);
  white-space: nowrap;
}
.newsletter-form .common-btn:before { background: #001433; }

/* Footer */
footer {
  background: var(--navy);
  background-image: linear-gradient(135deg, rgba(0, 36, 90, 0.92), rgba(0, 26, 66, 0.96)),
    url("../img/banner-inner.jpg");
  background-size: cover;
  background-position: center;
  padding: 110px 0 0;
}
.footer-item h3 { color: #fff; font-size: 22px; margin-bottom: 25px; }
.footer-logo img { height: 52px; margin-bottom: 22px; }
.footer-logo p { color: var(--muted); margin-bottom: 22px; }
.footer-logo span { display: block; color: #fff; font-weight: 500; margin-bottom: 8px; }
.footer-logo .social a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
}
.footer-logo .social a:hover { color: var(--orange); }
.footer-links li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.footer-links li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  left: 0;
  top: 9px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: #fff; letter-spacing: 0.4px; }
.footer-company li { color: var(--muted); margin-bottom: 12px; }
.footer-company span { color: #fff; font-weight: 500; }
.copyright-area {
  margin-top: 50px;
  padding: 24px 0;
  border-top: 1px solid #1b437f;
}
.copyright-area p { color: var(--muted); margin: 0; }
.copyright-area a { color: #fff; border-bottom: 1px solid #fff; }
.copyright-area a:hover { color: var(--orange); border-color: var(--orange); }
.legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.legal-links a { color: var(--muted); font-size: 14px; }
.legal-links a:hover { color: #fff; }

/* Page title */
.page-title-area {
  height: 420px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.page-title-area:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 36, 90, 0.71) 20%, rgba(0, 36, 90, 0.05) 59%);
}
.title-content {
  position: relative;
  z-index: 1;
  padding-left: 20px;
  border-left: 2px solid var(--orange);
}
.title-content h2 { font-size: 50px; margin-bottom: 10px; color: #fff; }
.title-content ul li { display: inline-block; margin-right: 10px; color: #fff; }
.title-content ul li i { margin-right: 4px; }
.title-content a { color: #fff; }
.title-content a:hover { color: var(--orange); }

/* Pagination */
.pagination-area { text-align: center; margin-top: 20px; }
.pagination-area a,
.pagination-area span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 0 12px rgba(221, 221, 221, 0.5);
  font-weight: 500;
}
.pagination-area a.active,
.pagination-area a:hover {
  background: var(--orange);
  color: #fff;
}

/* Pricing */
.pricing-item {
  background: #fff;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.27);
  text-align: center;
  padding: 40px 20px 35px;
  margin-bottom: 30px;
  transition: 0.5s;
}
.pricing-item:hover { transform: translateY(-10px); }
.pricing-item h3 { font-size: 26px; margin-bottom: 22px; }
.pricing-item h3 i { color: var(--navy); margin-right: 6px; }
.price-box {
  background: #ffe5d6;
  padding: 18px 10px;
  margin: 0 -20px 28px;
}
.price-box h2 { color: var(--navy); font-size: 42px; margin: 0; }
.price-box h2 span { font-size: 18px; font-weight: 500; }
.pricing-item.featured .price-box { background: var(--orange); }
.pricing-item.featured .price-box h2,
.pricing-item.featured .price-box h2 span { color: #fff; }
.pricing-item ul { text-align: left; max-width: 260px; margin: 0 auto 28px; }
.pricing-item ul li {
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  padding-left: 8px;
}
.pricing-item ul li i.bx-right-arrow-alt { color: var(--orange); }
.pricing-item ul li i.bx-check-circle { color: var(--orange); float: right; }

/* Contact cards */
.contact-info-card {
  background: #fff;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.27);
  margin-bottom: 30px;
  overflow: hidden;
}
.contact-info-card img { width: 100%; height: 180px; object-fit: cover; }
.contact-info-card .text { padding: 20px; }
.contact-info-card h3 { font-size: 20px; margin-bottom: 6px; }
.contact-info-card h3 i { color: var(--orange); margin-right: 6px; }

.contact-form-wrap {
  background: #fff;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.27);
  padding: 50px 40px;
  margin-top: 20px;
}
.contact-side img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.contact-side { position: relative; }
.follow-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 36, 90, 0.82);
  color: #fff;
  padding: 16px 20px;
}
.follow-box span { display: block; font-size: 13px; }
.follow-box a { color: #fff; margin-right: 10px; }
.follow-box a:hover { color: var(--orange); }

/* Legal / long copy */
.legal-content h3 { font-size: 24px; margin: 32px 0 12px; }
.legal-content h4 { font-size: 20px; margin: 22px 0 10px; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 22px; }
.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
}
.legal-meta { color: #7a7f90; margin-bottom: 24px; }

/* Subscribe pages */
.subscribe-hero {
  background: #fff;
  box-shadow: 0 0 24px rgba(221, 221, 221, 0.3);
  padding: 50px 40px;
}
.subscribe-hero h2 { margin-bottom: 16px; }

/* Success modal */
.form-success {
  position: fixed;
  inset: 0;
  background: rgba(0, 36, 90, 0.72);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.form-success.show { display: flex; }
.form-success .box {
  background: #fff;
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 40px 30px;
  position: relative;
}
.form-success i {
  font-size: 54px;
  color: var(--orange);
  margin-bottom: 12px;
}
.form-success h3 { margin-bottom: 10px; }
.success-close {
  margin-top: 18px;
}

.go-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 1200;
}
.go-top.show { display: flex; }
.go-top:hover { background: var(--navy); color: #fff; }

.about-mosaic img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 18px;
}
.about-mosaic img.tall { height: 438px; }

.choose-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.choose-list i {
  color: var(--orange);
  font-size: 28px;
  flex: 0 0 auto;
}

.content-card {
  background: #fff;
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.27);
  padding: 30px;
  height: 100%;
  margin-bottom: 30px;
}
.content-card h3 { font-size: 22px; margin-bottom: 12px; }

@media (min-width: 992px) {
  .main-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
  .banner-content h1 { font-size: 56px; }
  .about-img .small-photo { left: 16px; }
  .experience-badge { left: 16px; }
  .main-nav .nav-item .nav-link { padding: 10px 9px !important; font-size: 15px; }
}
@media (max-width: 991px) {
  .banner-item { height: auto; min-height: 560px; }
  .banner-content h1 { font-size: 42px; }
  .banner-bg-text { font-size: 72px; }
  .feature-area { margin-top: 30px; }
  .feature-item { margin-bottom: 20px; }
  .skills-content { padding: 40px 24px; }
  .skills-img { min-height: 320px; }
  .quote-card { margin-bottom: 0; }
  .testimonials-area { padding-top: 90px; }
  .header-top-area .right { text-align: left; margin-top: 6px; }
  .page-title-area { height: 300px; }
  .title-content h2 { font-size: 36px; }
  .section-title h2 { font-size: 32px; }
  .navbar-collapse {
    background: #fff;
    padding: 12px 0 20px;
  }
  .side-nav { margin-left: 12px; }
}
@media (max-width: 767px) {
  .ptb-100, .about-area, .progress-area { padding: 70px 0; }
  .banner-content { padding: 70px 0 80px; }
  .banner-content h1 { font-size: 34px; }
  .newsletter-form { flex-direction: column; }
  .about-img .main-photo { height: 360px; }
  .about-img .small-photo { display: none; }
  .counter-item h3 { position: static; }
  .counter-item p { padding-left: 0; margin-top: 6px; }
  .quote-mark { margin-left: 0; }
  .contact-form-wrap { padding: 30px 18px; }
  .legal-links { margin-top: 12px; }
}
