/* ===== GLOBAL ===== */
/* ============================= */
/* GLOBAL FONT SYSTEM (SAFE) */
/* ============================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  color: #6c757d;
}

/* HEADINGS CONSISTENT */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
  color: #1f4e53;
  line-height: 1.3;
}

/* SIZE SYSTEM (OVERRIDE ONLY FONT SIZE) */
h1 { font-size: 52px !important; }
h2 { font-size: 42px !important; }
h3 { font-size: 28px !important; }
h4 { font-size: 22px !important; }
h5 { font-size: 18px !important; }
h6 { font-size: 14px !important; }

/* PARAGRAPH FIX */
p {
  font-size: 16px !important;
  line-height: 1.7;
  color: #6c757d;
}

/* TAGS */
.tag, .section-tag {
  font-size: 13px !important;
  letter-spacing: 1px;
  font-weight: 600;
  color: #c79a63;
}

/* DESCRIPTION */
.desc {
  font-size: 16px !important;
  line-height: 1.7;
  color: #6c757d;
}

/* FEATURE TEXT */
.feature h5 {
  font-size: 18px !important;
  font-weight: 600;
}

.feature p {
  font-size: 14px !important;
  line-height: 1.6;
}

/* NAV LINKS */
.menu-center .nav-link {
  font-size: 15px !important;
  font-weight: 500;
}

/* BUTTON TEXT */
.btn-main,
.btn-appointment {
  font-size: 14px !important;
  font-weight: 500;
}

/* HERO TEXT */
.hero-content h1 {
  font-size: 52px !important;
}

.hero-content p {
  font-size: 16px !important;
  color: #e0e0e0;
}

/* ===== NAVBAR ===== */

/* NAVBAR */
.premium-navbar {
  background: #fff;
  padding: 10px 0;
}

/* LOGO */
.logo-img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  margin-right: 8px;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: #2aa7a1;
}

/* MENU CENTER PERFECT ALIGN */
.menu-center {
  gap: 25px;
}

.menu-center .nav-link {
  color: #555;
  font-weight: 500;
  transition: 0.3s;
}

.menu-center .nav-link:hover {
  color: #2aa7a1;
}

/* RIGHT BUTTON */
.nav-right {
  display: flex;
  align-items: center;
}

.btn-appointment {
  background: #376A69;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn-appointment:hover {
  background: #2aa7a1;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== HERO ===== */
/* HERO WRAPPER */
.hero-wrapper {
  padding-top: 100px;
}

.hero-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 700px;

  background: url('../images/hero.webp') center/cover no-repeat;
}

/* DARK + GRADIENT OVERLAY */
.hero-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.7) 100%
  );
}
/* BADGE WRAPPER */
.hero-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

/* WHITE CIRCLE */
.badge-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ffffff; /* white background */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* premium shadow */
}

/* ROTATING SVG */
.rotating-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 12s linear infinite;
}

/* TEXT COLOR (TEAL) */
.rotating-svg text {
  fill: #2aa7a1; /* your color */
}

/* CENTER LOGO */
.center-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  z-index: 2;
}

/* ROTATION */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}


/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-content p {
  font-size: 16px;
  margin: 15px 0;
}

/* BUTTON */
.btn-main {
  background: #2aa7a1;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
}

/* BADGE (Right circle) */
.hero-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.badge-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff !important; /* FORCE WHITE */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  color: white;
  font-size: 12px;
}

/* RESPONSIVE */
@media(max-width:768px){

.hero-box {
  height: 400px;
}

.hero-content {
  left: 20px;
  bottom: 20px;
}

.hero-content h1 {
  font-size: 28px;
}

.hero-badge {
  display: none;
}

}

/* ===== BUTTON ===== */
.btn-main {
  background: #2aa7a1;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  transition: 0.3s;
}

.btn-main:hover {
  background: #1b5e5a;
  color: #fff;
}

/* ===== SECTION ===== */
.section {
  padding: 80px 0;
}



/* =====About SECTION ===== */
.about-us {
  padding: 120px 0;
  background: white;
}

/* LEFT IMAGES */
.about-us-images {
  position: relative;
}

.about-img-1 {
  width: 75%;
}

.about-img-1 img {
  width: 100%;
  border-radius: 15px;
}

.about-img-2 {
  position: absolute;
  bottom: -60px;
  left: 60px;
  width: 260px;
}

.about-img-2 img {
  width: 100%;
  border-radius: 15px;
}

/* WORKING HOURS */
.working-hours-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 90%;
  padding: 15px;
  border-radius: 12px;

  background: rgba(0,0,0,0.6);
  color: #fff;
}

