:root {
  --primary-color: #8B4513;
  --secondary-color: #ecba56;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #34495e;
  --text-color: #333;
  --text-muted: #7f8c8d;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --border-radius: 12px;
}

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

body {
  font-family: 'Onest', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
  font-size: 16px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ecba56;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-color);
}

/* Navbar */
.navbar {
  background-color: var(--primary-color);
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar-brand img {
  height: 50px;
  transition: var(--transition-normal);
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
  color: white;
  outline: none !important;
}

.nav-link {
  color: white !important;
  margin: 0 0.8rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition-normal);
  padding: 0.5rem 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ecba56;
  bottom: 0;
  left: 0;
  transition: var(--transition-normal);
}

.nav-link:hover:after, .nav-item.active .nav-link:after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin: 0;
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-warning {
  background-color: #ecba56;
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(236, 186, 86, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 180px;
  gap: 0.5rem;
}

.btn-warning i {
  color: white !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin: 0;
}

.btn-warning:hover i {
  transform: translateX(3px);
}

.btn-outline-warning {
  background-color: transparent;
  border: 2px solid #fff;
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 180px;
  gap: 0.5rem;
}

.btn-outline-warning i {
  color: white !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin: 0;
}

.btn-outline-warning:hover i {
  color: var(--primary-color) !important;
  transform: translateY(3px);
}

/* Special animation for phone icon */
.btn-warning[href^="tel:"] i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn i {
    font-size: 1rem;
  }
}

/* Header section */
.header-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(-2deg);
}

.header-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  right: -50px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(2deg);
}

.main-title {
  color: white;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 1s ease;
}

.subtitle {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

/* Service section */
.service-section {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}

.service-category {
  margin-bottom: 4rem;
  animation: fadeIn 1s ease;
}

.category-title {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  position: relative;
  text-align: center;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
}

/* Modern Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  border: 1px solid rgba(236, 186, 86, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  background: linear-gradient(135deg, rgba(236, 186, 86, 0.1), rgba(236, 186, 86, 0.05));
}

.card-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.service-card:hover .card-title::after {
  width: 60px;
}

.card-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(236, 186, 86, 0.1);
  padding-top: 1.5rem;
}

.service-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li {
  transform: translateX(5px);
}

.service-card:hover .service-features li:before {
  transform: scale(1.2);
}

.service-features strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Service Icon */
.service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(236, 186, 86, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.service-icon i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--secondary-color);
  transform: rotate(10deg);
}

.service-card:hover .service-icon i {
  color: #fff;
}

/* CTA Button */
.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(236, 186, 86, 0.3);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 186, 86, 0.4);
  color: #fff;
}

.service-cta i {
  transition: transform 0.3s ease;
}

.service-cta:hover i {
  transform: translateX(3px);
}

