/* Reset all default margin and padding, and set box-sizing to border-box */
*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}

/* Set base body font and remove default margin */
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Desktop layout: main navigation wrapper styles */
.main-nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 30px;
position: relative;
}

/* Hide the mobile nav toggle button by default */
.mobile-nav-toggle {
display: none;
background: none;
border: none;
}

/* Styles for the main nav bar */
nav {
background-color: white;
padding: 25px 0;
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation list container */
.navbar{
  display:flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

/* Individual list items inside navbar */
.navbar li {
  margin: 0 15px;
  color: black;
  cursor: pointer;
}

/* Style links inside nav items */
.navbar a{
color: black;
text-decoration: none;
}

/* Hover effect for nav list items */
.navbar li:hover {
  opacity: 0.8;
}

/* Logo styling */
.logo {
  color: rgb(9, 8, 8);
  font-size: 1.5em;
  text-decoration: none;
  font-weight: bold;
  padding-right: 50px;
  margin:10px;
}

/* Dropdown wrapper */
.dropdown {
position: relative;
}

/* Dropdown menu initially hidden and styled */
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background-color: white;
padding-top: 20px;  /* Pushes the entire dropdown content down */
list-style: none;
display: none;
width: 180px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
z-index: 999;
text-align: left;
border-top: 3px solid #002244;
}

/* Show dropdown on hover for desktop */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
display: block;
}

/* Individual dropdown menu items */
.dropdown-menu li a {
display: block;
padding: 12px 20px;
color: #000;
text-decoration: none;
font-weight: 600;
font-size: 14px;
}

/* Hover effect for dropdown links */
.dropdown-menu li a:hover {
background-color: #f5f5f5;
}

/* Mobile specific dropdown behavior */
@media (max-width: 768px) {
.dropdown-menu {
  display: none !important; /* Make sure it's hidden initially */
}

.dropdown.active .dropdown-menu {
  display: block !important; /* Only show when dropdown is active */
}
}

/* Fullscreen hero section with background image and overlay */
.hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Content inside the hero section */
.hero-content{
  text-align: center;
  color: whitesmoke;
  z-index: 2;
}

/* Main heading inside hero */
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Subheading or description inside hero */
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* General button style */
.btn {
  background-color: #f5de58;
  color: black;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button hover effect */
.btn:hover {
  background-color: #e0c22f;
}

/* Specific style for yellow button */
.btn-yellow {
background-color: #f5de58;
color: #000;
padding: 10px 20px;
border-radius: 5px;
font-weight: bold;
text-decoration: none;
}

/* Hover effect for yellow button */
.btn-yellow:hover {
background-color: #e0c22f;
}

/* Fullscreen background container for homepage content */
.home-page_content {
  background: linear-gradient(45deg, 
    rgba(15, 23, 42, 0.9) 20%, 
    rgba(15, 23, 42, 0.85) 40%, 
    rgba(15, 23, 42, 0.92) 60%, 
    rgba(15, 23, 42, 0.88) 80%
  );
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

/* Inner content wrapper with border and spacing */
.inside-content_homePage {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items to top */
  border: 1px solid #f5de58;
  border-radius: 0% 5% 0% 5%;
  padding: 30px;
  width: 90%;
  max-width: 1000px;
  height: auto;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  gap: 40px;
}

/* Text section inside homepage content */
.text-section {
  flex: 1;
  text-align: left;
}

/* Paragraphs in text section */
.text-section p {
  margin: 20px 0;
  line-height: 1.6;
}

/* Custom list styling */
.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* Individual features */
.features-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Highlighted quote */
blockquote {
  font-style: italic;
  margin-top: 20px;
  border-left: 4px solid #f5de58;
  padding-left: 15px;
  color: #f5de58;
}

/* Styled profile image */
.profile-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #f5de58;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .inside-content_homePage {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
  }

  .profile-img {
    margin-top: 20px;
  }
}

/* ========================= Review Section Open ========================= */
.review-section {
  padding: 60px 20px;
  background-color: #fafafa;
}

