:root {
  --teal-deep: #0e2a48;
  --teal-navy: #0e2a48;
  --aqua: ##0e2a48;
  --aqua-light: #5FC1CE;
  --sand: #F6F1E7;
  --sand-dark: #EFE6D4;
  --ink: #16282C;
  --grey: #6C7A7D;
  --white: #FFFFFF;
  --line: #E4E0D3;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  color: #e85802;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--aqua);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--teal-navy);
}

.section {
  padding: 60px 0;
}

.center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 16px 32px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: .25s;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--aqua);
  color: #fff;
}

.btn-primary:hover {
  background: #d16002;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--aqua);
  color: var(--teal-navy);
}

.btn-outline:hover {
  background: var(--aqua);
  color: #fff;
}

/* HEADER */
.topbar {
  background: #0e2a48;
  color: #cfe4e6;
  font-size: 15px;
  padding: 5px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-right a i {
  font-size: 16px;
  background-color: #ffffff;
  width: 25px;
  border-radius: 4px;
  color: #0e2a48;
  height: 25px;
  line-height: 25px;
  align-items: center;
  text-align: center;
}

.topbar-left a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}



.topbar-right a i:hover {
  background-color: #d16002;
  color: #ffffff;
}

.topbar-left a:hover {
  color: #db6601;
}

.topbar-left span {
  margin-right: 22px;
}

.topbar-left i {
  color: #fff;
  margin-right: 6px;
}

.topbar-right a {
  margin-left: 14px;
  color: #cfe4e6;
}

header.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 14px rgb(0 0 0 / 35%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 30%;
}

nav.menu {
  display: flex;
  gap: 34px;
}

nav.menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--teal-navy);
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}

nav.menu a.active,
nav.menu a:hover {
  color: #db6601;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions i {
  font-size: 17px;
  color: var(--teal-navy);
  cursor: pointer;
}

.nav-actions .btn {
  padding: 12px 24px;
  font-size: 14px;
  color: #fff;
  background-color: #0d2743;
  font-weight: 600;
}

.nav-actions .btn:hover {
  color: #fff;
  background-color: #db6601;
  border-color: #db6601;
}

.burger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}


.hero img {
  width: 100%;
}

/* CATEGORY */
.section-head {
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: 33px;
  color: #0e2a48;
  font-weight: 700;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cat-card {
  text-align: center;
}

.cat-img {
  border-radius: 50%;
  overflow: hidden;
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
  border: 4px solid #db6601;
  box-shadow: 0 12px 30px rgba(10, 53, 64, .12);
  transition: .3s;
}

.cat-card:hover .cat-img {
  transform: translateY(-8px);
  box-shadow: 0 6px 10px #0000007a;
  border-color: #db6601;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card h4 {
  font-size: 18px;
  color: #0e2a48;
  font-weight: 600;
  margin-bottom: 4px;
}

.cat-card span {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 600;
}

/* JOURNEY / QUALITY SECTION */
.quality {
  margin-bottom: 70px;
  background: #ebebeb;
}

.quality .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quad-grid img {
  border-radius: 14px;
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.quad-grid img:nth-child(1) {
  margin-top: 26px;
}

.quad-grid img:nth-child(3) {
  margin-top: -26px;
}

.quality-copy h2 {
  font-size: 27px;
  color: #0d2743;
  font-weight: 600;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.check-list i {
  background: var(--aqua);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  width: 25px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  background-color: #db6601;
  height: 25px;
}

ul.check-list {
  padding: 0 0 0 10px;
  margin-bottom: 25px;
}

.quality-copy p {
  color: #000000;
  font-weight: 500;
  margin-bottom: 20px;
}

/* MORE THAN SECTION */
.more-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.more-icons {
  display: flex;
  gap: 34px;
  margin: 26px 0 30px;
}

.more-icons div {
  text-align: center;
}

.more-icons i {
  font-size: 30px;
  color: var(--aqua);
  margin-bottom: 10px;
  display: block;
}

.more-icons span {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-navy);
}

.more-visual {
  position: relative;
  background: var(--sand);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.more-visual img {
  border-radius: 12px;
  max-height: 380px;
  object-fit: cover;
  margin: 0 auto;
}

.dots-decor {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--aqua-light) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: .4;
  top: -20px;
  right: -20px;
  z-index: -1;
}

/* PROMO STRIPS */
.promo-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  min-height: 340px;
}

.promo {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  color: #fff;
}

.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 42, 51, .85), rgba(8, 42, 51, .15));
}