/* Responsive Grid */
.service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-section {
    padding: 3rem 0;
  }

  .category-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }

  .service-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .service-section {
    padding: 2rem 0;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .card-body {
    padding: 1.25rem;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-icon i {
    font-size: 1.2rem;
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 1s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

/* Accessibility Improvements */
.service-card:focus-within {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.service-cta:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .service-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .service-cta {
    display: none;
  }
}

/* Contact section */
.contact-section {
  background-color: var(--light-color);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #ecba56, var(--accent-color), var(--primary-color));
}

.contact-info {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-title {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.contact-details {
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: rgba(236, 240, 241, 0.5);
  transition: var(--transition-normal);
}

.contact-details:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-5px);
}

.contact-details strong {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-details a {
  color: #ecba56;
  text-decoration: none;
  transition: var(--transition-normal);
}

.contact-details a:hover {
  color: var(--accent-color);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer .small {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer a {
  transition: var(--transition-normal);
}

.footer a:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from { 
    opacity: 0;
    transform: translateY(-20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make service cards equal height in each row */
.row {
  margin-bottom: 2rem;
}

.row:last-child {
  margin-bottom: 0;
}

/* Responsive styles - Mobile First approach */
/* Base styles are for mobile, then we scale up */

/* Small devices (landscape phones) */
@media (min-width: 576px) {
  .main-title {
    font-size: 3rem;
  }
  
  .subtitle {
    font-size: 1.3rem;
  }
  
  .category-title {
    font-size: 2rem;
  }
  
  .sub-service h3 {
    font-size: 1.5rem;
  }
  
  .btn-warning {
    padding: 0.8rem 2.2rem;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
  .main-title {
    font-size: 3.25rem;
  }
  
  .sub-service {
    padding: 2.5rem;
  }
  
  .contact-info {
    padding: 0rem;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
  .main-title {
    font-size: 3.5rem;
  }
  
  .category-title {
    font-size: 2.2rem;
  }
  
  .service-section {
    padding: 6rem 0;
  }
  
  .sub-service {
    padding: 2.8rem;
  }
}

/* Extra large devices */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .main-title {
    font-size: 3.75rem;
  }
  
  .service-section {
    padding: 7rem 0;
  }
}

/* For very small mobile devices */
@media (max-width: 375px) {
  .main-title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .category-title {
    font-size: 1.5rem;
  }
  
  .sub-service {
    padding: 1.5rem;
  }
  
  .sub-service h3 {
    font-size: 1.3rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
  }
}

/* Utility classes */
.animate-fade-in {
  animation: fadeIn 1s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

/* Enhanced Card Styling */
.card-wrapper.sub-service {
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  overflow: hidden;
  height: 100%;
}

.card-wrapper.sub-service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #ecba56, var(--accent-color));
  transition: height 0.5s ease;
}

.card-wrapper.sub-service:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-wrapper.sub-service:hover:before {
  height: 100%;
}

.service-icon-wrapper {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.card-wrapper.sub-service:hover .service-icon-wrapper {
  transform: scale(1.1);
}

.card-underline {
  width: 50px;
  height: 3px;
  background: #ecba56;
  margin: 10px 0 20px;
  transition: width 0.3s ease;
}

.card-wrapper.sub-service:hover .card-underline {
  width: 80px;
}

.sub-service .card-title {
  position: relative;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card-wrapper.sub-service:hover .card-title {
  color: #ecba56;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.service-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-features li:before {
  content: "✓";
  color: #ecba56;
  position: absolute;
  left: 0;
  font-weight: bold;
  transition: all 0.3s ease;
}

.card-wrapper.sub-service:hover .service-features li:before {
  transform: scale(1.2);
}

.card-wrapper.sub-service:hover .service-features li {
  transform: translateX(5px);
}

/* Categories Animation */
.category-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.category-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #ecba56;
  transition: width 0.5s ease;
}

.category-title:hover:after {
  width: 120px;
}

/* Animation Delays for Card Effects */
.animate__delay-1s {
  animation-delay: 0.2s !important;
}

.animate__delay-2s {
  animation-delay: 0.4s !important;
}

/* Service Card Responsive Improvements */
@media (max-width: 768px) {
  .card-wrapper.sub-service {
    padding: 2rem;
  }
  
  .service-icon-wrapper {
    margin-bottom: 1rem;
  }
  
  .sub-service .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .card-wrapper.sub-service {
    padding: 1.5rem;
  }
  
  .card-underline {
    margin: 5px 0 15px;
  }
  
  .service-features li {
    margin-bottom: 0.8rem;
  }
}

/* Enhanced Hero Section */
.header1 {
  min-height: 90vh !important;
  height: 90vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('../images/photo-1522849696084-818b29dfe210.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
}

/* Remove hero pattern and floating icons */
.hero-pattern,
.floating-icons,
.floating-icon {
  display: none !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 90vh;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.82)
  );
  z-index: 1;
  transform: translateX(0);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  min-height: 90vh;
  margin: 0;
  overflow: hidden;
}

.hero-text {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
}

.hero-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: rgba(236, 186, 86, 0.15);
  border: 1px solid rgba(236, 186, 86, 0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: slideInDown 1s ease;
  box-shadow: 0 0 20px rgba(236, 186, 86, 0.2);
}

.hero-badge:hover {
  background: rgba(236, 186, 86, 0.25);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(236, 186, 86, 0.3);
}

.hero-badge i {
  color: #ecba56;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.hero-text h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); /* Enhanced text shadow */
  animation: fadeInScale 1.2s ease;
  width: 100%;
  letter-spacing: -1px;
  font-weight: 800;
  background: linear-gradient(45deg, #ffffff 30%, #ecba56 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientText 5s ease infinite;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-text p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 1); /* Made fully opaque */
  animation: fadeInUp 1s ease 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
  width: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Enhanced text shadow */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.feature-item {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  background: rgba(236, 186, 86, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  border: 1px solid rgba(236, 186, 86, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  background: rgba(236, 186, 86, 0.2);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(236, 186, 86, 0.3);
}

.feature-item i {
  color: #ecba56;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1) rotate(5deg);
  color: #ecba56;
}

.hero-buttons {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

.hero-buttons .btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.hero-buttons .btn-warning {
  background: linear-gradient(45deg, #ecba56, #dba846);
  border-color: #ecba56;
  color: #000 !important;
}

.hero-buttons .btn-warning:hover {
  background: linear-gradient(45deg, #dba846, #ecba56);
  border-color: #dba846;
  color: #000 !important;
}

.hero-buttons .btn-warning i {
  color: #000 !important;
}

.hero-buttons .btn-warning:hover i {
  color: #000 !important;
}

.hero-buttons .btn-outline-warning {
  border: 2px solid #ecba56;
  color: #ecba56;
}

.hero-buttons .btn-outline-warning:hover {
  background: linear-gradient(45deg, #ecba56, #dba846);
  border-color: #ecba56;
}

.hero-buttons .btn .mbr-iconfont {
  color: white;
  font-size: 1.2rem;
}

.hero-buttons .btn-outline-warning:hover .mbr-iconfont {
  color: var(--primary-color);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 152, 0, 0.15);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 152, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: auto;
  min-width: 180px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
  background: rgba(255, 152, 0, 0.25);
  border-color: rgba(255, 152, 0, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.scroll-icon {
  font-size: 1.5rem;
  color: #ff9800;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .header1 {
    width: 100vw;
    min-height: 90vh !important;
    height: 90vh;
    background-attachment: scroll;
    left: 0;
    margin: 0;
    padding: 0;
  }
  
  .hero-content {
    padding: 6rem 1rem 2rem;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }

  .hero-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.2rem;
  }

  .feature-item {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .hero-features {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .feature-item {
    width: 100%;
    margin: 0.3rem 0;
  }

  .hero-badge {
    width: 100%;
    max-width: 280px;
    margin-bottom: 0.8rem;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }

  .btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header1 {
    padding: 0;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: unset;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    white-space: normal;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-warning, .btn-outline-warning {
    min-width: unset;
    width: 100%;
    margin: 0;
  }

  .btn i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
}

@media (max-width: 375px) {
  .hero-buttons {
    padding: 0 0.8rem;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }

  .btn i {
    font-size: 1rem;
  }

  .btn-warning, .btn-outline-warning {
    padding: 0.6rem 0.8rem;
  }
}

/* Fix for landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    padding: 1rem 0;
    min-height: auto;
  }

  .hero-text {
    padding: 1rem;
  }

  .hero-features {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .feature-item {
    width: calc(33.33% - 1rem);
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-buttons {
    flex-direction: row;
    padding: 0 1rem;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 160px;
  }
}

/* Fix for navigation in mobile */
@media (max-width: 768px) {
  .navbar-collapse {
    background: var(--primary-color);
    padding: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }

  .nav-link {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-buttons {
    margin-top: 1rem;
    width: 100%;
  }

  .navbar-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Ensure smooth scrolling for the explore button */
html {
  scroll-behavior: smooth;
}

/* Dental Icons Background */
.dental-icons-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
}

.dental-icon {
  position: absolute;
  color: rgba(255, 152, 0, 0.3);
  font-size: 2rem;
  animation: floatIcon 8s ease-in-out infinite;
}

/* Position dental icons */
.dental-icon:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  font-size: 2.5rem;
}

.dental-icon:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
  font-size: 3rem;
}

.dental-icon:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
  font-size: 2.8rem;
}

.dental-icon:nth-child(4) {
  top: 40%;
  right: 25%;
  animation-delay: 3s;
  font-size: 2.2rem;
}

.dental-icon:nth-child(5) {
  bottom: 30%;
  right: 10%;
  animation-delay: 4s;
  font-size: 2.6rem;
}

.dental-icon:nth-child(6) {
  top: 60%;
  left: 15%;
  animation-delay: 5s;
  font-size: 2.4rem;
}

.dental-icon:nth-child(7) {
  top: 10%;
  left: 40%;
  animation-delay: 6s;
  font-size: 2.3rem;
}

.dental-icon:nth-child(8) {
  bottom: 15%;
  right: 35%;
  animation-delay: 7s;
  font-size: 2.7rem;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(15px) rotate(-5deg);
  }
}

/* Responsive adjustments for dental icons */
@media (max-width: 768px) {
  .dental-icon {
    font-size: 1.8rem;
  }
  
  .dental-icon:nth-child(odd) {
    font-size: 2rem;
  }
  
  .dental-icon:nth-child(even) {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .dental-icon {
    font-size: 1.5rem;
  }
  
  .dental-icon:nth-child(odd) {
    font-size: 1.8rem;
  }
  
  .dental-icon:nth-child(even) {
    font-size: 1.4rem;
  }
}

/* Remove scroll indicator */
.hero-scroll-indicator {
  display: none !important;
}

.scroll-text, .scroll-icon {
  display: none !important;
}

/* Container adjustments */
.container-fluid {
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100vw;
}

.row {
  margin: 0;
  padding: 0;
  width: 100vw;
}

/* Override column padding in hero section */
.header1 .row > [class*="col-"] {
  padding: 0;
  margin: 0;
}

.header1 .col-12,
.header1 .col-lg-12,
.header1 .col-md-12,
.header1 .col-sm-12 {
  padding: 0 !important;
  margin: 0 !important;
} 

/* Reset specific styles */
.header1 {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Create a proper container that fits full width */
.header1 .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: visible !important;
  position: static !important;
}

.header1 .row {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header1 .col-12 {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Fix the hero content and overlay */
.hero-content {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 6rem 0 !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.82));
  z-index: 1 !important;
  transform: none !important;
}

/* Ensure text container stays centered and readable */
.hero-text {
  position: relative;
  z-index: 5;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Fix potential horizontal scrolling */
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Fix all sections to be properly centered */
section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
}

/* Global reset for centering content */
.container {
  max-width: 1320px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  width: 100%;
}

/* Ensure all section content is properly centered */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: center !important;
}

/* Center all headings and text */
.mbr-section-title,
.category-title,
h1,
h2,
h3,
h4,
h5,
h6,
.card-title,
.line-wrap {
  text-align: center !important;
}

/* Center card content */
.card-wrapper.sub-service {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-wrapper {
  display: flex;
  justify-content: center;
}

.card-underline {
  margin-left: auto;
  margin-right: auto;
}

/* Keep feature list text left-aligned for readability */
.service-features {
  text-align: left;
  padding-left: 2rem;
  list-style-position: inside;
  margin-top: auto;
}

/* Center the title underline */
.category-title {
  position: relative;
  margin-bottom: 2rem;
}

.category-title:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

/* Equal height cards */
.card {
  height: 100%;
}

/* Consistent spacing */
.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

/* Fix mobile display */
@media (max-width: 767px) {
  .card {
    margin-bottom: 1rem;
  }
}

/* Force center alignment for all content */
body,
html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Reset all Mobirise container settings */
.container,
.container-fluid {
  width: 100% !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  float: none !important;
  position: relative !important;
  left: 0 !important;
}

/* Override any possible float or positioning */
.row,
.mbr-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
  position: static !important;
  transform: none !important;
  left: 0 !important;
  width: auto !important;
  max-width: 100% !important;
}

/* Fix section widths */
section {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative !important;
  left: 0 !important;
}

/* Premium Areas of Care Section */
.article03 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.02), rgba(236, 186, 86, 0.02));
}

.article03:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(236, 186, 86, 0.05) 0%, rgba(236, 186, 86, 0) 70%);
  z-index: 0;
  transform: rotate(-45deg);
}

.article03:after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, rgba(44, 62, 80, 0) 70%);
  z-index: 0;
  transform: rotate(45deg);
}

.article03 .content-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(236, 186, 86, 0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
}

.article03 .content-wrapper:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.article03 .content-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236, 186, 86, 0.1) 0%, rgba(236, 186, 86, 0) 70%);
  border-radius: 0 0 0 200px;
  z-index: 0;
}

.article03 .content-wrapper:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(44, 62, 80, 0.05) 0%, rgba(44, 62, 80, 0) 70%);
  border-radius: 0 150px 0 0;
  z-index: 0;
}

.article03 .title-wrapper {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.article03 .mbr-section-title {
  font-size: 3rem;
  color: var(--primary-color) !important;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.article03 .mbr-section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  transition: all 0.4s ease;
}

.article03 .content-wrapper:hover .mbr-section-title:after {
  width: 100%;
}

.article03 .mbr-section-subtitle {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 25px;
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.article03 .mbr-section-subtitle:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
  opacity: 0.5;
}

.article03 .text-wrapper {
  position: relative;
  z-index: 1;
}

.article03 .mbr-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  letter-spacing: 0.3px;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--secondary-color);
}

.article03 .mbr-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 767px) {
  .article03 {
    padding: 60px 0;
  }

  .article03 .content-wrapper {
    padding: 40px 30px;
  }

  .article03 .mbr-section-title {
    font-size: 2.2rem;
  }

  .article03 .mbr-section-subtitle {
    font-size: 1.4rem;
  }

  .article03 .mbr-text {
    font-size: 1.1rem;
    padding-left: 15px;
  }
}

/* Enhanced Card Styling */
.card {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  background: #fff;
  transform: translateY(0);
  position: relative;
}

.card:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  opacity: 0;
  transition: all 0.3s ease;
}

.card:hover:after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.card-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Service Icon Enhancement */
.service-icon-wrapper {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(236, 186, 86, 0.15), rgba(236, 186, 86, 0.05));
  border-radius: 20px;
  margin: 0 auto 20px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.service-icon-wrapper:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(236, 186, 86, 0.2) 0%, rgba(236, 186, 86, 0) 70%);
  opacity: 0;
  transition: all 0.5s ease;
}