/* Container for aligning review heading and cards */
.review-flex-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  align-items: center; /* Vertically center the content */
  justify-content: space-between;
}

/* Centered review section heading */
.review-heading {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main heading styling */
.review-heading h1 {
  font-family: 'Roboto', sans-serif; /* Custom font */
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

/* Subheading text */
.review-heading .subtext {
  font-size: 16px;
  color: #777;
}

/* Review cards container */
.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* ========================= Review Cards ========================= */

/* Base styling for each card */
.review-card {
  padding: 25px;
  border-radius: 20px;
  background: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  flex: 1 1 45%; /* default desktop view */
  max-width: 45%;
}

/* Hover effect */
.review-card:hover {
  transform: translateY(-5px);
}

/* Special background for Card 1 */
.review-card:nth-child(1) {
  background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
}

/* Special background for Card 2 */
.review-card:nth-child(2) {
  background: linear-gradient(to bottom right, #e8f5e9, #ffffff);
}

/* Card 3 takes full width */
.review-card:nth-child(3) {
  flex: 1 1 100%;
  max-width: 90%;
}

/* Paragraph inside cards */
.review-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Reviewer name or designation */
.review-card h4 {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-top: 10px;
}

/* Star icon styling */
.stars {
  color: #f2b01e;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Star rating value */
.stars-rating {
  font-size: 24px;
  color: #f2b01e; /* Golden color for stars */
  margin-bottom: 10px;
}

/* ========================= Cosmetic, Surgical and General Treatments ========================= */

/* Main heading for smile treatment section */
.smile-heading {
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-style: italic;
  font-size: 2.5rem;
  color: #4d4d4d; 
  text-align: center; /* Optional: center the heading */
  margin-top: 50px;
  margin-bottom: 100px;
}

/* Section padding and background */
.services-section {
  padding: 60px 20px;
  background-color:  rgb(244, 246, 243); /* Light brown color */
}

/* Flex container for services */
.services-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual service card */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 30%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

/* Hover animation for service cards */
.service-card:hover {
  transform: translateY(-5px);
}

/* Image inside service card */
.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Container for text content */
.card-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Service title */
.card-text h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

/* Description text */
.card-text p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* "Learn More" or similar CTA link */
.about-link {
  margin-top: auto; /* Pushes the button to the bottom */
  display: inline-block;
  padding: 10px 15px;
  background-color: transparent;
  border: 1px solid #c4a266;
  color: #c4a266;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  text-align: center;
}

/* Hover effect for about-link */
.about-link:hover {
  background-color: #c4a266;
  color: #fff;
}

/* Visit Us Page Section Styles */
.visit-us {
  background-color: #f8f9fa;
  padding: 80px 20px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  color: #2d3748;
}

/* Container for the entire Visit Us section */
.visit-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styling for Visit Us section */
.visit-us-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Main heading inside Visit Us header */
.visit-us-header h2 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a365d;
  position: relative;
  display: inline-block;
}

/* Underline below the heading */
.visit-us-header h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #4299e1;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Intro text styling */
.visit-us-header .intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  font-style: italic;
}

/* Content container for gallery and details */
.visit-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-left: 160px;
}

/* Gallery container */
.visit-us-gallery {
  flex: 1;
  min-width: 300px;
}

/* Main image in gallery */
.gallery-main {
  margin-bottom: 15px;
}

/* Featured/main image styling */
.featured-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Hover effect for main image */
.featured-image:hover {
  transform: scale(1.01);
}

/* Grid layout for thumbnail images */
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Thumbnail image styling */
.gallery-thumbnails img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hover effect for thumbnails */
.gallery-thumbnails img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact details section */
.visit-us-details {
  flex: 1;
  min-width: 300px;
}

/* Title for contact info */
.contact-title {
  font-size: 1.75rem;
  margin-bottom: 25px;
  color: #080909;
  font-weight: 500;
  font-style: italic;
  position: relative;
  padding-bottom: 10px;
}

/* Underline below contact title */
.contact-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #bee3f8;
  bottom: 0;
  left: 0;
}

