body {
    background: linear-gradient(180.2deg, rgb(30, 33, 48) 6.8%, rgb(74, 98, 110) 131%);
    color: white;
    font-family: 'Roboto', sans-serif;
     display: none;
}


/* B/* ----- Navigation Bar ----- */


h1{
    margin: 10px;
    margin-bottom: 30px; /* Adjust this value as needed */
}

p {
    margin: 10px;
    margin-bottom: 20px; /* Adjust this value as needed */
}

h2{
    margin: 10px;
   
}

h3 {
    margin: 10px;
}

a {
    color: white;
    text-decoration: none;
}





.trusted-partner {
    font-size: 20px;
    margin-top: -15px;
    font-style: italic;
}


.phone {
   font-weight: bold;
  color: white;
  margin-right: 20px;
  font-size: 20px; 
                /* optional, remove default spacing */
}

.phone a {
    color: white;           /* match your text color */
    text-decoration: none;  /* remove underline */
}

.phone a:hover {
    text-decoration: underline; /* optional hover effect */
}

.phone-bottom {
          /* default font size */
    color: white;
    margin: 0;            /* optional, remove default spacing */
    text-align: left;    /* aligns to right on larger screens */
}

.phone-bottom a {
    color: white;          
    text-decoration: none; 
}

.phone-bottom a:hover {
    text-decoration: underline; 
}
/* Medium screens (tablets) */
@media (max-width: 768px) {
    .phone {
        font-size: 16px;   /* slightly smaller */
        float: none;       /* stack naturally */
        text-align: center; /* center the text */
        margin-top: 10px;  /* spacing from other elements */
    }
}

/* Small screens (mobile phones) */
@media (max-width: 480px) {
    .phone {
        font-size: 14px;   /* even smaller for mobile */
        float: none;       
        text-align: center;
        margin-top: 5px;
    }
}

.introduction {
    padding: 20px;
    margin-top: 20px;
}

html {
  scroll-behavior: smooth; /* for smooth scrolling effect */
  scroll-padding-top: 200px; /* matches header height */
}
/* ---------- Projects Grid ---------- */
.my-projects {
  text-align: center;
 
}

.my-projects h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #f58eb0;
}

/* Grid container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
  gap: 20px; /* spacing between items */
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Grid items */
.grid-item {
  background: #fa3838;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.2s ease;
  color: black;
  text-align: center;
}

.grid-item:hover {
  transform: scale(1.03);
}

/* Project images inside grid */
.project {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Grid item titles */
.grid-item h3 {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: #333;
}

/* ---------- Responsive ---------- */
/* Medium screens (tablet) */
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .my-projects h2 {
    font-size: 1.6rem;
  }
}

/* Small screens (mobile) */
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .grid-item {
    padding: 0.8rem;
  }
}

/* Dropdown button */






/* Dropdown content (hidden by default) */

/* Links inside the dropdown */


/* Add a grey background color to dropdown links on hover */


/* Show the dropdown menu on hover */


.flex-container {
  display: flex;
   /* Responsive grid */
  gap: 10px;
}




   .projects {
  border-radius: 15px;
  width: 200px;
}


.my-projects {
  text-align: center;
  padding: 2rem 1rem;
 
}

.my-projects h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #f58eb0;
}





.grid-item {
  background: #fa3838;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.2s ease;
  color: black;
}

.grid-item:hover {
  transform: scale(1.03);
}

