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

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

html, body {
  background-color: #fff;
  font-family: 'Abhaya Libre', serif;
}


/* ============================= HEADER TOP ============================ */

.header-top {
  display: flex;
  background: linear-gradient(135deg, #1e3c72);
  font-family: Arial, sans-serif;
  justify-content: center;
  align-items: center;
  height: 30px;
}
/* ----------------------------Social Icons ------------------------- */

.social-icons .fa-facebook-f {
  color: #1877F2; 
}

.social-icons .fa-whatsapp {
  color: #25D366; 
}

.social-icons .fa-x-twitter {
  color: #000; 
}

.social-icons .fa-linkedin-in {
  color: #0A66C2;
}

.social-icons .fa-instagram {
  color: #E4405F; 
}

/* Optional hover effect */
.social-icons i:hover {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ---------------------navbar----------------------------  */

.navbar-container {
  padding: 1px 10px;
  display: flex;
  justify-content: space-between;
}

/* Logo */
.navbar-logo {
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

* Navbar Menu (Desktop Only) */
.navbar-menu {
  display: none;
}

/* ---------------- MOBILE NAVBAR ---------------- */
.block.md\:hidden {
  width: 100%;
  z-index: 999;
}

@media (min-width: 767px) {
  .navbar-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
}

/* Left Logo on Mobile */
@media (max-width: 767px) {
  .navbar-container {
    justify-content: flex-start;
    z-index: 999;
  }
}

/* Dropdown */
.navbar-menu .dropdown {
  position: relative;
}

.navbar-menu .dropdown > button {
  background: none;
  border: none;
  font-size: 16px;
  color: #0b1e4e;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.navbar-menu .dropdown > button:hover {
  color: #007bff;
}

.navbar-menu .dropdown svg {
  margin-left: 5px;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.navbar-menu .dropdown:hover svg {
  transform: rotate(180deg);
}

.navbar-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  display: none;
  z-index: 10;
}

.navbar-menu .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-menu .dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #0b1e4e;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-menu .dropdown-menu a:hover {
  background: #f0f8ff;
  color: #007bff;
}

/* ? Reset links - No underline + correct color */
.navbar-menu a,
.mobile-submenu a,
.contact-link {
  text-decoration: none;
}

/* ? Desktop nav links */
.navbar-menu > .dropdown > a {
  font-size: 16px;
  color: #0b1e4e;
  transition: color 0.3s ease;
}

.navbar-menu > .dropdown > a:hover {
  color: #007bff;
}

/* ? Mobile submenu */
.mobile-submenu a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  color: #0b1e4e;
  transition: color 0.3s ease;
}

.mobile-submenu a:hover {
  color: #007bff;
}

.mobilehome{  
  display: block;
  font-size: 16px;
  color: #0b1e4e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobilehome:hover {
  color: #007bff;
}

/* Contact Button */
.contact_link {
  background-color: #391ae7ff;
  color: #ffffff;
  border-radius: 45px;
  text-decoration: none;
  /* transition: background 0.3s ease; */
}

.contact_link:hover {
  color: #ffffff;
  background-color: #4b2bfdff;
  border: 1px #391ae7ff;
}

/* ? Mobile submenu */


/* ===============================ENQUIRY POPUP================================*/
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20000;
}

.enquiry-overlay.show {
  display: flex;
}

.enquiry-popup {
  background: #fff;
  width: 90%;
  max-width: 360px;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: popupFade 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

@keyframes popupFade 
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.popup-btn {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.25s ease;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

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

.popup-btn.call {
  background: #3414a5;
}

.popup-btn.mail {
  background: #ea4335;
}

.popup-btn.fb {
  background: #1877f2;
}

.popup-btn.insta {
  background: #e1306c;
}

.popup-btn.linkedin {
  background: #0a66c2;
}

.popup-btn.x {
  background: #000;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .contact_link {
    padding: 8px 16px;
    font-size: 14px;
  }

  .popup-btn {
    flex: 1 1 calc(50% - 12px);
    justify-content: center;
  }
}

    /* ====================== HOME SECTION ====================== */
.home {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 0 10px;
}

/* Background Image */
.home-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Dark Overlay */
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content */
.home-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 10px;
  animation: fadeInUp 1s ease forwards;
}

.home-content h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  padding-top: 130px;
  margin-bottom: 20px;
}