/* Individual contact item layout */
.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

/* Icon in contact item */
.contact-item i {
  font-size: 1.2rem;
  color: #080817;
  margin-top: 3px;
}

/* Label above contact text */
.contact-label {
  font-weight: 600;
  color: #4a5568;
  display: block;
  margin-bottom: 5px;
  font-style: italic;
}

/* Text value of contact info */
.contact-text {
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Styling for opening hours days */
.hours-day {
  font-style: italic;
  color: #4a5568;
}

/* Padding tweaks for contact details */
.visit-us-details {
  flex: 1;
  min-width: 300px;
  padding-top: 20px;
  padding-left: 100px;
}

/* Links in contact section */
.visit-us-details a {
  color: #0d0e10;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Hover effect for contact links */
.visit-us-details a:hover {
  color: #090d11;
  text-decoration: underline;
}

/* Google Map container */
.google-map-container {
  margin-top: 120px;
  display: flex;
  justify-content: center;
}

/* Footer Styles */
.custom-footer {
  background: linear-gradient(45deg, 
      rgba(15, 23, 42, 0.9) 20%, 
      rgba(15, 23, 42, 0.85) 40%, 
      rgba(15, 23, 42, 0.92) 60%, 
      rgba(15, 23, 42, 0.88) 80%
  );
  color: white;
  padding: 50px 20px 0;
  font-family: 'Arial', sans-serif;
  position: relative;
}

/* Footer wrapper */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid layout for footer top content */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Each column in the footer */
.footer-column {
  margin-bottom: 20px;
}

/* Footer heading styles */
.footer-column h3 {
  color: #f1c359;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

/* Underline effect under heading */
.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #f1c359;
}

/* Unordered list in footer */
.footer-column ul {
  list-style: none;
}

/* List item spacing */
.footer-column ul li {
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Links in footer */
.footer-column a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0.9;
}

/* Hover effect for footer links */
.footer-column a:hover {
  color: #f1c359;
  opacity: 1;
}

/* Footer contact paragraph */
.footer-contact p {
  margin-bottom: 12px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Contact links in footer */
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

/* Hover for contact links */
.footer-contact a:hover {
  color: #f1c359;
}

/* Social icon wrapper */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

/* Social icon anchor hover */
.social-icons a {
  display: inline-block;
  transition: transform 0.3s;
}

/* Hover animation for icons */
.social-icons a:hover {
  transform: translateY(-3px);
}

/* Social icon image */
.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

/* Hover filter effect */
.social-icons a:hover img {
  filter: brightness(0) invert(0.8) sepia(1) saturate(5) hue-rotate(0deg);
}

/* Footer bottom section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.85rem;
}

/* Container for footer bottom */
.footer-bottom-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text inside footer bottom */
.footer-bottom p {
  margin: 5px 0;
  opacity: 0.8;
}

/* Footer bottom links */
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s;
}

/* Hover for bottom links */
.footer-bottom a:hover {
  color: #f1c359;
}

/* Pay Online button style future
.pay-online-btn {
  display: inline-block;
  background-color: #f1c359;
  color: #0f172a;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
} */

/* Hover effect for pay button */
.pay-online-btn:hover {
  background-color: #e0b34a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive: tablets and below */
@media (max-width: 768px) {
  .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
  }
  
  .footer-bottom-container {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }
  
  .footer-bottom a {
      margin: 0 10px;
  }
}

/* Responsive: mobile */
@media (max-width: 480px) {
  .footer-top {
      grid-template-columns: 1fr;
  }
  
  .footer-column {
      margin-bottom: 30px;
  }
  
  .footer-column h3 {
      margin-bottom: 15px;
  }
}


/* Mobile Navigation Styles - Updated */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 1001;
}

/* Mobile Navigation Styles - Updated */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 1001; /* Ensures toggle stays on top */
}