.card:hover .service-icon-wrapper:before {
  opacity: 1;
  transform: scale(1.2);
}

.card:hover .service-icon-wrapper {
  transform: rotate(10deg);
  background: linear-gradient(135deg, rgba(236, 186, 86, 0.25), rgba(236, 186, 86, 0.1));
  border-radius: 50%;
}

.mbr-iconfont {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.card:hover .mbr-iconfont {
  transform: scale(1.2);
}

/* Improved Service Features */
.service-features {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin-top: 25px;
  padding-top: 25px;
  padding-left: 10px;
}

.service-features li {
  position: relative;
  padding: 10px 0 10px 35px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.service-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 186, 86, 0.2), rgba(236, 186, 86, 0.1));
  transition: all 0.3s ease;
}

.service-features li:after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 10px;
  font-size: 12px;
  color: var(--secondary-color);
  font-weight: bold;
}

.card:hover .service-features li:before {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(236, 186, 86, 0.3);
}

.service-features li:hover {
  transform: translateX(5px);
}

/* Category Title Refinement */
.category-title {
  position: relative;
  display: inline-block;
  padding: 5px 20px 15px;
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(236, 186, 86, 0.5), transparent);
}

.category-title:after {
  width: 50px;
  height: 4px;
  bottom: 0;
  background: var(--secondary-color);
  box-shadow: 0 0 10px rgba(236, 186, 86, 0.5);
}