/* RIGHT */
.about-us-content {
  padding-left: 40px;
}

.about-tag {
  color: #c79a63;
}

/* FEATURES */
.about-experience-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #e8f6f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.icon-box i {
  color: #2aa7a1;
}

/* TRUST BOX (IMPORTANT MATCH) */
.trusted-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  background: #2aa7a1;
  color: #fff;
  text-align: center;
}

/* BUTTON */
.btn-main {
  display: inline-block;
  margin-top: 20px;
  background: #2aa7a1;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
}








/* ===== CARD ===== */
.card-custom {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card-custom i {
  color: #2aa7a1;
}

.card-custom:hover {
  transform: translateY(-10px);
  background: #2aa7a1;
  color: #fff;
}

.card-custom:hover i {
  color: #fff;
}

/* ===== SERVICES BG ===== */
.bg-soft {
  background: #e8f6f5;
  border-radius: 20px;
  padding: 40px;
}


/* SECTION */
.services-section {
  padding: 100px 0;
  background: #f6fbfa;
}

/* TAG */
.section-tag {
  color: #c79a63;
  font-weight: 600;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b5e5a;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ICON CIRCLE */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e8f6f5;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 26px;
  color: #2aa7a1;
}

/* TEXT */
.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT (PREMIUM 🔥) */
.service-card:hover {
  transform: translateY(-12px);
  background: #2aa7a1;
  color: white;
}

.service-card:hover p {
  color: #fff;
}

.service-card:hover .icon-circle {
  background: #fff;
}

.service-card:hover .icon-circle i {
  color: #2aa7a1;
}

/* GRID FIX */
.services-section .row > div {
  display: flex;
}



/*==== Vision Mission ====*/

/* SECTION BG */
.approach-section {
  background: #eaf5f3;
  padding: 100px 0;
  border-radius: 20px;
}

/* TAG */
.tag {
  color: #c79a63;
  font-weight: 600;
}

/* TITLE */
.approach-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1b5e5a;
}

/* DESC */
.desc {
  color: #555;
}

/* BOX */
.vm-box {
  padding: 30px;
  border-radius: 16px;
  color: #fff;
}

/* MISSION */
.mission-box {
  background: #2aa7a1;
}

/* VISION */
.vision-box {
  background: #1b5e5a;
}

/* IMAGE */
.vm-image-box {
  position: relative;
}

.vm-image-box img {
  width: 100%;
  border-radius: 16px;
}

/* OVERLAY CARD */
.overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;

  background: #2aa7a1;
  color: #fff;
  padding: 20px;
  border-radius: 14px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .overlay-card {
    position: static;
    margin-top: 15px;
  }
}





/*===== why choose us ====*/

/* SECTION */
.why-section {
  padding: 120px 0;
  background: #fff;
}

/* TAG */
.tag {
  color: #c79a63;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TITLE */
.why-section h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1b5e5a;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* DESC */
.desc {
  color: #666;
  max-width: 500px;
  margin-bottom: 20px;
}

/* BUTTON (MATCH TEMPLATE STYLE) */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #c79a63;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
}

.btn-main::after {
  content: "→";
  background: #1b5e5a;
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 12px;
}

/* FEATURES */
.why-features {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.feature {
  max-width: 250px;
}

.feature h5 {
  font-weight: 600;
  color: #1b5e5a;
}

.feature p {
  font-size: 14px;
  color: #777;
}

/* IMAGE BOX */
.why-img-box {
  position: relative;
  text-align: right;
}

/* IMAGE FIX */
.why-img-box img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

/* FLOAT CARD (IMPORTANT FIX 🔥) */
.happy-card {
  position: absolute;
  bottom: 60px;
  left: 40px;

  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* TEXT STYLE */
.happy-card p {
  margin: 0;
  font-size: 14px;
}

.happy-card strong {
  color: #2aa7a1;
}

/* MOBILE */
@media(max-width:768px){

  .why-features {
    flex-direction: column;
    gap: 20px;
  }

  .why-img-box {
    text-align: center;
    margin-top: 30px;
  }

  .happy-card {
    position: static;
    margin-top: 15px;
  }
}






/* ===== STATS ===== */
.stats {
  background: #dff3f1;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.stats h3 {
  color: #2aa7a1;
  font-weight: 700;
}

/* ===== CTA ===== */
.cta {
  background: #1b5e5a;
  color: white;
  border-radius: 20px;
  padding: 60px;
}

.cta h2 {
  margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f3f3c;
  color: white;
  padding: 40px;
}

/* ===== IMAGE ===== */
img {
  max-width: 100%;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

.hero {
  height: auto;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 28px;
}

.navbar-nav {
  text-align: center;
}

}