@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ===================== GLOBAL STYLES ===================== */

/* FIX 7: Global box-sizing prevents form inputs from overflowing their containers */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0b1e42;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* FIX 5: Merged both :root blocks into one to resolve --navy, --orange, --slate conflicts */
:root {
  --blue: #1f8fe0;
  --orange: #f37021;
  --orange-dark: #ea580c;
  --navy: #0b1f3a;
  --slate: #6b7a8c;
  --muted: #64748b;
  --bg: #ffffff;
}

/* ===================== HEADER STYLES ===================== */
.top-bar {
  padding: 10px 0 1px;
}

.img-fluid{
    width:100%;
}

.header-icons {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #0284c7;
  border-radius: 50%;
  line-height: 1;
}

.icon-styling {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-item {
  line-height: 1;
}

.site-header {
  position: relative;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.logo-card {
  position: absolute;
  left: 88px;
  top: 4px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 160px;
  padding: 10px 1px;
  background: #ffffff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.16);
}

.logo-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.header-top {
  min-height: 66px;
  background: #ffffff;
}

.text-e {
  font-size: 13px;
  padding: 5px 5px;
}
.text-e a{
  color:#000;
  text-decoration:none;
}

.text-i {
  font-size: 15px;
  font-weight: 600;
}

/* ===================== NAVIGATION STYLES ===================== */
.menu-st {
  background-color: #151e27;
}

.menu-container {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 56px 0 250px;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  min-height: 43px;
 text-transform: uppercase;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 1;
}

.nav-menu li a:hover {
  color: #27bdeb;
}

.quote-item {
  margin-left: 0;
}

/* FIX 3: Scoped to .quote-item to prevent the why-section .cta-quote-btn from
   overriding border-radius, padding, gap, and font-weight here */
.quote-item .quote-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 10px 20px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background: #25bced;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
}

.quote-item .quote-btn span {
  position: relative;
  z-index: 2;
}

.drop-img {
  position: absolute;
  left: -10px;
  top: 50%;
  width: auto;
  height: 37px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.quote-item .quote-btn:hover {
  color: #fff;
  background: #1db0df;
}

/* ===================== HERO SECTION STYLES ===================== */
.hero-section {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-image: url("../images/background1.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.62) 29%,
    rgba(0, 0, 0, 0.2) 52%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

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

.hero-content {
  max-width: auto;
  padding: 110px 0 86px;
  color: #ffffff;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 4px 18px 4px 18px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: rgba(120,110,105,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  text-decoration: none;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
}

.hero-badge span {
  position: relative;
  z-index: 2;
  font-size: 20px;
}

.hero-drop {
  position: absolute;
  left: -12px;
  top: 50%;
  width: auto;
  height: 40px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content h1 {
  margin: 0;
  font-size: 74px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 16px 0 24px;
  font-size: 17px;
  font-weight: 700;
}

.hero-subtitle::before {
  content: "\2713";
  margin-right: 7px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-quote-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 43px;
  padding: 0 22px 0 45px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  background: #24bced;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  margin-left:50px;
}

.hero-quote-btn img {
  position: absolute;
  left: -12px;
  top: 50%;
  width: auto;
  height: 44px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-quote-btn span {
  position: relative;
  z-index: 1;
}

.hero-quote-btn:hover {
  color: #ffffff;
  background: #1db0df;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}

.hero-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 4px solid #f36f13;
  border-radius: 50%;
  background: #f36f13;
  box-shadow: 0 0 0 3px rgba(243, 111, 19, 0.35);
  font-size: 20px;
  line-height: 1;
}

.hero-call-text {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.hero-call-text span {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
}

/* ===================== ABOUT SECTION STYLES ===================== */
.about-section {
  padding: 78px 0 62px;
  background: #ffffff;
}

.about-image-wrap {
  max-width: 560px;
}

.about-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.about-content {
  max-width: 500px;
  padding-left: 12px;
}

/* FIX 2: Only one .section-badge definition — the duplicate block below the
   gallery section (which set text-align:center and grey span styles)
   has been removed entirely */
.section-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height:auto;
  padding: 7px 18px 7px 18px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #ffff;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: 0;
  color:grey;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  border: 1px solid lightgrey;
}

.section-badge span {
  position: relative;
  z-index: 2;
}

.section-drop {
  position: absolute;
  left: -12px;
  top: 50%;
  width: auto;
  height: 46px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.about-content h2 {
  margin: 0 0 16px;
  color: #0b1e42;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.about-content p {
  margin: 0 0 16px;
  color: #5c6b80;
  font-size: 15.5px;
  line-height: 1.65;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.about-read-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 203px;
  height: 42px;
  padding: 0 20px 0 47px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  color: #ffffff;
  background: #24bced;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.about-read-btn img {
  position: absolute;
  left: -10px;
  top: 50%;
  width: auto;
  height: 45px;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-read-btn span {
  position: relative;
  z-index: 1;
}

.about-read-btn:hover {
  color: #ffffff;
  background: #1db0df;
}

.about-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #071f45;
  text-decoration: none;
}

.about-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 4px solid #f36f13;
  border-radius: 50%;
  color: #ffffff;
  background: #f36f13;
  box-shadow: 0 0 0 3px rgba(243, 111, 19, 0.22);
  font-size: 18px;
  line-height: 1;
}

.about-call-text {
  display: flex;
  flex-direction: column;
  color: #071f45;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.about-call-text span {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
}

/* ===================== SERVICES SECTION STYLES ===================== */
.services-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  color: #ffffff;
  background-image: url("../images/bg2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 72, 165, 0.94) 0%,
    rgba(0, 146, 220, 0.93) 100%
  );
}

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

.services-heading {
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: center;
}

.services-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height:auto;
  padding: 7px 18px 7px 18px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #ffff;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: 0;
  color:grey;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  border: 1px solid lightgrey;
}

.services-drop {
  position: absolute;
  left: -12px;
  top: 50%;
  width: auto;
  height: 46px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.services-heading h2 {
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
}

.services-heading p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 126px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 100px 22px 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  text-align: center;
}

.service-image-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 270px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #ffffff;
}

.service-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.service-card p {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  flex-grow: 1;
}

.service-read-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height:auto;
  padding: 12px 44px 12px 44px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #25bced;
  text-decoration: none;
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
}

.service-read-btn img {
  position: absolute;
  left: -12px;
  top: 50%;
  width: auto;
  height: 51px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.service-read-btn span {
  position: static;
}

.service-read-btn:hover {
  background: #e04e10;
  color: #ffffff;
}

@media (max-width: 767px) {
  .services-section {
    padding: 56px 0 60px;
  }
  .services-heading h2 {
    font-size: 25px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    padding-top: 126px;
  }
}

/* ===================== WHY CHOOSE US SECTION ===================== */
.why {
  padding: 80px 24px;
}

.eyebrow {
   position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height:auto;
  padding: 7px 18px 7px 18px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #ffff;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: 0;
  color:grey;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  border: 1px solid lightgrey;
}

.eyebrow-drop {
  position: absolute;
  left: -12px;
  top: 50%;
  width: auto;
  height: 46px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.eyebrow span {
  font-size: 17px;
  font-weight: 600;
  
  color: var(--slate);
}

.heading {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 50px;
  line-height: 1.25;
}

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

.col {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature .text {
  flex: 1;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.feature p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5c6b80;
}

.feature .icon {
  flex: none;
  width: 54px;
  height: 54px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.feature .icon svg {
  width: 24px;
  height: 24px;
}

.feature-left .text {
  text-align: right;
}

.feature-right .text {
  text-align: left;
}

.circle {
  position: relative;
  width: 380px;
  height: 380px;
}

.ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-15deg);
}

.photo {
  border-radius: 50%;
}

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

.cta {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

/* FIX 3: Renamed from .quote-btn to .cta-quote-btn so it no longer
   collides with the nav bar button styles. Update the HTML class to match. */
.cta-quote-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height:auto;
  padding: 8px 18px 8px 30px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #25bced;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
}
.cta-quote-btn a{
	color:#FFF;
	text-decoration:none;
}

.cta-quote-btn:hover {
  opacity: 0.92;
}

.cta-quote-btn-drop{
  position: absolute;
  left: -12px;
  top: 50%;
  width: auto;
  height: 51px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.cta-quote-btn .drop svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(243, 112, 33, 0.55);
}

.phone-circle svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-text small {
  display: block;
  font-size: 1px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--slate);
}

.contact-text strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .circle {
    margin: 0 auto;
    width: 320px;
    height: 320px;
  }
  .col {
    gap: 40px;
  }
  .feature-left,
  .feature-right {
    flex-direction: row;
  }
  .feature-left .text,
  .feature-right .text {
    text-align: left;
  }
}

/* ===================== LATEST WORK SECTION ===================== */
.latest-work {
  padding: 30px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0b1e42;
  margin-top: 18px;
  margin-bottom: 50px;
  line-height: 1.25;
}

/* FIX 2: The duplicate .section-badge and .section-badge span blocks that used
   to appear here (overriding the about-section badge with grey border & text)
   have been completely removed. */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.large {
  grid-column: span 2;
  height: 190px;
}

.medium {
  grid-column: span 2;
  height: 180px;
}

.small {
  height: 180px;
}

/* ===================== CONTACT SECTION STYLES ===================== */
.contact-section {
  padding: 80px 20px;
  /* FIX 8: Removed placeholder url("YOUR-BACKGROUND-IMAGE.jpg") */
  background-color: #f3f8fb;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-content {
  max-width: 520px;
}

.brand-badge {
   position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height:auto;
  padding: 4px 18px 4px 18px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #ffff;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: 0;
  color: grey;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  border: 1px solid lightgrey;
}
.brand-badge-drop{
   position: absolute;
  left: -11px;
  top: 50%;
  width: auto;
  height: 40px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;

}
.contact-heading {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 20px;
  margin-top: 20px;
}

.lead-text {
  font-size: 18px;
  color: #0ea5e9;
  font-weight: 600;
  margin-bottom: 12px;
}

.desc-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 32px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f2fe;
  color: #0ea5e9;
  border-radius: 50%;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.detail-text p {
  font-size: 16px;
  color: #1f2937;
  line-height: 1.5;
  margin: 0; /* reset browser default paragraph margin */
}
.detail-text p a{
	color: #1f2937;
	text-decoration:none;
}

.contact-form {
  background-color: #fff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.12);
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

/* FIX 7: width:100% now works correctly because box-sizing:border-box
   is applied globally — padding no longer adds to the total width */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  color: #1f2937;
  background-color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0ea5e9;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #0ea5e9;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #0284c7;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .details-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }
  .contact-heading {
    font-size: 28px;
  }
}

/* ===================== FOOTER STYLES ===================== */
.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  --footer-bg: #0b0f19;
  --footer-text: #ffffff;
  --footer-muted: #9ca3af;
  --footer-accent: #f97316;
  --footer-divider: rgba(255, 255, 255, 0.1);
  --footer-legal: #6b7280;

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--footer-bg);
  color: var(--footer-text);
  line-height: 1.5;
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 0;
}