/* Enhance Call-to-Action Elements */
.hero-buttons .btn {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: all 0.8s ease;
}

.hero-buttons .btn:hover:before {
  transform: translateX(100%);
}

.hero-buttons .btn-warning {
  box-shadow: 0 10px 20px rgba(236, 186, 86, 0.3);
}

.hero-buttons .btn-warning:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(236, 186, 86, 0.4);
}

.hero-buttons .btn-outline-warning:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Hero Section Enhancements */
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(236, 186, 86, 0.9);
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.hero-section-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
  justify-content: center;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
  background: rgba(236, 186, 86, 0.2);
  transform: translateY(-5px);
  border-color: rgba(236, 186, 86, 0.3);
}

.feature-item i {
  margin-right: 8px;
  color: var(--secondary-color);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 5;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.hero-scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-text {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Contact Section Enhancements */
.contacts01 {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.02), rgba(236, 186, 86, 0.02));
  padding: 80px 0;
}

.contacts01 .title-wrapper {
  margin-bottom: 50px;
}

.contacts01 .mbr-section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.contacts01 .mbr-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.contacts01 .item {
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contacts01 .item:hover {
  transform: translateY(-5px);
}

.contacts01 .item-wrapper {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.contacts01 .item:hover .item-wrapper {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contacts01 .contact-wrapper {
  padding: 25px;
}

.contacts01 .contact-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contacts01 .mbr-iconfont {
  font-size: 24px;
  color: var(--secondary-color);
  background: rgba(236, 186, 86, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contacts01 .item:hover .mbr-iconfont {
  background: var(--secondary-color);
  color: #fff;
  transform: rotate(360deg);
}

.contacts01 .card-title {
  margin: 0;
  color: var(--primary-color);
}

/* Navigation Enhancement */
.navbar {
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 10px;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover:after {
  width: 70%;
}

/* Global Enhancements */
body {
  scroll-behavior: smooth;
}

a {
  transition: all 0.3s ease;
}

.animate__animated {
  animation-duration: 0.8s;
}

/* Map enhancement */
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Footer Enhancement */
.footer01 {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
}

.footer01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ECBA56, transparent);
}

.footer-info {
  margin-bottom: 30px;
}

.footer-logo {
  width: 120px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.footer-desc {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  color: #ECBA56;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  text-align: left !important;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ECBA56;
}

.footer-links ul {
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ECBA56;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #ECBA56;
  margin-right: 10px;
  font-size: 1.1rem;
  width: 20px;
}

.footer-contact a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #ECBA56;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: #999999;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.credits {
  color: #999999;
  font-size: 0.9rem;
}

.credits a {
  color: #ECBA56;
  text-decoration: none;
  transition: all 0.3s ease;
}

.credits a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer01 {
    padding: 40px 0 20px;
  }
  
  .footer-info, .footer-links, .footer-contact {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer-title {
    margin-bottom: 15px;
  }
  
  .footer-bottom {
    margin-top: 20px;
  }
  
  .footer-logo {
    width: 100px;
  }
}

@media (max-width: 575px) {
  .footer01 {
    padding: 30px 0 15px;
  }
  
  .footer-desc {
    font-size: 0.9rem;
  }
  
  .footer-links a, .footer-contact p {
    font-size: 0.9rem;
  }
}

/* Service Section Specific Styles */
.extFeatures {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.08), rgba(236, 186, 86, 0.1));
  overflow: hidden;
  border-top: 1px solid rgba(236, 186, 86, 0.15);
  border-bottom: 1px solid rgba(236, 186, 86, 0.15);
}

/* Modern background pattern with dental-themed motifs */
.extFeatures::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(236, 186, 86, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(139, 69, 19, 0.12) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B4513' fill-opacity='0.04'%3E%3Cpath d='M35 35c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm30 0c0-3.866-3.134-7-7-7s-7 3.134-7 7 3.134 7 7 7 7-3.134 7-7zM35 65c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* Floating shapes animation with enhanced effect */
.extFeatures::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(236, 186, 86, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(236, 186, 86, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 25% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 30%),
    radial-gradient(ellipse at 75% 20%, rgba(236, 186, 86, 0.08) 0%, transparent 30%);
  z-index: 0;
  pointer-events: none;
  animation: floatBackground 20s ease-in-out infinite alternate;
  filter: blur(40px);
}

@keyframes floatBackground {
  0% {
    background-position: 0% 0%;
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    background-position: 100% 100%;
    opacity: 0.7;
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 2px 10px rgba(139, 69, 19, 0.15);
  }
  50% {
    text-shadow: 0 4px 20px rgba(236, 186, 86, 0.3);
  }
  100% {
    text-shadow: 0 2px 10px rgba(139, 69, 19, 0.15);
  }
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 2px 10px rgba(236, 186, 86, 0.2);
    width: 100px;
  }
  50% {
    box-shadow: 0 4px 20px rgba(236, 186, 86, 0.4);
    width: 120px;
  }
  100% {
    box-shadow: 0 2px 10px rgba(236, 186, 86, 0.2);
    width: 100px;
  }
}

.extFeatures .container {
  padding: 0 15px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced semi-transparent overlay for better text legibility */
.extFeatures .row:first-child {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.extFeatures .row:first-child::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 20px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

/* Card Grid System */
.extFeatures .row {
  margin: 0 -8px;
}

.extFeatures .col-12,
.extFeatures .col-md-6 {
  padding: 8px;
}

/* Enhanced Card Styling with modern glass effect */
.extFeatures .card {
  height: 100%;
  margin: 0;
  border-radius: 16px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(236, 186, 86, 0.25);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.extFeatures .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scaleX(0.9) translateY(-5px);
  border-radius: 0 0 5px 5px;
}

.extFeatures .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(236, 186, 86, 0.2), 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(236, 186, 86, 0.4);
}

.extFeatures .card:hover::before {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.extFeatures .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.extFeatures .service-icon-wrapper {
  height: 50px;
  width: 50px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(236, 186, 86, 0.15), rgba(236, 186, 86, 0.05));
  border-radius: 12px;
  transition: all 0.3s ease;
}

.extFeatures .card-title {
  font-size: 1.3rem;
  margin: 12px 0;
  line-height: 1.3;
  color: var(--primary-color);
  font-weight: 600;
}

.extFeatures .card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #555;
}

.extFeatures .service-features {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  list-style: none;
  padding-left: 0;
}

.extFeatures .service-features li {
  padding: 8px 0 8px 25px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  position: relative;
  color: #666;
}

.extFeatures .service-features li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.extFeatures .service-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), rgba(236, 186, 86, 0.3));
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(236, 186, 86, 0.2);
}