.project {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Adjust text styles */
.grid-item h3 {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: #333;
}

/* ✅ Responsive tweaks */
@media (max-width: 768px) {
  .my-projects h2 {
    font-size: 1.6rem;
  }

  .grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

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

  .grid-item {
    padding: 0.8rem;
  }
}

/* Ensure parent container is full width */
.why-choose-us {
  width: 100%;
  padding-left: 10px;   /* optional side padding */
  padding-right: 10px;
  margin: 0;
  box-sizing: border-box;
}

/* Grid: 2 columns on desktop */
.grid-container-whychooseus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Grid items */
.grid-item-whychooseus {
  background: #2397f6fc;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.grid-item-whychooseus:hover {
  transform: scale(1.03);
}

/* Responsive: 1 column on smaller screens */
@media (max-width: 900px) {
  .grid-container-whychooseus {
    grid-template-columns: 1fr;
  }
}


/* Grid: 4 columns on large screens */
.grid-container-whychooseus {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 2 columns on large screens */
  gap: 20px;
  width: 100%;

  box-sizing: border-box;
}


/* Responsive for tablets */
@media (max-width: 900px) {
  .grid-container-whychooseus {
    grid-template-columns: 1fr; /* 1 column on smaller screens */
  }
}
/* Grid items */
.grid-item-whychooseus {
  background: #2397f6fc;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.grid-item-whychooseus:hover {
  transform: scale(1.03);
}

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

/* Responsive: 1 column on mobile */
@media (max-width: 600px) {
  .grid-container-whychooseus {
    grid-template-columns: 1fr;
  }
}


.schedule-service {
    font-size: 20px;
    font-style: italic;
}


.grid-item-testimonials {
  background: white;
 border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
padding: 10px;
  transition: transform 0.2s ease;
  color: black;
  text-align: center;
  font-size: 20px;
  margin: 20px;
}

.grid-item-testimonials:hover {
  transform: scale(1.03);
}

#testimonials{
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #555;
    color: white;
    font-size: 10px;
}



.connect-section {
  text-align: left;
  margin-top: 20px;
}

/* Base icon style for all social icons */
.social-icons {
  display: flex;
  gap: 15px; /* spacing between each social icon */
}