.footer-col {
  padding: 0 40px;
}

.footer-col:first-child {
  padding-left: 0;
}

.footer-col:last-child {
  padding-right: 0;
}

.footer-col:not(:last-child) {
  border-right: 1px solid var(--footer-divider);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--footer-text);
}

.logo-icon {
  width: 64px;
  height: 64px;
  color: var(--footer-text);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--footer-muted);
  margin-top: 4px;
}

.footer-desc {
  margin-top: 20px;
  font-size: 14px;
  color: var(--footer-muted);
  line-height: 1.7;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--footer-text);
  margin: 0 0 20px;
}

.follow-heading {
  margin-top: 30px;
}

.footer-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--footer-text);
}

.bullet {
  margin-right: 8px;
  color: var(--footer-muted);
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--footer-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-text {
  font-size: 14px;
  color: var(--footer-text);
  line-height: 1.5;
}
.contact-text a{
  font-size: 14px;
  color: var(--footer-text);
  line-height: 1.5;
  text-decoration:none;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--footer-accent);
  color: var(--footer-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.85;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.google-icon {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid var(--footer-divider);
  padding: 15px 0 15px;
  text-align: center;
}

.bottom-logo {
  margin-bottom: 20px;
}

.mini-logo {
  width: 38px;
  height: 38px;
  color: var(--footer-text);
  display: block;
  margin: 0 auto;
}

.copyright {
  font-size: 14px;
  color: var(--footer-muted);
  margin: 0 0 12px;
}

.accent-link {
  color: var(--footer-accent);
  text-decoration: none;
}

.accent-link:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 12px;
  color: var(--footer-legal);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-top {
    padding: 50px 0 30px;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col {
    padding: 0 30px;
  }
  .footer-col:first-child,
  .footer-col:nth-child(3) {
    padding-left: 0;
  }
  .footer-col:nth-child(2),
  .footer-col:last-child {
    padding-right: 0;
  }
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-col,
  .footer-col:first-child,
  .footer-col:nth-child(3),
  .footer-col:last-child {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-col:not(:last-child) {
    border-right: none;
  }
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    margin-top: 0;
  }
  .footer-col:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* ===================== ABOUT PAGE STYLES ===================== */


.tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 12px;
}

.page-banner {
  background: linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)),
    url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?w=1600')
    center / cover;
  color: #fff;
  padding: 100px 20px;
}