.extFeatures .service-features li:after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 8px;
  font-size: 11px;
  color: #fff;
  font-weight: bold;
}

/* Category Title Enhancement with dramatic effect */
.extFeatures .category-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  padding-bottom: 18px;
  position: relative;
  color: var(--primary-color);
  text-align: center;
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(139, 69, 19, 0.15);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.extFeatures .category-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(236, 186, 86, 0.3);
  animation: borderPulse 3s ease-in-out infinite;
  border-radius: 1.5px;
  box-shadow: 0 2px 5px rgba(236, 186, 86, 0.3);
}

/* Add a subtle animation to category titles */
.extFeatures .category-title {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .extFeatures {
    padding: 30px 0;
  }

  .extFeatures .container {
    padding: 0 12px;
  }

  .extFeatures .category-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .extFeatures .card {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .extFeatures {
    padding: 25px 0;
  }

  .extFeatures .container {
    padding: 0 10px;
  }

  .extFeatures .row {
    margin: 0 -6px;
  }

  .extFeatures .col-12,
  .extFeatures .col-md-6 {
    padding: 6px;
  }

  .extFeatures .card {
    padding: 15px 12px;
    border-radius: 10px;
  }

  .extFeatures .card-title {
    font-size: 1.2rem;
    margin: 10px 0;
  }

  .extFeatures .card-text {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .extFeatures .service-features li {
    padding: 6px 0 6px 22px;
    font-size: 0.85rem;
  }

  .extFeatures .service-features li:before {
    width: 16px;
    height: 16px;
    top: 10px;
  }

  .extFeatures .service-features li:after {
    left: 4px;
    top: 6px;
    font-size: 10px;
  }

  .extFeatures .category-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .extFeatures {
    padding: 20px 0;
  }

  .extFeatures .container {
    padding: 0 8px;
  }

  .extFeatures .card {
    padding: 12px 10px;
  }

  .extFeatures .service-icon-wrapper {
    height: 45px;
    width: 45px;
    margin: 8px auto;
  }

  .extFeatures .category-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}

.service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  /* 16:9 Aspect Ratio */
}

.card-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.service-features li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}