/* Mobile Menu Button */
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0 auto;
  margin-top: 13px; /* Vertically centers the button */
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out; /* Smooth transition for menu icon animation */
}

.hamburger span:nth-child(1) {
  top: 0px; /* Top line */
}

.hamburger span:nth-child(2) {
  top: 8px; /* Middle line */
}

.hamburger span:nth-child(3) {
  top: 16px; /* Bottom line */
}

/* Keeping body from scrolling when mobile menu is open */
body.no-scroll {
  overflow: hidden; /* Prevents background scrolling */
}

/* Updated Mobile Navigation Styles */
@media screen and (max-width: 992px) {
  .main-nav {
    flex-wrap: wrap; /* Wrap items in navigation */
  }

  .mobile-nav-toggle {
    display: block; /* Show toggle on mobile */
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2001;
  }

  .navbar {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: white;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    z-index: 2000;
  }

  .navbar.active {
    display: flex; /* Display nav when active */
  }

  .navbar li {
    width: 100%;
    text-align: center;
    padding: 15px 0; /* Spacing for nav items */
  }

  .logo {
    position: relative;
    z-index: 2002; /* Keeps logo above mobile nav */
  }
  
  .dropdown-menu {
    position: static; /* Keeps dropdown inline with menu */
    width: 100%;
    box-shadow: none;
    padding: 0;
    padding-right: 35px;
    margin-top: 15px;
  }
  
  .dropdown.active .dropdown-menu {
    display: block; /* Show dropdown when active */
  }
  
  /* For the active hamburger button */
  .mobile-nav-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg); /* Rotate for X icon */
  }
  
  .mobile-nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px; /* Hide middle bar */
  }
  
  .mobile-nav-toggle.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg); /* Rotate for X icon */
  }
}

/* Review Section - Mobile Adjustments */
@media (max-width: 768px) {
  .review-flex-container {
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Adds spacing between reviews */
  }

  .review-heading {
    max-width: 100%;
    padding: 0 10px;
  }

  .review-heading h1 {
    font-size: 26px;
  }

  .review-heading .subtext {
    font-size: 14px;
  }

  .review-cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .review-card {
    flex: 1 1 90% !important;
    max-width: 90%;
  }

  .review-card p {
    font-size: 15px;
  }

  .review-card h4 {
    font-size: 13px;
  }

  .stars-rating, .stars {
    font-size: 20px;
  }
}


/* Hero Section Responsive */
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem; /* Adjust heading size */
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
}

/* Home Page Content Responsive */
@media screen and (max-width: 768px) {
  .home-page_content {
    height: auto;
    padding: 60px 20px; /* Add breathing space */
  }
  
  .inside-content_homePage {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 25px;
  }
  
  .text-section {
    width: 100%;
  }
  
  .profile-img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  
  .features-list li {
    text-align: left;
  }
  
  blockquote {
    text-align: left;
  }
}

/* Services Section Responsive */
@media screen and (max-width: 768px) {
  .smile-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .services-container {
    flex-direction: column; /* Stack services vertically */
  }
  
  .service-card {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .service-card img {
    height: 200px;
  }
}

/* Visit Us Section Responsive */
@media screen and (max-width: 992px) {
  .visit-us-content {
    margin-left: 0;
    justify-content: center;
  }
  
  .visit-us-details {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .visit-us {
    padding: 40px 15px;
  }
  
  .visit-us-header h2 {
    font-size: 1.8rem;
  }
  
  .visit-us-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .featured-image {
    height: 250px;
  }
  
  .google-map-container {
    margin-top: 60px;
  }
  
  .google-map-container iframe {
    width: 100%;
    height: 200px;
  }
}

/* General Responsive Design */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.8rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.3rem !important;
  }
  
  p {
    font-size: 0.95rem !important;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  
  .btn-yellow {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Medium screen adjustments */
@media screen and (min-width: 769px) and (max-width: 992px) {
  .service-card {
    width: 48%; /* Two cards per row */
  }
  
  .services-container {
    justify-content: center;
    gap: 30px;
  }
}