.page-banner .breadcrumb {
  color: #94a3b8;
  font-size: 14px;
}

.page-banner h1 {
  font-size: 70px;
  font-weight: 700;
  margin: 0;
}

.about-intro {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.about-intro p {
  color: #475569;
}

.stats-bar {
  background: #0b0f19;
}

.stats-bar .stat h3 {
  color: var(--orange);
  font-size: 42px;
  font-weight: 800;
}

.stats-bar .stat p {
  color: #cbd5e1;
  font-size: 15px;
}

.why-choose {
  background: #f8fafc;
}

.why-choose,
.team {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

.team-card img {
  height: 280px;
  object-fit: cover;
}

.team-card span {
  color: var(--muted);
}

.cta-bar {
  background: #0b0f19;
}

.cta-bar h3 {
  color: #fff;
  font-size: 32px;
}

.cta-bar p {
  color: #94a3b8;
}

.btn-primary {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 6px;
}

.btn-primary:hover {
  background: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
}

@media (max-width: 1024px) {
  .page-banner h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .cta-bar h3 {
    font-size: 26px;
  }
}

@media (max-width: 540px) {
  .page-banner {
    padding: 70px 20px !important;
  }
  .page-banner h1 {
    font-size: 34px;
  }
}

/* ===================== SERVICE PAGE STYLES (.page-service) ===================== */
.page-hero { position: relative; height: 380px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,30,66,0.95) 0%, rgba(11,30,66,0.7) 60%, rgba(11,30,66,0.3) 100%); z-index: 1; }
.page-hero .hero-content { position: relative; z-index: 2; padding-top: 90px; color: #fff; }
.breadcrumb-text { font-size: 14px; color: #fff; }
.breadcrumb-text a { color: #fff; text-decoration: none; }
.breadcrumb-text span { color: #ff7a1a; }
.page-hero .hero-content h1 { font-size: 52px; font-weight: 700; margin-top: 10px; }
.hero-divider { width: 70px; height: 4px; background: #ff7a1a; margin: 15px 0 20px; border-radius: 2px; }
.hero-sub { font-size: 17px; opacity: 0.9; }
/* .page-service .hero-curve { position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: #fff; border-radius: 50% 50% 0 0 / 100% 100% 0 0; z-index: 2; } */

.section-tag {
  color: #1a73e8;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* Services Page Badges and Titles */
.services-page-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 66, 0.1);
  color: #5c6b80;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 10px rgba(11, 30, 66, 0.03);
  margin-bottom: 10px;
}
.badge-drop-icon {
  width: 12px;
  height: auto;
}
.services-page-title {
  color: #0b1e42;
  font-weight: 800;
  font-size: 42px;
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.2;
}
.services-page-sub {
  color: #5c6b80;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Services Grid Section and Modern Cards */
.services-grid-section {
  background-color: #f7faff;
  padding: 80px 0 100px;
  position: relative;
}
.service-card-modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 30, 66, 0.04);
  border: 1px solid rgba(11, 30, 66, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 30, 66, 0.08);
  border-color: rgba(37, 188, 237, 0.25);
}
.service-card-modern .card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  width: 100%;
}
.service-card-modern .image-category-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(11, 30, 66, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.service-card-modern:hover .image-category-tag {
  background: #ff7a1a;
  border-color: rgba(255, 255, 255, 0.2);
}
.service-card-modern .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card-modern:hover .card-image-wrap img {
  transform: scale(1.08);
}
.service-card-modern .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 30, 66, 0) 60%, rgba(11, 30, 66, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card-modern:hover .image-overlay {
  opacity: 1;
}
.service-card-modern .service-icon-badge {
  position: absolute;
  top: -26px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #ff7a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.3);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card-modern:hover .service-icon-badge {
  background: #25bced;
  box-shadow: 0 6px 16px rgba(37, 188, 237, 0.35);
  transform: scale(1.1) rotate(15deg);
}
.service-card-modern .card-content-wrap {
  padding: 35px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.service-card-modern .service-title {
  font-size: 22px;
  font-weight: 700;
  color: #0b1e42;
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.3s ease;
  position: relative;
  width: fit-content;
}
.service-card-modern .service-title::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #25bced;
  transition: width 0.3s ease;
}
.service-card-modern:hover .service-title::after {
  width: 100%;
}
.service-card-modern:hover .service-title {
  color: #25bced;
}
.service-card-modern .service-description {
  font-size: 14.5px;
  color: #5c6b80;
  line-height: 1.65;
  margin-bottom: 25px;
  flex-grow: 1;
}
.service-card-modern .card-footer-action {
  margin-top: auto;
  border-top: 1px solid rgba(11, 30, 66, 0.05);
  padding-top: 20px;
}
.service-card-modern .service-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff7a1a;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-card-modern .service-action-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.service-card-modern:hover .service-action-btn {
  color: #25bced;
}
.service-card-modern:hover .service-action-btn i {
  transform: translateX(6px);
}

.process-row { padding: 30px 0; }
.process-line { position: absolute; top: 50px; left: 12px; right: 12px; height: 2px; border-top: 2px dashed #cfd9ea; z-index: 0; }
.process-step { position: relative; z-index: 1; }
.step-icon { width: 80px; height: 80px; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; font-size: 26px; color: #0b1e42; margin: 0 auto 18px; position: relative; }
.step-num { position: absolute; top: -5px; right: -5px; background: #1a73e8; color: #fff; width: 26px; height: 26px; border-radius: 50%; font-size: 12px; display: flex; align-items: center; justify-content: center; border: 3px solid #fff; }
.process-step h6 { font-weight: 700; color: #0b1e42; }
.process-step p { font-size: 13px; color: #666; }

.faq-item { border: 1px solid #e5e9f2; margin-bottom: 12px; border-radius: 6px; overflow: hidden; }
.faq-item .accordion-button { font-weight: 600; color: #0b1e42; background: #fff; box-shadow: none; font-size: 15px; }
.faq-item .accordion-button:not(.collapsed) { color: #1a73e8; background: #f7faff; }

.help-card { background: #0b1e42; color: #fff; border-radius: 10px; padding: 35px; position: relative; overflow: hidden; height: 100%; display: flex; align-items: center; }
.help-tag { color: #ff7a1a; font-weight: 600; font-size: 13px; letter-spacing: 1px; }
.help-card h3 { font-weight: 700; margin: 10px 0; }
.help-sub { opacity: 0.85; font-size: 14px; }
.call-icon { width: 50px; height: 50px; border-radius: 8px; background: #ff7a1a; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.help-img { position: absolute; right: 0; bottom: 0; height: 90%; object-fit: contain; }
.help-text { max-width: 65%; position: relative; z-index: 2; }

.cta-bar { background: #ff7a1a; border-radius: 10px; padding: 25px 35px; color: #fff; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.cta-icon { width: 55px; height: 55px; border-radius: 50%; background: #fff; color: #ff7a1a; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.cta-bar h4 { font-weight: 700; }
.cta-btn { font-weight: 700; color: #0b1e42 !important; padding: 12px 28px; border-radius: 4px; }

@media(max-width: 768px){
 .hero-content h1 { font-size: 70px; }
  .process-line { display: none; }
  .help-img { display: none; }
  .help-text { max-width: 100%; }
}

/* ===================== CONTACT PAGE STYLES (.page-contact) ===================== */
.page-contact body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  background: #ffffff;
}

.page-contact .contact-hero {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.7) 100%),
              url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #ffffff;
  padding: 90px 0 100px;
}

.page-contact .breadcrumb-nav {
  font-size: 14px;
  margin-bottom: 20px;
}

.page-contact .breadcrumb-nav a {
  color: #ffffff;
  text-decoration: none;
}

.page-contact .breadcrumb-nav a:hover {
  text-decoration: underline;
}

.page-contact .breadcrumb-nav span {
  margin: 0 6px;
  opacity: 0.7;
}

.page-contact .contact-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-contact .contact-hero p {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 0;
}

.page-contact .contact-section {
  background: #f4f6f8;
  padding: 60px 0;
}

.page-contact .contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.page-contact .contact-card h2 {
  color: #0b1f3a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-contact .title-line {
  width: 55px;
  height: 4px;
  background: #ff6b00;
  margin-bottom: 20px;
}

.page-contact .intro {
  color: #666666;
  font-size: 15px;
  margin-bottom: 25px;
}

.page-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact .contact-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 45px;
}

.page-contact .icon-circle {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: #0b1f3a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.page-contact .contact-list .info h5 {
  color: #0b1f3a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.page-contact .contact-list .info p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}
.page-contact .contact-list .info p a{
	color:#000;
	text-decoration:none;
}

.page-contact .gas-safe-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

.page-contact .badge-text {
  display: flex;
  flex-direction: column;
}

.page-contact .badge-label {
  font-size: 12px;
  font-weight: 700;
  color: #0b1f3a;
  letter-spacing: 0.5px;
}

.page-contact .badge-number {
  font-size: 22px;
  font-weight: 700;
  color: #ff6b00;
}

.page-contact .badge-right {
  margin-left: auto;
  text-align: right;
}

.page-contact .badge-right span:first-child {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0b1f3a;
}

.page-contact .badge-right span:last-child {
  display: block;
  font-size: 11px;
  color: #666666;
  text-transform: uppercase;
}

.page-contact .form-card label {
  font-size: 14px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 6px;
  display: block;
}

.page-contact .required {
  color: #ff6b00;
}

.page-contact .input-icon {
  position: relative;
}

.page-contact .input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999999;
  pointer-events: none;
}

.page-contact .input-icon input,
.page-contact .input-icon select,
.page-contact .form-card textarea {
  padding-left: 40px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  font-size: 14px;
  height: 45px;
}

.page-contact .form-card textarea {
  padding-left: 15px;
  height: auto;
  resize: vertical;
  height:150px;
}

.page-contact .input-icon select {
  appearance: auto;
  padding-right: 30px;
}

.page-contact .btn-send {
  width: 100%;
  background: #ff6b00;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-contact .btn-send:hover {
  background: #e66000;
}

.page-contact .privacy-note {
  text-align: center;
  font-size: 13px;
  color: #777777;
  margin-top: 15px;
  margin-bottom: 0;
}

.page-contact .privacy-note i {
  margin-right: 5px;
}

.page-contact .map-section {
  width: 100%;
  height: 420px;
}

.page-contact .map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-contact .areas-section {
  background: #f4f6f8;
  padding: 60px 0;
}

.page-contact .areas-section h2 {
  color: #0b1f3a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-contact .areas-section p {
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.page-contact .area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page-contact .area-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ff6b00;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.page-contact .area-item span {
  font-size: 14px;
  font-weight: 600;
  color: #0b1f3a;
}

.page-contact .emergency-cta {
  background: #ff6b00;
  color: #ffffff;
  padding: 40px 0;
}

.page-contact .emergency-cta .phone-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  background: #ffffff;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
}

.page-contact .emergency-cta h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.page-contact .emergency-cta p {
  margin-bottom: 0;
  font-size: 16px;
}

.page-contact .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #ff6b00;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}

.page-contact .btn-call:hover {
  background: #f1f1f1;
  color: #ff6b00;
}

@media (max-width: 991px) {
  .page-contact .contact-hero {
    padding: 60px 0 70px;
  }

  .page-contact .contact-hero h1 {
    font-size: 38px;
  }

  .page-contact .contact-card {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .page-contact .contact-hero h1 {
    font-size: 32px;
  }

  .page-contact .emergency-cta h3 {
    font-size: 22px;
  }
}

/* ===================== BOOK APPOINTMENT PAGE STYLES (.page-book) ===================== */
.page-book body { font-family: 'Segoe UI', Arial, sans-serif; color: #1f2a44; }
.page-book h1, .page-book h2, .page-book h3, .page-book h4, .page-book h5 { color: #0b1e3f; font-weight: 700; }
.page-book .muted { color: #6b7280; }
.page-book .req { color: #ff7a00; }

.page-book .appt-hero {
  background-image:url(../images/background1.png);
  background: linear-gradient(90deg, rgba(89, 101, 123, 0.95) 0%, rgba(11, 30, 66, 0.7) 60%, rgba(11, 30, 66, 0.3) 100%);
  color: #fff;
  padding: 70px 0;
  position:relative;
  overflow: hidden;
}
.page-book .appt-hero h1 { color: #fff; font-size: 44px; margin: 10px 0 12px; }
.page-book .breadcrumb-text a { color: #cfd8e8; text-decoration: none; }
.page-book .breadcrumb-text { color: #cfd8e8; font-size: 14px; }
.page-book .hero-sub { color: #cfd8e8; margin-bottom: 25px; }
.page-book .hero-features { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 25px; }
.page-book .feat { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.page-book .feat .ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  color: #4ea1ff;
}
.page-book .hero-call { display: inline-flex; align-items: center; gap: 14px; }
.page-book .call-ic {
  width: 48px; height: 48px; border-radius: 50%; background: #ff7a00;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.page-book .hero-call small { display: block; color: #cfd8e8; font-size: 12px; }
.page-book .hero-call strong { font-size: 20px; }
.page-book .hero-right img { width: 100%; border-radius: 8px; }

.page-book .how-works { background: #f7f9fc; }
.page-book .steps-row { position: relative; }
.page-book .step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: #fff; border: 2px solid #e5ecf5;
  display: inline-flex; align-items: center; justify-content: center;
  color: #0b6bcb; font-size: 28px; position: relative; margin-bottom: 15px;
}
.page-book .step-circle.done { background: #0b6bcb; color: #fff; border-color: #0b6bcb; }
.page-book .step-num {
  position: absolute; top: -6px; right: -6px;
  background: #0b6bcb; color: #fff; font-size: 12px; font-weight: 700;
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.page-book .step h5 { font-size: 16px; }
.page-book .step p { color: #6b7280; font-size: 14px; }

.page-book .side-card {
  background: #0b1e3f; color: #fff; padding: 30px; border-radius: 10px; height: 100%;
}
.page-book .side-card h3 { color: #fff; }
.page-book .under-line { display: block; width: 50px; height: 3px; background: #ff7a00; margin: 8px 0 20px; }
.page-book .check-list { list-style: none; padding: 0; }
.page-book .check-list li { padding: 8px 0; font-size: 15px; color: #e6ecf5; }
.page-book .check-list i { color: #ff7a00; margin-right: 8px; }
.page-book .help-block { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; }
.page-book .help-block h5 { color: #fff; }
.page-book .help-block p { color: #cfd8e8; font-size: 14px; }
.page-book .help-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; }
.page-book .help-row .hi {
  width: 32px; height: 32px; border-radius: 50%; background: #ff7a00;
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 13px;
}
.page-book .trust-block { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 15px; margin-top: 20px; text-align: center; }
.page-book .trust-block .tp { color: #00b67a; font-weight: 700; margin-bottom: 6px; }
.page-book .trust-block .rating { font-size: 22px; font-weight: 700; }
.page-book .trust-block .stars { color: #00b67a; font-size: 18px; }
.page-book .trust-block small { color: #cfd8e8; }

.page-book .form-card { background: #fff; padding: 35px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.page-book .form-label { font-weight: 600; font-size: 14px; }
.page-book .input-icon { position: relative; }
.page-book .input-icon i { position: absolute; left: 12px; top: 12px; color: #9aa4b2; font-size: 14px; }
.page-book .input-icon input, .page-book .input-icon textarea { padding-left: 35px; }
.page-book .input-icon.textarea i { top: 14px; }
.page-book .form-control, .page-book .form-select { padding: 10px 12px; border: 1px solid #e0e6ef; }
.page-book .form-control:focus, .page-book .form-select:focus { border-color: #ff7a00; box-shadow: none; }
.page-book .submit-btn { background: #ff7a00; color: #fff; padding: 14px; font-weight: 700; letter-spacing: 0.5px; }
.page-book .submit-btn:hover { background: #e66f00; color: #fff; }
.page-book .secure { font-size: 13px; color: #6b7280; }

.page-book .popular { background: #f7f9fc; }
.page-book .svc-card {
  background: #fff; border-radius: 10px; padding: 20px; text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); height: 100%;
  transition: transform 0.2s;
}
.page-book .svc-card:hover { transform: translateY(-4px); }
.page-book .svc-card i { font-size: 32px; color: #0b6bcb; margin-bottom: 10px; }
.page-book .svc-card h6 { font-weight: 700; }
.page-book .svc-card p { color: #6b7280; font-size: 13px; }
.page-book .svc-card a { color: #ff7a00; text-decoration: none; font-weight: 600; font-size: 14px; }

.page-book .emerg-cta { background: #ff7a00; color: #fff; padding: 25px 0; }
.page-book .emerg-cta h4 { color: #fff; }
.page-book .emerg-cta small { color: rgba(255,255,255,0.9); }
.page-book .cta-ic {
  width: 50px; height: 50px; border-radius: 50%; background: #fff; color: #ff7a00;
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
}
.page-book .cta-btn { background: #fff; color: #0b1e3f; font-weight: 700; padding: 12px 22px; }
.page-book .cta-btn:hover { background: #f1f1f1; }

.homemsg{
    height:80px;
}

.single-service-content-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(11, 30, 66, 0.06);
  border: 1px solid rgba(11, 30, 66, 0.05);
  margin-bottom: 30px;
}
.single-service-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.single-service-content-img:hover img {
  transform: scale(1.03);
}

.single-service-sidebar{
    background-color:#24bced;
    padding:15px;
    border-radius:10px;
}
.single-service-sidebar h3{
    font-size:25px;
    color:#FFF;
    margin-bottom: 20px;
    border-bottom: 1px solid #FFF;
}
.single-service-sidebar ul{
    padding:0;
    margin:0;
    list-style:none;
}
.single-service-sidebar ul li{
    margin-bottom:15px;
}
.single-service-sidebar ul li a{
    color:#FFFFFF;
    font-weight:500;
    text-decoration:none;
}
.contact-section-form{
    background-color:#24bced;
    padding:15px !important;
    border-radius:10px;
}
.contact-section-form p{
    margin-bottom:0px;
}

@media (max-width: 768px) {
  .page-book .appt-hero h1 { font-size: 32px; }
  .page-book .hero-right { margin-top: 30px; }
  .page-book .emerg-cta .container { gap: 15px; }
}

/* About Page Specific Styles */
.about-intro {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-intro .tag {
  color: #ff7a1a;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-intro h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1e42;
  line-height: 1.25;
  margin-bottom: 25px;
}

.about-intro p {
  font-size: 16px;
  color: #5c6b80;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Why Choose Us Redesign */
.why-choose-redesign {
  background-color: #f8fafc;
  padding: 100px 0;
}

.why-choose-redesign .section-header .tag {
  color: #1a73e8;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.why-choose-redesign .section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1e42;
  margin-bottom: 50px;
}

.why-choose-redesign .feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(11, 30, 66, 0.04);
  box-shadow: 0 10px 30px rgba(11, 30, 66, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.why-choose-redesign .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(11, 30, 66, 0.08);
  border-color: rgba(37, 188, 237, 0.2);
}

.why-choose-redesign .icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff3eb;
  color: #ff7a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(255, 122, 26, 0.1);
}

.why-choose-redesign .feature-card:hover .icon-circle {
  background: #25bced;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(37, 188, 237, 0.25);
  transform: scale(1.08);
}

.why-choose-redesign .feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1e42;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.why-choose-redesign .feature-card:hover h4 {
  color: #25bced;
}

.why-choose-redesign .feature-card p {
  font-size: 14.5px;
  color: #5c6b80;
  line-height: 1.6;
}

/* About Contact Form Redesign */
.about-contact-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.about-contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-contact-section .contact-content {
  max-width: 100%;
}

.about-contact-section .contact-heading {
  font-size: 42px;
  font-weight: 800;
  color: #0b1e42;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 20px;
}

.about-contact-section .lead-text {
  font-size: 17px;
  color: #1a73e8;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-contact-section .desc-text {
  font-size: 15px;
  color: #5c6b80;
  line-height: 1.75;
  margin-bottom: 35px;
}

.about-contact-section .details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-contact-section .detail-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-contact-section .detail-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f7ff;
  color: #1a73e8;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.05);
}

.about-contact-section .detail-block:hover .detail-icon {
  background-color: #1a73e8;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(26, 115, 232, 0.2);
}

.about-contact-section .detail-label {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-contact-section .detail-text p {
  font-size: 15.5px;
  color: #0b1e42;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.about-contact-section .detail-text p a {
  color: #0b1e42;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-contact-section .detail-text p a:hover {
  color: #1a73e8;
}

/* Form block */
.about-contact-form {
  background-color: #ffffff;
  padding: 45px 40px;
  border-radius: 24px;
  border: 1px solid rgba(11, 30, 66, 0.05);
  box-shadow: 0 20px 50px rgba(11, 30, 66, 0.06);
}

.about-contact-form .form-title {
  font-size: 24px;
  font-weight: 800;
  color: #0b1e42;
  margin-bottom: 25px;
  text-align: center;
}

@media (max-width: 992px) {
  .about-contact-section .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================== GALLERY PAGE STYLES ===================== */
.gallery-page-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.gallery-page-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 66, 0.1);
  color: #5c6b80;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 10px rgba(11, 30, 66, 0.03);
}

.gallery-page-badge img.badge-drop-icon {
  width: 14px;
  height: 20px;
  object-fit: contain;
}

.gallery-page-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b1e42;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gallery-page-sub {
  font-size: 16px;
  color: #5c6b80;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-filters-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(11, 30, 66, 0.08);
  background-color: #ffffff;
  color: #0b1e42;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(11, 30, 66, 0.02);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-btn:hover {
  background-color: #f1f5f9;
  border-color: rgba(37, 188, 237, 0.3);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: #25bced;
  color: #ffffff;
  border-color: #25bced;
  box-shadow: 0 8px 20px rgba(37, 188, 237, 0.25);
}

.gallery-item-col {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card-modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 30, 66, 0.03);
  border: 1px solid rgba(11, 30, 66, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.gallery-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(11, 30, 66, 0.08);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #0b1e42;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card-modern:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 30, 66, 0.92) 0%, rgba(11, 30, 66, 0.7) 70%, rgba(11, 30, 66, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-card-modern:hover .gallery-overlay-hover {
  opacity: 1;
}

.gallery-cat-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ff7a1a;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
}

.gallery-item-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 15px;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}

.gallery-zoom-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #25bced;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(15px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
}

.gallery-card-modern:hover .gallery-cat-badge,
.gallery-card-modern:hover .gallery-item-title,
.gallery-card-modern:hover .gallery-item-desc,
.gallery-card-modern:hover .gallery-zoom-link {
  transform: translateY(0) scale(1);
}

.gallery-zoom-link:hover {
  background-color: #25bced;
  color: #ffffff;
  transform: scale(1.1);
}