.service-features li strong {
  color: var(--secondary-color);
}

.category-title {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .card-img-wrapper {
    padding-top: 75%;
    /* 4:3 Aspect Ratio for mobile */
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }
}

/* Services Page Contact Section Styles */
.services-contact-section {
    padding: 60px 0;
    background-color: #191100;
    position: relative;
}

.services-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ECBA56, transparent);
}

.services-contact-section .contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.services-contact-section .contact-info:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services-contact-section .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECBA56;
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.services-contact-section .contact-info:hover .icon-wrapper {
    transform: scale(1.1);
}

.services-contact-section .icon-wrapper i {
    color: #191100;
    font-size: 1.4rem;
}

.services-contact-section .contact-text {
    flex-grow: 1;
}

.services-contact-section .contact-title {
    color: #ECBA56;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.services-contact-section .contact-details {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.services-contact-section .contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-contact-section .contact-details a:hover {
    color: #ECBA56;
}

.services-contact-section .map-wrapper {
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.services-contact-section .map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ECBA56;
    border-radius: 20px;
    opacity: 0.3;
}

.services-contact-section .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .services-contact-section .map-wrapper {
        margin-top: 2rem;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .services-contact-section {
        padding: 40px 0;
    }

    .services-contact-section .contact-info {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .services-contact-section .icon-wrapper {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }

    .services-contact-section .icon-wrapper i {
        font-size: 1.2rem;
    }

    .services-contact-section .contact-title {
        font-size: 1.1rem;
    }

    .services-contact-section .contact-details {
        font-size: 1rem;
    }

    .services-contact-section .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .services-contact-section .map-wrapper {
        height: 300px;
    }
}
.contacts1 {
    padding: 60px 0;
    background-color: #191100;
    position: relative;
}

.contacts1 .contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contacts1 .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contacts1 .icon-wrapper i {
    color: #ECBA56;
    font-size: 1.5rem;
}

.contacts1 .contact-text {
    flex-grow: 1;
}

.contacts1 .contact-title {
    color: #ECBA56;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contacts1 .contact-details-card {
    background-color: rgba(128, 128, 128, 0.2);
    padding: 1rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.contacts1 .contact-details-card a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts1 .contact-details-card a:hover {
    color: #ECBA56;
}

.contacts1 .map-wrapper {
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(236, 186, 86, 0.2);
}

.contacts1 .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .contacts1 .map-wrapper {
        margin-top: 2rem;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contacts1 {
        padding: 40px 0;
    }

    .contacts1 .contact-info {
        margin-bottom: 1.5rem;
    }

    .contacts1 .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contacts1 .icon-wrapper i {
        font-size: 1.2rem;
    }

    .contacts1 .contact-title {
        font-size: 1.1rem;
    }

    .contacts1 .contact-details-card {
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    .contacts1 .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contacts1 .map-wrapper {
        height: 300px;
    }
}

/* Add staggered animation to service cards */
.extFeatures .card {
  animation: fadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

.extFeatures .col-12:nth-child(1) .card,
.extFeatures .col-md-6:nth-child(1) .card {
  animation-delay: 0.1s;
}

.extFeatures .col-12:nth-child(2) .card,
.extFeatures .col-md-6:nth-child(2) .card {
  animation-delay: 0.2s;
}

.extFeatures .col-12:nth-child(3) .card,
.extFeatures .col-md-6:nth-child(3) .card {
  animation-delay: 0.3s;
}

.extFeatures .col-12:nth-child(4) .card,
.extFeatures .col-md-6:nth-child(4) .card {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