.social-icons i {
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.social-icons i:hover {
  color: #ffcc00;
  transform: scale(1.2);
}



/* Hover colors */
.social-icons i.fa-facebook-f:hover { color: #1877f2; transform: scale(1.2); }
.social-icons i.fa-google:hover { color: #ea4335; transform: scale(1.2); }
.social-icons i.fa-yelp:hover { color: #d32323; transform: scale(1.2); }

/* Base icon styling */
.bi {
  font-size: 50px;                /* default desktop size */
  transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
}

/* Facebook */
.bi.bi-facebook {
  color: #1877f2;
}

.bi.bi-facebook:hover {
  color: #145dbf;
  transform: scale(1.2);
  text-shadow: 0 0 10px #1877f2;
}

/* Google */
.bi.bi-google {
  color: white;
}

.bi.bi-google:hover {
  color: #ea4335;
  transform: scale(1.2);
  text-shadow: 0 0 10px #ea4335;
}

/* Yelp */
.bi.bi-yelp {
  color: #d32323;
}

.bi.bi-yelp:hover {
  color: #a71c1c;
  transform: scale(1.2);
  text-shadow: 0 0 10px #d32323;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .bi {
    font-size: 40px; /* slightly smaller on tablets */
  }
}

@media (max-width: 480px) {
  .bi {
    font-size: 30px; /* smaller on phones */
  }

  .social-icons {
    gap: 15px;      /* reduce spacing on mobile */
  }
}



#gear{
  animation: spin 2s linear infinite; /* Adjust duration as needed */
}


.contact-info {
    margin: 10px;            /* Remove default spacing */
    font-size: 14px;      /* Adjust size if needed */
    color: white;  
     display: flex;
  align-items: center;       /* Match text color */
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

#happy-family {
    display: block;           /* makes the image a block element */
    margin: 0 auto;           /* centers it horizontally */
    width: 100%;              /* keeps your full width */
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

 #valencia-home-services {
 width: 300px;   /* or any size you want */
  height: auto;   /*
   keeps correct proportions */
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #222;
  color: white;
}



/* ---------- Top Bar ---------- */
.top-bar {
  display: flex;
  justify-content: space-between; /* left: text, right: social icons */
  align-items: center;
  background: #444;
  padding: 5px 20px;
  font-size: 20px;
}

.top-bar .top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar .top-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto; /* push social icons to the right */
}

.top-bar .top-right a {
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.top-bar .top-right a:hover {
  transform: scale(1.2);
  color: #EF3005;
}

/* ---------- Navbar ---------- */



.navbar .logo img {
     height: auto;  /* desired height */
    width: 300px;   
  border-radius: 10px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a,
.dropbtn {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-menu a:hover,
.dropbtn:hover {
   color: #ff6600;       /* new text color */
  background: transparent; 
}/* 
  border-radius: 4px;
}}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #201F1E;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  border-radius: 8px;
  z-index: 1000;
  flex-direction: column;
}

.dropdown-content li a {
  padding: 10px 15px;
  display: block;
  color: white;
}

.dropdown-content li a:hover {
  background-color: #ff6600;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* Hamburger menu for mobile */

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* Hide menu by default on mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1D1D1D;
    margin-top: 10px;
  }

  /* Show menu when toggled */
  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
  }

  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  /* Stack top-bar content */
  .top-bar {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .top-bar .top-right {
    margin-left: 0;
  }

  .nav-menu a,
  .dropbtn {
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .nav-menu a,
  .dropbtn {
    text-align: center;
  }
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px; /* Right side */
  z-index: 1001; /* Always on top */
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none; /* Hide by default */
    flex-direction: column;
    width: 100%;
    background: #1D1D1D;
    position: absolute;
    top: 60px; /* below top bar */
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 1000;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    display: none; /* start hidden */
    flex-direction: column;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }
}

/* ---------- Mobile dropdown adjustments ---------- */
/* Only applies on small screens */
@media (max-width: 768px) {

  /* Make dropbtn fill width and be easy to tap */
  .dropdown > .dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
  }

  /* caret icon on the right (optional) */
  .dropdown > .dropbtn::after {
    content: "\25BC";                /* down triangle */
    margin-left: 10px;
    font-size: 12px;
    transform: rotate(0deg);
    transition: transform .2s ease;
    opacity: 0.9;
  }

  /* rotate caret when active */
  .dropdown.active > .dropbtn::after {
    transform: rotate(-180deg);
  }

  /* mobile dropdown content: full width, stacked, hidden initially */
  .dropdown .dropdown-content {
    display: none;
    position: relative;              /* flow inside mobile menu */
    background: #2b2b2b;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
  }

  .dropdown .dropdown-content li a {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.03);
  }

  .dropdown .dropdown-content li a:hover {
    background: rgba(255,102,0,0.08);
    color: #ff6600;
  }

  /* Show dropdown when parent has .active */
  .dropdown.active .dropdown-content {
    display: block;
  }

  /* ensure nav-menu stacks under navbar */
  .nav-menu {
    position: absolute;
    top: 60px;   /* adjust to match your header height */
    left: 0;
    right: 0;
    z-index: 1000;
  }
}

.navbar {
  display: flex;
  justify-content: space-between; /* logo left, hamburger/menu right */
  align-items: center;
  background-color: #1D1D1D;
  padding: 10px 20px;
  position: relative;
}


/* Logo image should not take up too much space */
.logo img {
  height: 50px;
  width: auto;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #1D1D1D;
    position: absolute;
    top: 70px; /* directly below navbar */
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    text-align: center;
  }
}


/* ---------- Dropdown Menu ---------- */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #201F1E;
  min-width: 220px; /* desktop dropdown width */
  padding: 6px 0;
  border-radius: 8px;
  z-index: 1000;
}
.dropdown-content li a {
  display: block;
  padding: 10px 14px;
  color: white;
  text-decoration: none;
}
.dropdown:hover > .dropdown-content { display: block; }

/* ---------- Hamburger (desktop hidden) ---------- */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px 10px;
}