.home-content p {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 26px;
  opacity: 0.95;
}
@media (max-width: 640px) {
  .home {
    min-height: 50vh;
  }

  .home-bg {
    object-position: center top;
  }

  .home-content {
    padding: 10px;
  }

  .home-content h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .home-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.explore_btn {
  background-color: #391ae7;
  padding: 12px 34px;
  color: #ffffff;
  border-radius: 45px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.explore_btn:hover {
  background-color: #4b2bfd;
  transform: translateY(-2px);
}


/* ======================= ABOUT FOUNDER SECTION ======================= */
.about-founder {
  width: 100%;
  padding: 30px 20px;
  background-color: #ebf1f7ff;
}

.about-founder-inner {
  background-color: #f6f6f6;
  border-radius: 22px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Content */
.about-founder-text {
  flex: 1;
}

.about-founder-text h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 20px;
}

.about-founder-text p {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}

/* Right: Owner */
.about-founder-owner {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-founder-owner img {
  width: 250px;
  height: 250px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-founder-owner img:hover {
  transform: scale(1.05);
}

.owner-name {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #0a66c2;
}

.owner-role {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-top: 5px;
}

/* ======================= ABOUT FOUNDER RESPONSIVE ======================= */
@media (max-width: 900px) {
  .about-founder-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-founder-text {
    max-width: 800px;
  }
}

@media (max-width: 480px) {
  .about-founder {
    padding: 30px 15px;
  }

  .about-founder-owner img {
    width: 200px;
    height: 200px;
  }
}


/* ======================= TRUST METRICS SECTION ======================= */
.trust-metrics {
  padding: 40px 20px;
  background-color: #ebf1f7ff;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
}

.trust-heading {
  text-align: center;
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 50px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric-card {
  background-color:#f6f6f6;
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.metric-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-card h3 {
  font-size: 2.2rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 6px;
}

.metric-card p {
  font-size: 0.95rem;
  color: #475569;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1000px) {
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .metrics-row {
    grid-template-columns: 1fr;
  }
}

/* ========================WHO WE WORK WITH ============================ */

.partners-section {
  padding: 50px 0;
  background: #f8fafc;
}

.partners-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0f172a;
}

.partners-header p {
  margin-top: 12px;
  color: #64748b;
  font-size: 16px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.partner-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.partner-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f3c88, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-icon-wrap svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
}

.partner-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.partner-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* =============================== RESPONSIVE ================================ */

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .partners-section {
    padding: 70px 16px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-card {
    padding: 26px 22px;
  }
}


/* =============================== WORK STANDARDS – FRAMEWORK ================================ */
.standards-infographic {
  padding: 40px 0;
  background: #f9fafb;
}

.infographic-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.infographic-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #111827;
}

.infographic-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  flex-wrap: wrap;
}

.info-step {
  width: 200px;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
  display: block;
}

.step-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  border-top: 6px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-circle svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.info-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.info-step p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.flow-arrow {
  font-size: 28px;
  color: #9ca3af;
}

/* Color themes */
.step-blue { color: #3b82f6; }
.step-green { color: #10b981; }
.step-green-dark { color: #22c55e; }
.step-orange { color: #f59e0b; }
.step-pink { color: #ec4899; }

/* Mobile */
@media (max-width: 900px) {
  .flow-arrow {
    display: none;
  }
}


/* ============================= PRODUCTION KNOWLEDGE SECTION ============================ */
.production-knowledge {
  background: #f4f7fb;
  padding: 30px 20px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.pk-container {
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 50px;
}

.section-title .highlight {
  color: #2563eb;
}

/* Grid */
.knowledge-grid {
  padding-top:30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
}

/* Card */
.knowledge-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 34px 30px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

.knowledge-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
}

/* Icon */
.icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 12px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: #2563eb;
}

/* Headings */
.knowledge-heading {
  font-size: 19px;
  font-weight: 600;
  margin: 16px 0 10px;
  color: #0f172a;
}

/* Description */
.knowledge-desc {
  font-size: 14.8px;
  color: #475569;
  line-height: 1.65;
}

/* Quality note */
.quality-note {
  font-size: 13.5px;
  font-weight: 500;
  color: #2563eb;
  margin: 14px 0;
}

/* Points */
.knowledge-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.knowledge-points li {
  font-size: 14px;
  color: #334155;
  margin-bottom: 7px;
  padding-left: 18px;
  position: relative;
}

.knowledge-points li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-size: 18px;
}

.icon-wrap svg {
  stroke: #2563eb;
}
/* <!-- ======================= Services We Offer ======================= --> */
.services-section {
  background: #e1edfeff;
  padding: 30px 20px 60px;
}

.container {
  max-width: 1400px; /* wider container for 5 cards */
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  color: #1f2937;
  margin-bottom: 10px;
}

.section-header p {
  color: #6b7280;
  font-size: 16px;
}

/* EXACT 5 CARDS IN ONE ROW */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
  margin-bottom: 16px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 17px;
  color: #111827;
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.service-card ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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



/* ====================== Contact Us Section ======================  */

.case-form-section {
  padding: 30px 20px;
  background: #f5f7fb;
}

.case-form-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.case-form-container h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}

.case-form-container p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 35px;
}

.case-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.case-form input,
.case-form select,
.case-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.3s ease;
}

.case-form textarea {
  resize: none;
  margin-bottom: 25px;
}

.case-form input:focus,
.case-form select:focus,
.case-form textarea:focus {
  border-color: #391ae7;
  box-shadow: 0 0 0 3px rgba(57, 26, 231, 0.15);
}

.submit-btn {
  background: #391ae7;
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 45px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background: #4b2bfd;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .case-form-container {
    padding: 35px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .case-form-container h2 {
    font-size: 26px;
  }
}

/* ================================footer section======================== */
.site-footer {
  background: #0f172a; 
  color: #e5e7eb;
  padding: 40px 0 0px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-col h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  /* text-align: center; */
}

.footer-col p {
  line-height: 1.7;
  color: #cbd5f5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: #cbd5f5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #38bdf8; /* dental blue */
}

.quick-links ul li a::before {
  content: "\203A";
  margin-right: 5px;
  color: #38bdf8;
}


.map_link {
  display: inline-block;
  line-height: 1.3;
}


.footer-col.quick-links {
  padding: 28px 90px;
}

.footer-col.services {
  padding: 28px 60px;
}

.footer-bottom {
  text-align: center;
  padding-bottom: 10px;
  padding-top: 20px;
  border-top: 1px solid #374151;
  font-size: 14px;
  color: #94a3b8;
}


/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul li {
    justify-content: center;
  }
}

/* ============================= ABOUT US PAGE ============================ */
.about-page {
  background: #ffffff;
  color: #1f2937;
  font-family: inherit;
  padding-top: 94px;
}

/* HERO */
.about-hero {
  background: linear-gradient(to right, #b1d9e7, #eef2ff);
  padding: 50px 20px;
  text-align: center;
}

.about-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
  color: #475569;
}

/* Sections */
.about-section {
  padding: 30px 20px;
  background: #e2e6ebff;
}

/* WHO WE ARE */
.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.who-content h2 {
  font-size: 34px;
  padding-bottom: 30px;
}

.who-content p {
  font-size: 19px;
  line-height: 1.8;
  color: #475569;
}

.who-image img {
  width: 100%;
  border-radius: 18px;
}

/* Vision Mission */
.vm-wrapper {
  max-width: 1200px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vm-box {
  background: #f6f6f6;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #d1def7ff;
}

.vm-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.vm-box p {
  color: #475569;
  line-height: 1.7;
}

/* =======================Expertise ================= */
.our_experties {
  padding: 30px 20px 60px;
  background: #c8ddf9ff;
}

.expertise-grid {
  max-width: 1200px;
  padding-top: 20px 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 20px;
}

.center-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}

.expertise-card {
  background: #f6f6f6;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #d1def7ff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ================= Quality & Tech ======================== */

.qt_section {
  padding: 30px 20px;
  background: #e2e6ebff;
}

.qt-wrapper {
  max-width: 1200px;
  padding: 30px 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.qt-image img {
  width: 100%;
  border-radius: 18px;
}

.qt-content h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.qt-content p {
  font-size: 19px;
  line-height: 1.8;
  color: #475569;
}

/* Why Choose Us */
.why-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.why-card h3 {
  font-size: 32px;
  color: #0ea5e9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper,
  .qt-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vm-wrapper {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

/* ============================= PRODUCTS PAGE ============================ */
.products-wrapper {
  padding-top: 94px;
  color: #1e293b;
  line-height: 1.6;
}

/* Utility Classes */
.section-container {
  max-width: 1200px;
  padding: 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #4b2bfd, #391ae7);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Backgrounds */
.section-light {
  background-color: #e5edffff;
}

.section-white {
  background-color: #ffffff;
}

.section-lighter {
    background-color: #ebf1f7;
}

.section-gradient {
    background: linear-gradient(135deg, #1f3c88, #2563eb);
}

/* ============================================
     SECTION 1: Crown & Bridge
============================================ */
.crown-bridge-section {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.crown-bridge-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.crown-bridge-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.product-card {
  width: 270px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
}

.product-card-image {
  width: 269px;
  height: 150px;          
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;        
  transition: transform 0.4s ease;
}


.product-card-image.bg-blue {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.product-card-image.bg-amber {
  background: linear-gradient(135deg, #ffffffff, #ffffffff);
}

.product-card-image.bg-indigo {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.product-card-image.bg-cyan {
  background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-badge.new {
  width: auto;
  padding: 4px 12px;
  background: #06b6d4;
  font-size: 11px;
}

.product-card-content {
  padding: 20px;
}

.product-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-tag {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
}

.product-tag.blue {
  background: #eff6ff;
  color: #2563eb;
}
.product-tag.amber {
  background: #fffbeb;
  color: #d97706;
}
.product-tag.indigo {
  background: #eef2ff;
  color: #4f46e5;
}
.product-tag.cyan {
  background: #ecfeff;
  color: #0891b2;
}

   /* ============================================
SECTION 2: Implant Prosthetics
============================================ */

.implant-section {
  padding: 20px 0;
  /* background: #f6f6f6; */
}
.implant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.implant-visual {
  position: relative;
}

.implant-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 0px;
}

.implant-image-wrapper img {
  object-fit: contain;
}

.implant-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.implant-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}
.implant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.implant-card-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.implant-card-text p {
  font-size: 14px;
  color: #64748b;
}


/* ============================================
     SECTION 3: Removable Prosthetics
============================================ */
.removable-section {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.removable-section::before {
  content: '';
  position: absolute;
  top: 100px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: rgba(244, 63, 94, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}
.removable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.removable-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}
.removable-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.removable-card-image {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e2e8f0;
}

.removable-card-image img {
  width: 100%;
  max-width: 380px;
  height: 130px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.removable-card:hover .removable-card-image img {
  transform: scale(1.08);
}
.removable-card-content {
  padding: 28px;
  text-align: center;
}
.removable-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.removable-card-desc {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 18px;
}
.removable-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.removable-tag {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
}
.removable-tag.rose {
  background: #fff1f2;
  color: #e11d48;
}
.removable-tag.blue {
  background: #eff6ff;
  color: #2563eb;
}
.removable-tag.amber {
  background: #fffbeb;
  color: #d97706;
}

/* ============================================
     SECTION 4: Precision Attachments
============================================ */
.precision-section {
  padding: 20px 0;
}
.precision-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.precision-main {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.precision-main-image {
  flex: 1;
}
.precision-main-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
.precision-main-content {
  flex: 1;
}
.precision-main-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}
.precision-main-content p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.7;
}
.precision-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.precision-tag {
  padding: 10px 20px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
}
.precision-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.precision-feature {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}
.precision-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}
.precision-feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.precision-feature-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
.precision-feature p {
  font-size: 13px;
  color: #64748b;
  padding-left: 5px;
}

  /* ============================================
SECTION 5: CTA
============================================ */
.cta-section {
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 25%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: 20%;
  width: 400px;
  height: 400px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.cta-btn.primary {
  background: #fff;
  color: #2563eb;
}
.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-btn.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
  RESPONSIVE STYLES
  ============================================ */
@media (max-width: 1024px) {
  .products-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .implant-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  .precision-grid {
      grid-template-columns: 1fr;
  }
  .precision-main {
      flex-direction: column;
      text-align: center;
  }
  .precision-sidebar {
      flex-direction: row;
  }
  .precision-feature {
      flex: 1;
  }
  .precision-feature p {
      padding-left: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 32px;
  }
  .section-subtitle {
      font-size: 16px;
  }
  .products-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
  }
  .removable-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
  }
  .precision-sidebar {
      flex-direction: column;
  }
  .cta-title {
      font-size: 32px;
  }
  .cta-subtitle {
      font-size: 17px;
  }
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  .cta-trust {
      gap: 20px;
  }
}