.promo-mid {
  background: var(--aqua);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.promo-mid span.tag {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-mid h3 {
  color: #fff;
  font-size: 26px;
  margin: 10px 0 20px;
}

.promo-mid .circle-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .4);
  margin-bottom: 0;
}

.promo-mid .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-content span.tag {
  font-size: 15px;
  background: var(--aqua);
  padding: 0 0;
  color: #db6601;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.promo-content h3 {
  color: #fff;
  font-size: 24px;
  margin: 3px 0 5px 0;
}

.promo-mid a.btn {
  background-color: #0d2743;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 25px;
}

.promo-mid a.btn:hover {
  background-color: #db6601;
}

.promo-content a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #db6601;
  padding-bottom: 3px;
}

.service-card {
  background: #0d2743;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: .3s;
}

.service-card:hover {
  background: #db6601;
  transform: translateY(-6px);
}

.service-card:hover h4,
.service-card:hover p {
  color: #fff;
}

.service-card:hover i {
  color: #fff;
}

.service-card i {
  font-size: 34px;
  color: #fff;
  margin-bottom: 18px;
  display: block;
}

.service-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #ffffff;
}

/* MENU / PRODUCT RANGE */
.range {
  background: var(--teal-navy);
  color: #fff;
  position: relative;
}

.range .section-head h2 {
  color: #fff;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, .06);
  padding: 8px;
  border-radius: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.tab {
  padding: 11px 24px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: .25s;
  color: #cfe4e6;
}

.tab.active {
  background: var(--aqua);
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .18);
}

.price-item .pi-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.price-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.price-item h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.price-item p {
  font-size: 12.5px;
  color: #9ec3c8;
}

.price-item .price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--aqua-light);
  font-size: 16px;
  white-space: nowrap;
}


.best-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px;
  text-align: center;
  transition: .3s;
}

.best-card:hover {
  box-shadow: 0 20px 40px rgba(10, 53, 64, .12);
  transform: translateY(-6px);
}

.best-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 6px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.best-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0d2743;
  margin-bottom: 8px;
}

.best-card p {
  font-size: 15px;
  font-weight: 500;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.best-card p.smaill {
  font-size: 13px;
  font-weight: 600;
  color: #0d2743;
  margin-bottom: 25px;
}

.best-card a.buttom {
  background-color: #0d2743;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.best-card a.buttom:hover {
  background-color: #d16002;
}

/* QUOTE BAND */
.quote-band {
  background: #f3f1f1;
  margin: 100px 0;
}

.quote-right a.btyom {
  background-color: #0d2743;
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.quote-right a.btyom:hover {
  background-color: #d16002;
}

.quote-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.quote-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quote-left i {
  font-size: 55px;
  color: #0d2743;
}

.quote-left h3 {
  color: #0d2743;
  font-weight: 500;
  font-size: 30px;
}

.quote-left p {
  color: #0d2743;
  font-size: 16px;
  font-weight: 500;
  margin-top: 6px;
}

.quote-right .btn {
  padding: 20px 40px;
  font-size: 14px;
}

/* TEAM */
.team-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.team-copy p {
  color: var(--grey);
  margin: 16px 0 26px;
}

.team-cards {
  display: flex;
  gap: 22px;
}

.team-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
}

.team-card img {
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--teal-navy);
  padding: 16px;
  text-align: center;
}