/* ---------- MOBILE: right-side hamburger; stacked menu ---------- */
@media (max-width: 768px) {
  /* show hamburger */
  .menu-toggle { display: block; position: absolute; right: 18px; top: 14px; z-index: 1100; }

  /* ensure navbar keeps logo at left */
  .navbar { position: relative; padding-right: 60px; } /* leave room for hamburger */

  /* mobile nav - full width stacked under navbar */
 /* ---------- Mobile Hamburger Menu ---------- */
@media (max-width: 768px) {

  /* Show hamburger icon */
  .menu-toggle {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-left: auto; /* pushes it to the right */
  }

  /* Hide menu by default */
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1D1D1D;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px;   /* below navbar */
    left: 0;
    z-index: 1000;
  }

  /* Show menu when toggled */
  .nav-menu.show {
    display: flex;
  }

  /* Make each main menu item full width */
  .nav-menu li {
    width: 100%;
  }

  .nav-menu a,
  .dropbtn {
    display: block;
    padding: 12px 20px; /* aligns text uniformly */
    color: white;
    text-decoration: none;
    text-align: left;
  }

  .nav-menu a:hover,
  .dropbtn:hover {
    background-color: rgba(255, 102, 0, 0.1);
    color: #ff6600;
  }

  /* Dropdown adjustments */
  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    display: none;         /* hidden by default */
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
    background: #1D1D1D;
  }

  .dropdown.active > .dropdown-content {
    display: flex;
  }

  /* Dropdown items styling */
  .dropdown-content li a {
    padding: 12px 20px;   /* same padding as main menu */
    margin: 0;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.03); /* subtle separator */
  }

  .dropdown-content li a:hover {
    background-color: rgba(255,102,0,0.1);
    color: #ff6600;
  }

  /* Caret on the right */
  .dropdown > .dropbtn::after {
    content: "\25BC"; /* down triangle */
    float: right;
    margin-left: 10px;
    font-size: 12px;
    transition: transform 0.2s ease;
  }

  /* Rotate caret when open */
  .dropdown.active > .dropbtn::after {
    transform: rotate(-180deg);
  }
}

}

/* Scrollable dropdown fix */
@media (max-width: 768px) {
  .dropdown .dropdown-content {
    display: none;
    flex-direction: column;
    position: relative;        /* was absolute */
    max-height: calc(100vh - 70px); /* full viewport minus navbar */
    overflow-y: auto;          /* enables scrolling */
    background-color: #2b2b2b;
    border-radius: 8px;
    z-index: 1000;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }
}

/* Desktop scrollable dropdown */
@media (min-width: 769px) {
  .dropdown-content {
    max-height: 300px;      /* adjust height as needed */
    overflow-y: auto;       /* enables vertical scroll */
    overflow-x: hidden;     /* prevent horizontal scroll */
  }

  /* Optional: nicer scrollbar */
  .dropdown-content::-webkit-scrollbar {
    width: 6px;
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 102, 0, 0.8);
    border-radius: 3px;
  }
}

/* Remove background hover effect and just change text color */

/* Desktop navbar links: only text color changes */
.nav-menu > li > a,
.nav-menu > li > .dropbtn {
  color: white;
  background: transparent;  /* make sure background is transparent */
  transition: color 0.3s;   /* smooth color change */
}

.nav-menu > li > a:hover,
.nav-menu > li > .dropbtn:hover {
  color: #ff6600;           /* change only text color */
  background: transparent;   /* ensure no background color */
}

/* Desktop dropdown links: only text color changes */
.dropdown-content li a {
  color: white;
  background: transparent;  /* default background */
}

.dropdown-content li a:hover {
  color: #ff6600;           /* text color on hover */
  background: transparent;   /* don't change background */
}