.team-info h4 {
  color: #fff;
  font-size: 15.5px;
}

.team-info span {
  color: var(--aqua-light);
  font-size: 12px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--teal-navy);
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonials i.quote-icon {
  font-size: 34px;
  color: var(--aqua-light);
  margin-bottom: 22px;
}

.testimonials p.quote {
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 17px;
  color: #dcebed;
  line-height: 1.8;
}

.testimonials h4 {
  color: #fff;
  font-size: 16px;
}

.testimonials span {
  color: var(--aqua-light);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid var(--aqua);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 53, 64, .08);
}

.blog-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--aqua);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  font-family: var(--font-display);
}

.blog-date strong {
  display: block;
  font-size: 16px;
}

.blog-date span {
  font-size: 10px;
  text-transform: uppercase;
}

.blog-body {
  padding: 22px;
}

.blog-body .meta {
  font-size: 12px;
  color: var(--aqua);
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-body h4 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 13.5px;
  color: var(--grey);
}

.gallery {
  background: #ebebeb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: .3s;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

.gallery-grid .g-tall {
  grid-row: span 2;
}

footer {
  background: #0d2743;
  color: #b8ccd0;
  padding-top: 70px;
}

.f-logo img {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.footer-grid {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-grid p {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}

.footer-grid ul li a {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffff;
}

.footer-grid ul {
  padding: 0;
}

.footer-grid ul li {
  margin-bottom: 12px;
  color: #fff;
}

.footer-grid ul li a:hover {
  color: #db6601;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.f-logo h1 {
  color: #fff;
  font-size: 18px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.social-row a:hover {
  background: var(--aqua);
  border-color: var(--aqua);
}

.contact-info li {
  display: flex;
  gap: 10px;
}

.contact-info i {
  color: #ffffff;
  margin-top: 3px;
  font-size: 20px;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 15px;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff;
}

@media(max-width:1024px) {

  .hero .container,
  .quality .container,
  .more-wrap,
  .team-wrap {
    grid-template-columns: 1fr;
  }

  .cat-grid,
  .services-grid,
  .best-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .price-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  nav.menu {
    display: none
  }

  .burger {
    display: block
  }
}

@media(max-width:640px) {

  .cat-grid,
  .services-grid,
  .best-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .promo-strip {
    grid-template-columns: 1fr
  }

  .hero-copy h2 {
    font-size: 36px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .quote-wrap {
    flex-direction: column;
    text-align: center
  }

  .team-cards {
    flex-direction: column
  }
}

.page-banner {
  background: linear-gradient(120deg, var(--teal-navy) 55%, var(--teal-deep) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}

.breadcrumb {
  color: #9ec3c8;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-size: 19px;
  padding: 0 10px 0 0;
}

.page-banner i.bg-icon {
  position: absolute;
  font-size: 180px;
  color: rgba(255, 255, 255, .04);
  right: -20px;
  top: -30px;
}

/* ABOUT PAGE */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero img {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.stats-row {
  text-align: center;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 34px 20px;
  box-shadow: 0 0 5px #9d9d9da3;
}

.stat-card i {
  font-size: 28px;
  color: #db6601;
  margin-bottom: 12px;
  display: block;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--teal-navy);
}

.stat-card span {
  font-size: 16px;
  color: #0d2743;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}


.value-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 0 8px #0000007a;
  transition: 0.9s;
  cursor: pointer;
}

.value-card:hover {
  transform: translateY(-10px);
  transition: 0.9s;
}

.value-card i {
  font-size: 26px;
  color: #db6601;
  margin-bottom: 18px;
  display: block;
}

.value-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #0d2743;
}

.value-card p {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}



.contact-card {
  background: #0d2743;
  border-radius: 12px;
  padding: 32px 26px;
  text-align: center;
}

.contact-card:hover {
  background: #db6601;
  transform: translateY(-10px);
  transition: 0.9s;
}

.contact-card i {
  font-size: 30px;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.contact-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

section.contact-us {
  margin-bottom: 70px;
}

.contact-card p {
  font-size: 13.5px;
  color: #ffffff;
  margin: 0;
}

.contact-card a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 13px;
  background-color: #fff;
  box-shadow: 0 0 6px #00000066;
}

.contact-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--aqua);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 400px;
}

button.btn-q {
  background-color: #0d2743;
  color: #fff;
  padding: 5px 15px;
  border: unset;
}

@media(max-width:1024px) {

  .about-hero,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .value-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {

  .value-grid,
  .contact-cards,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .contact-form .row2 {
    grid-template-columns: 1fr;
  }
}

/* PRODUCTS PAGE */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-tab {
  padding: 11px 22px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: .25s;
  background: var(--sand);
  color: var(--teal-navy);
  border: 1px solid var(--line);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--aqua);
  color: #fff;
  border-color: var(--aqua);
}

.product-col {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 3px #00000066;
  transition: .3s;
  display: flex;
  flex-direction: column;
}

.product-col:hover {
  box-shadow: 0 16px 34px rgb(133 133 133 / 26%);
  transform: translateY(-5px);
  border-color: transparent;
}

.product-photo {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.product-col:hover .product-photo img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--aqua);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 5px 10px;
  border-radius: 4px;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #0d2743;
}

.product-info p {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 14px;
  flex: 1;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.product-foot a {
  font-size: 16px;
  font-weight: 700;
  color: #db6601;
  border-bottom: 2px solid var(--aqua);
  padding-bottom: 2px;
}

.products-row.hide-row {
  display: none;
}

@media(max-width:1024px) {
  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .products-row {
    grid-template-columns: 1fr;
  }
}

.logo img {
  width: 85%;
}

.row.cat-grid.mb-5 {
  display: flex;
  justify-content: space-around;
}

/* ============================================== */



.about-content h2 {
  font-size: 21px;
  font-weight: 600;
  color: #0d2743;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 15px;
  font-weight: 600;
}


/* MOBILE */
@media(max-width: 768px) {

  .burger {
    display: block;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .menu.active {
    display: flex;
  }

  .nav-actions {
    display: none;
  }
}


@media only screen and (max-width: 600px) {

  .topbar {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .logo img {
    width: 100%;
  }

  .logo {
    width: 60%;
  }

  .section-head h2 {
    font-size: 25px;
  }


  .cat-img {
    width: 130px;
    height: 130px;
  }

  .promo {
    height: 301px;
  }


  .content h2 {
    font-size: 24px !important;
  }

  .page-banner h2 {
    font-size: 24px !important;
  }

  .breadcrumb {
    font-size: 16px !important;
    display: flex;
    color: #db6601 !important;
  }

}

.dropdown {
  position: relative;
}

.drop-btn {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-content {
  position: absolute;
  top: 50px;
  left: 0;
  padding: 15px 10px 15px 10px;
  min-width: 330px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  opacity: 0;
  line-height: 32px;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 999;
}

.dropdown-content a {
  font-size: 16px !important;
  padding: 5px 0 !important;
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: #0d2743;
  padding-left: 10px !important;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.breadcrumb {
  font-size: 19px !important;
  color: #db6601 !important;
}



.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
  position: fixed;
  right: 25px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 0;
  z-index: 9999;
  color: white;
  transition: .2s;
}

.btn-floating:hover {
  width: auto;
  padding: 0 20px;
  cursor: pointer;
}

.btn-floating span {
  font-size: 16px;
  margin-left: 5px;
  font-weight: 700;
  transition: .2s;
  line-height: 0px;
  display: none;
}

.btn-floating:hover span {
  display: inline-block;
}

/* Phone */
.btn-floating.phone {
  bottom: 85px;
  background-color: #db6601;
}

.btn-floating.phone:hover {
  background-color: #db6601;
}

/* WhatsApp */
.btn-floating.whatsapp {
  background-color: #34af23;
  bottom: 25px;
}

.btn-floating.whatsapp:hover {
  background-color: #1f7a12
}

.btn-floating i.fa-brands.fa-whatsapp {
  font-size: 20px;
  padding: 2px 0 0 0;
}

.menu-box ul {
  list-style: none;
  padding: 0;
}

.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
}

/* --- Left Sidebar (Menu & Doctor) --- */
aside.sidebar {
  flex: 1;
  min-width: 330px;
  max-width: 330px;
}

.menu-box {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 25px;
}

.menu-box h3 {
  background-color: #0b2942;
  /* Green color from image */
  color: #fff;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

.menu-box ul {
  list-style: none;
}

.menu-box ul li {
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.menu-box ul li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  transition: 0.2s;
}

.menu-box ul li a:hover,
.menu-box ul li a.active {
  background-color: #db6701;
  color: #fff;
}

.menu-box ul li:last-child {
  border-bottom: none;
}

/* Sub-menu styling */
.sub-menu {
  list-style: none;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.sub-menu li a {
  padding-left: 35px;
  /* Indent for sub-items */
  font-size: 0.9rem;
}

/* Doctor Profile Box */
.doctor-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}

.doctor-box img {
  border-radius: 50%;
  margin-bottom: 10px;
  width: 70%;
}

.doctor-box h4 {
  color: #0b2942;
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 10px;
}

.doctor-box p {
  font-size: 18px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-badge {
  background: #0b2942;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
}

.phone-number {
  color: #fff;
  background: #db6601;
  padding: 8px;
  font-size: 19px;
  font-weight: 500;
  display: block;
  margin-top: -12px;
  margin-bottom: 15px;
}

/* Booking Form */
.appointment-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
}

.appointment-box h4 {
  margin-bottom: 15px;
  color: #0b2942;
}

.appointment-box input,
.appointment-box textarea,
.appointment-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.appointment-box button {
  width: 100%;
  padding: 12px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.appointment-box button:hover {
  background-color: #2563eb;
}

/* --- Right Content Area --- */
main.content {
  flex: 3;
}

.mainnn {
  display: flex;
  justify-content: center;
}

.featured-image {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.featured-image img {
  border-radius: 5px;
  width: 100%;
}

/* Typography for Content */
.content h2 {
  font-size: 30px;
  font-weight: 600;
  color: #0b2942;
  margin: 20px 0 12px;
}

.content h3 {
  font-size: 23px;
  font-weight: 600;
  color: #0b2942;
  margin: 28px 0px 12px;
  border-left: 6px solid #db6601;
  padding-left: 14px;
}

.content p {
  margin-bottom: 15px;
  text-align: justify;
  color: #282828;
  font-weight: 500;
}

.content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.content ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  font-weight: 600;
  position: relative;
}

.content ul li::before {
  content: "•";
  color: #0b2942;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-wrapper {
    flex-direction: column;
  }

  aside.sidebar {
    max-width: 100%;
    min-width: 100% !important;
  }
}



.dropdown {
  position: relative;
}


.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  width: 250px;
  z-index: 999;
}


.dropdown-content a {
  display: block;
  padding: 12px 15px;
  color: #333;
}


.dropdown:hover .dropdown-content {
  display: block;
}



@media(max-width:768px) {


  .burger {
    display: block;
    cursor: pointer;
  }


  .menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }


  .menu.show {
    display: block;
  }


  .menu a {
    display: block;
    padding: 15px;
  }


  .dropdown-content {
    position: static;
    width: 100%;
    display: none;
    background: #f5f5f5;
  }


  .dropdown.active .dropdown-content {
    display: block;
  }


  .dropdown:hover .dropdown-content {
    display: none;
  }


  .dropdown.active:hover .dropdown-content {
    display: block;
  }


}

.service-carded {
  display: flex;
  justify-content: center;
}

.service-carded img {
  width: 20%;
  margin-bottom: 15px;
}