/* Mobile dropdown links: same behavior */
@media (max-width: 768px) {
  .nav-menu li a,
  .nav-menu li .dropbtn,
  .dropdown-content li a {
    background: transparent;   /* no background on hover */
  }

  .nav-menu li a:hover,
  .nav-menu li .dropbtn:hover,
  .dropdown-content li a:hover {
    color: #ff6600;           /* only text color changes */
    background: transparent;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;       /* stack logo and menu vertically */
    align-items: flex-start;      /* left-align items if you want */
    padding-top: 10px;            /* extra spacing above menu */
  }

  .nav-menu {
    top: 320px; /* push menu below the 300px logo + some spacing */
  }

  .menu-toggle {
    top: 310px; /* align hamburger button below the logo */
  }
}


/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;       /* stack logo and menu */
    align-items: center;          /* center logo and menu items */
    position: relative;
    padding: 10px 20px;
  }

  .logo img {
    max-height: 300px;            /* your tall logo */
    width: auto;
  }

  .menu-toggle {
    margin-top: 10px;             /* spacing below logo */
    position: relative;           /* keeps it below the logo */
    top: auto;                     /* reset any previous top values */
    right: auto;
  }

  .nav-menu {
    position: relative;           /* flows naturally below logo */
    top: auto;                    /* reset previous absolute positioning */
    left: auto;
    right: auto;
    width: 100%;
    flex-direction: column;
    display: none;                /* hidden until toggled */
    margin-top: 10px;             /* spacing between logo and menu */
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a,
  .dropbtn {
    padding: 12px 20px;           /* uniform spacing */
    text-align: center;           /* optional */
  }

  .dropdown .dropdown-content {
    position: relative;           /* flows inside nav-menu */
    max-height: 250px;            /* scrollable if needed */
    overflow-y: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {

  /* Make navbar stack nicely */
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  /* Logo */
  .logo img {
    max-height: 300px;
    width: auto;
    margin-bottom: 10px; /* spacing below logo */
  }

  /* Hamburger */
  .menu-toggle {
    margin-bottom: 10px;
  }

  /* Main menu */
  .nav-menu {
    width: 100%;           /* full width */
    flex-direction: column;
    display: none;         /* hidden until toggle */
  }

  .nav-menu.show {
    display: flex;
  }

  /* Each menu item */
  .nav-menu li {
    width: 100%;           /* make items full width */
  }

  .nav-menu a,
  .dropbtn {
    display: block;
    width: 100%;           /* full width clickable area */
    padding: 12px 20px;
    text-align: left;      /* align text to left */
    box-sizing: border-box;
  }

  /* Dropdown content */
  .dropdown .dropdown-content {
    position: relative;    
    width: 100%;           /* match parent width */
    max-height: 250px;     /* scrollable if too long */
    overflow-y: auto;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  /* Dropdown links */
  .dropdown .dropdown-content li a {
    padding: 12px 20px;    /* same padding as main menu items */
    text-align: left;      /* align text consistently */
    border-top: 1px solid rgba(255,255,255,0.03);
  }

  /* Optional: add subtle hover */
  .dropdown .dropdown-content li a:hover {
    background-color: rgba(255,102,0,0.08);
    color: #ff6600;
  }
}

/* Mobile dropdown hover */
.nav-menu li a:hover,
.dropdown .dropdown-content li a:hover {
    color: #ff6600;          /* text changes color */
    background-color: rgba(255,102,0,0.08); /* subtle highlight */
}

/* Center the Book Online button on mobile */
@media (max-width: 768px) {
  .top-bar-left {
    display: flex;
    flex-direction: column; /* stack items vertically */
    align-items: center;    /* center horizontally */
    gap: 10px;              /* optional spacing between items */
  }

  .top-bar-left .hcp-button {
    margin: 0 auto;         /* center the button itself */
  }
}

/* Tablet devices */
/* Add space between Call us text and Book Online button on mobile */
@media (max-width: 768px) {
  .top-bar-left .hcp-button {
    margin-bottom: 15px; /* increase this value to add more space */
  }
}