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

body {
  font-family: sans-serif;
  background-color: #f9f9f9;
}

a {
  color: #4a6785; 
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #324a5e; 
  text-decoration: underline;
}

/* Announcement Bar */

.announcement-bar {
  background-color: #f9f9f9;
  color: #333;
  font-size: 17px;
  padding: 8px 20px;
}

.announcement-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* Ensures consistent spacing between all items */
  flex-wrap: wrap;
}

.announcement-left,
.announcement-middle,
.announcement-right {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.announcement-divider {
  width: 1px;
  height: 20px;
  background-color: #ccc;
  flex-shrink: 0;
}

/* Stars */
.stars {
  color: #FFD700;
  font-size: 17px;
  line-height: 1;
  margin-right: 6px;
}

/* Middle Text */
.announcement-middle em {
  font-style: italic;
  color: #333;
}

/* Phone Link */
.announcement-phone {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.announcement-phone:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .announcement-inner {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .announcement-divider {
    display: none;
  }

  .announcement-middle {
    order: 2;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    display: none;
  }
}

.dni-num{
	display:inline-block;
	min-width:12ch;
	white-space:nowrap;
	line-height:1
}

/* Bread Crumbs */

  .breadcrumbs-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1rem 0;
  }

  #breadcrumbs {
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word; 
    overflow-wrap: anywhere; 
    white-space: normal; 
  }


/* Header */

.site-header {
  background: #202527;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2002;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}


/* Desktop Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.5s ease;
  padding: 15px 5px;
}

.main-nav a:hover {
  color: #66ccff;
}


.main-nav .has-submenu > a i,
.main-nav .subsubmen > a i {
  transition: transform 0.3s ease;
}

/* Desktop: rotate chevron when submenu is visible */
@media (min-width: 768px) {
  .main-nav .has-submenu:hover > a i {
    transform: rotate(180deg);
  }

  .main-nav .subsubmenu:hover > a i {
    transform: rotate(90deg);
  }
}


.main-nav ul li {
  position: relative;
}

.main-nav .submenu {
  position: absolute;
  top: 30px;
  gap: 0;
  left: 0;
  background: #202527;
  display: none;
  flex-direction: column;
  min-width: 225px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2003;
  border: 1px solid #66ccff;
  border-radius: 5px;
}

.main-nav .submenu li {
  width: 100%;
}

.main-nav ul li:hover > .submenu {
  display: flex;
}

/* For 3rd-level dropdowns (submenu inside submenu) */
.main-nav .submenu .submenu {
  top: 0;
  left: 100%;
}

.main-nav .submenu a {
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  display: block;
}

.main-nav .submenu a:hover {
  background: #2c2f31;
  color: #66ccff;
}

  
/* Hamburger (Mobile) */
.hamburger {
  color:white;
  font-size: 1.75em;
  display: none;
  cursor: pointer;
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 50vw;
  background: #202527f5;
  color: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 2003;
  touch-action: pan-y;
  overflow-y: auto; /* 🟢 Enables scrolling inside menu */
  -webkit-overflow-scrolling: touch;
}


@media (max-width: 768px) {
  .mobile-menu {
    width: 75vw;
  }

  
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}


.close-btn {
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
}

.close-btn:hover,
.mobile-menu i:hover,
.mobile-menu a:hover {
  color: #66ccff;
}

.mobile-menu-header {
  display: flex;
  padding: 2rem 1.5rem 0;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header .home-icon,
.mobile-menu-header .close-btn {
display: flex;
align-items: center;
justify-content: center;
height: 2rem;
}

.home-icon {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  line-height: 1;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: white;
  font-weight: 300;
  padding: .5rem 1.5rem;
}

.mobile-menu-list .menu-section {
  font-weight: 600;
  color: #66ccff;
  padding: 1.2rem 1.5rem .5rem;
}

.mobile-menu-list i {
  width: 1.25rem;
  text-align: center;
  color: white;
}

.mobile-menu-list a .arrow {
  transition: transform 0.3s ease;
}

.mobile-menu-list li.submenu-open > a .arrow {
  transform: rotate(180deg);
}

.mobile-menu-list .bordered {
  display: block;
  border-top: 1px solid white;
  padding: 1.2rem 1.5rem;
}

.mobile-submenu li:first-of-type {
  margin-top: 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem; /* Increased from 1.2rem to 2rem */
  padding: 1.5rem 0;
}

.social-icons a {
  color: white;
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #66ccff;
}

.mobile-menu-list .social-icons a:not(:last-child) {
  margin-right: 1rem;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1500;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.backdrop.active {
  display: block;
  opacity: 1;
}

/* Show hamburger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/* Search */

.nav-search-icon a {
  padding: 0;
}

.nav-search-icon i {
  font-size: 1rem;
  color: white;
}

.nav-search-icon i:hover {
  color: #66ccff;
}

.mobile-header-controls {
  display: none;
}

@media (max-width: 900px) {
  .mobile-header-controls {
    display: flex;
    align-items: center;
    margin-left: auto; /* pushes to the right side of header container */
    gap: 10px;
  }

  .mobile-search-icon {
    font-size: 1.25rem;
    color: white;
    margin-right: 10px;
  }

  .mobile-search-icon:hover {
    color: #66ccff;
  }
}

/* Search Page */

.search-landing {
  max-width: 600px;
  margin: 100px auto 50px;
  text-align: center;
  padding: 0 20px;
}
.search-landing h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.search-landing form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.search-landing input[type="search"] {
  padding: 15px;
  font-size: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.search-landing button {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: #4eb8e6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.search-landing button:hover {
  background-color: #38a0cf;
}

/* Search Results */

.eroof-search-results {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: block;
}

.eroof-search-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.eroof-search-query {
  font-weight: bold;
  display: inline;
}

.eroof-search-result-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.eroof-search-result-item h2 {
  margin-bottom: .5rem;
}

.eroof-search-result-item a {
  color: #66ccff;
}

.eroof-search-pagination {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eroof-search-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.eroof-search-pagination .page-numbers:hover {
  background-color: #f0f0f0;
  color: #000;
  border-color: #999;
}

.eroof-search-pagination .page-numbers.current {
  background-color: #66ccffe5;
  color: #fff;
  border-color: #66ccffe5;
  font-weight: bold;
}

.eroof-no-results {
  margin-top: 3rem;
  padding: 2rem;
  border: 2px dashed #ccc;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.eroof-no-results h2 {
  font-size: 1.75rem;
  color: #d9534f;
  margin-bottom: 1rem;
}

.eroof-no-results p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Custom search form */
.eroof-no-results-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eroof-no-results-form input[type="search"] {
  flex: 1 1 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.eroof-no-results-form input[type="submit"] {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: #4eb8e6;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  flex: 1 1 100%;
  box-sizing: border-box;
}

.eroof-no-results-form input[type="submit"]:hover {
  background-color: #38a0cf;
}

@media (min-width: 480px) {
  .eroof-no-results-form {
    flex-wrap: nowrap;
  }

  .eroof-no-results-form input[type="search"] {
    flex: 1;
  }

  .eroof-no-results-form input[type="submit"] {
    flex: 0 0 auto;
  }
}


/* Page */

.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; 
}

/* Front Page and Service area layout */

.sa-main { 
  font-family: sans-serif; 
  line-height: 1.6; 
}

.sa-container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: .75rem; 
}

.sa-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 0;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  z-index: 0;
}

  .sa-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
  }

.sa-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}


.sa-hero-text { 
  flex: 1; 
  min-width: 300px;
}

.sa-hero-text h1 { 
  font-size: 1.5rem;
  line-height: 1.3;
  color: #66ccff;
  margin-bottom: .5rem; 
}

.sa-hero-text h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.sa-hero-text h3 {
  font-size: 1.25rem;
  color: #66ccff;
  padding: 5px 0;
}

.sa-hero-badges {
  padding: 5px 0 0;
}

.sa-hero-badges img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* On screens smaller than 500px, shrink badges */
@media (max-width: 900px) {
  .sa-hero-badges img {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 768px) {
  
  .sa-hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  
  .sa-hero-text {
    text-align: center;
  }

  .sa-hero-text h1 { 
    line-height: 1.2;
    font-size: 1.3rem;
  }

  .sa-hero-text h2 {
    font-size: 1.8rem;
  }
}


/* Form */

.sa-hero-form { 
  flex: 1; 
  max-width: 425px;
  min-width: 350px;
}

@media (max-width: 450px) {
  .sa-hero-form {
    width: 100%;
    min-width: 350px;
  }
}

@media (max-width: 350px) {
  .sa-hero-form {
    min-width: 250px;
  }
}

.sa-form-box {
  background: rgba(32, 37, 39, 0.93);
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.sa-form-subtitle {
  font-size: 0.9rem;
  color: #c0c0c0;
  margin-bottom: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.sa-form-box h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* Remove default label styling since we’re using placeholders */
.sa-form-box label {
  display: none;
}

.sa-input-icon {
  position: relative;
  margin-top: 1rem;
}

.sa-input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 16px;
  pointer-events: none;
}

.sa-form-box input,
.sa-form-box textarea {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem; /* Padding-left adjusted for icon */
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 1rem;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  box-sizing: border-box;
}

.sa-form-box input:focus,
.sa-form-box textarea:focus {
  border-color: #66ccff;
  outline: none;
}

.sa-form-button-wrapper { 
  text-align: center; 
}

.sa-form-box button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #66ccffe5;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sa-form-box button:hover { 
  background: #4da3e1; 
}

.sa-success-message {
  border-radius: 6px;
  font-weight: 600;
}


/* Ticker */

.logo-ticker-section {
  overflow: hidden;
  background-color: #fff;
  padding: 1rem 0;
}

.logo-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}

.logo-track img {
  max-height: 160px;
  height: auto;
  width: auto;
  margin: 0 2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .logo-track img {
    max-height: 120px;
    margin: 0 1rem;
  }
}

/* Animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Vid Section */

.video-section {
  background-color: #f9f9f9; /* soft, professional white */
  padding: 2rem 1rem;
  color: #222; /* dark font color for text in this section */
}

.video-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.video-heading i {
  margin-right: 0.5rem;
  color: #66ccff;
  font-size: 2.125rem;
  vertical-align: middle;
}

.fp-vid-sec video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  display: block;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .fp-video-wrapper {
    width: 75%;
  }
}

.fp-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.fp-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.fp-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0);
  border: 0.4vw solid white; /* scales with screen width */
  border-radius: 50%;
  width: 10vw; /* responsive circle size */
  height: 10vw;
  max-width: 100px;  /* prevent it from getting too big on large screens */
  max-height: 100px;
  min-width: 50px;   /* prevent it from getting too small on small screens */
  min-height: 50px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fp-play-button svg {
  width: 60%;
  height: 60%;
}

.fp-play-button:hover {
  background-color: rgba(0, 0, 0, 0.336);
}

  .eroof-video-welcome {
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 2rem 1rem;
}

.eroof-video-welcome-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.eroof-video-welcome-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

.eroof-video-welcome-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #66ccff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.eroof-video-welcome-button:hover {
  background-color: #4bb9e8;
}

/* Hero Section  */

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;

}

.fp-hero {
  color: #fff;
  padding: 4rem 0;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.62);
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-benefits i {
  color: #66ccff;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-benefits li:hover i {
  transform: scale(1.15);
  color: #88ddff;
}

.hero-benefits p {
  margin: 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-benefits strong {
  display: inline-block;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .hero-benefits p {
    font-size: 1.25rem;
  }

  .hero-benefits strong {
    font-size: 1.5rem;
  }
}

/* Slide-in on scroll animation */
.slide-in {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;

}

/* Testimonials */

.testimonial-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  color: #222;
}

.testimonial-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.testimonial-subheading {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #555;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.testimonial-card p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.testimonial-rating {
  margin-bottom: 0.5rem;
}

.testimonial-rating i {
  color: #facc15; /* Tailwind yellow-400 */
  margin-right: 0.15rem;
  font-size: 1.1rem;
}

.testimonial-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;

  -webkit-line-clamp: 4;   /* Chrome, Safari */
  line-clamp: 4;           /* Future compatibility (not yet fully supported) */
}

.testimonial-card.expanded .testimonial-text {
  display: block;          /* Disable -webkit-box */
  overflow: visible;
  max-height: none;

  -webkit-line-clamp: none;
  line-clamp: none;
}

.testimonial-toggle {
  display: inline-block;
  color: #66ccff;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.95em;
  margin-top: 0;
  margin-bottom: 1em; 
}

.testimonial-name {
  display: block;
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
}

.testimonial-source {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.2rem;
}

/* === FLEX MISSION SECTION === */
.mission-flex-section {
  background-color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.mission-flex-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mission-flex-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #222;
}

.mission-flex-subheading {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: #555;
  line-height: 1.6;
}

/* Flex rows */
.mission-flex-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mission-flex-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-flex-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}


.mission-flex-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #66ccff;
}

.mission-flex-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.mission-flex-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Mobile: stack cards vertically */
@media (max-width: 768px) {
  .mission-flex-row {
    flex-direction: column;
    gap: 2rem;
  }

  .mission-flex-card {
    width: 100%;
    min-width: 0;
  }
}

/* Home Page Services */

.eroof-services-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.eroof-services-section a {
    text-decoration: none;
}

.eroof-services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.eroof-services-heading {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #222;
}

.eroof-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.eroof-service-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  text-decoration: none;
}

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

.eroof-service-card:focus {
  outline: 2px solid #4eb8e6;
  outline-offset: 4px;
}

.eroof-service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #66ccff;
}

.eroof-service-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: #66ccff;
  text-decoration: none;
}

.eroof-service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
  text-decoration: none;
}

.eroof-service-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  background-color: #66ccff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.eroof-service-link:hover {
  background-color: #4bb9e8;
}


/* Service Area Services */


.services-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
  color: #222;
}

.services-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr); /* default mobile */
}

.services-grid a {
  text-decoration: none;
  color: #222;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr); /* desktop */
  }
}

.service-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.25rem;
  padding: 1rem;
  margin: 0;
  background: #fff;
}

.services-cta {
  margin-top: 3rem;
  text-align: center;
}

.estimate-button {
  padding: 0.85rem 1.75rem;
  background-color: #66ccff;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.estimate-button:hover {
  background-color: #4da3e1;
}

/* About Section */ 

.about-section {
  padding: 4rem 1rem;
  color: white;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h2,
.about-content p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}


.about-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555555;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    padding: 0 .5rem;
  }

  .about-content p {
    font-size: 1.1rem;
    text-align: left;
  }
}

  /* Desktop / Mobile visibility control */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }

  .sa-container.mobile-only,
  .commercial-container.mobile-only {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

}

/* Service area archive */

.service-area-container {
  padding: 2rem 1rem;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2; /* Optional: creates two columns on wider screens */
  column-gap: 2rem;
}

.service-area-list strong {
  display: block;
  margin: 2rem 0 0.5rem;
  font-size: 1.25rem;
  color: #333;
}

.service-area-list li {
  margin-bottom: 0.5rem;
}

.service-area-list a {
  text-decoration: none;
  color: #005fa3;
  transition: color 0.2s ease;
}

.service-area-list a:hover {
  color: #003d6b;
}


/* Page */

.pg-main {
    font-family: sans-serif;
    line-height: 1.6;
  }

  .pg-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.pg-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

  .pg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pg-hero-container {
    max-width: 1100px;
    padding: 2rem;
    width: 100%;
  }

  .pg-hero-title {
    color: #fff;
    font-size: 2.5rem;
    margin: 0;
  }

  .pg-content {
    background: #f9f9f9;
    padding: 1.5rem 0;
  }

  .pg-content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
  }

  .pg-content-block {
    background: #f9f9f9;
    padding: .5rem;
    
  }

  @media (max-width: 768px) {
    .pg-hero-title {
      font-size: 1.8rem;
    }
    .pg-hero-container,
    .pg-content-container {
      padding: .5rem 1rem;
    }
  }

.pg-main h2 {
  margin: 10px 0;
}

.pg-main h4 {
  margin: 8px 0;
}

.pg-main p {
  margin: 8px 0;
}

.pg-main ul {
  margin: 10px;
  padding-left: 25px;
}

/* FAQ Page */

.faq-wrapper{
  background-color: white;
  border-radius: 15px;
}

.faq-wrapper-inner {
  padding: 10px 40px;
}

@media (max-width: 768px) {
  .faq-wrapper-inner {
    padding: 10px 20px;
  }
}

/* Roofing Services Page */

.rs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.rs-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
}
.rs-card:hover {
  transform: translateY(-3px);
}
.rs-card i {
  font-size: 2rem;
  color: #66ccff;
  margin-bottom: 0.75rem;
}
.rs-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.rs-card p {
  font-size: 0.95rem;
  color: #666;
}
.rs-card:link,
.rs-card:visited,
.rs-card:hover,
.rs-card:active {
  text-decoration: none;
}


/* 404 Page */

.eroof-404-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.eroof-404-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #d9534f;
}

.eroof-404-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.eroof-404-form {
  max-width: 400px;
  margin: 0 auto 3rem;
  display: flex;
  gap: 10px;
}

.eroof-404-form input[type="search"] {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.eroof-404-form input[type="submit"] {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: #4eb8e6;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.eroof-404-form input[type="submit"]:hover {
  background-color: #38a0cf;
}

.eroof-404-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 2rem;
  text-align: center;
}

/* Update to make entire card clickable */
.eroof-404-card {
  display: block;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 25px 20px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.eroof-404-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.eroof-404-card i {
  font-size: 2rem;
  color: #66ccff;
  margin-bottom: 12px;
}

.eroof-404-card .eroof-404-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.eroof-404-card:hover .eroof-404-title {
  color: #4eb8e6;
}

.eroof-404-desc {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 500px) {
  .eroof-404-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .eroof-404-card .eroof-404-desc {
    display: none;
  }

  .eroof-404-card i {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .eroof-404-card .eroof-404-title {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .eroof-404-card {
    padding: 20px 12px;
  }
}

/* End 404 */

/* Commercial and Residential layout */

.sa-hero-commercial {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 0;
  min-height: 600px;
  display: block; /* overridden on mobile */
}

/* Background Video Container */
.sa-hero-commercial .sa-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: #000; /* fallback to avoid gray bars if any */
}

/* Video Element */
.sa-hero-commercial .sa-hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content Container */
.sa-hero-commercial .sa-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem;
  position: relative;
  z-index: 2;
}

.commercial-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem;
}

/* Flex Layout */
.sa-hero-commercial .sa-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

/* Text Column */
.sa-hero-commercial .sa-hero-text {
  flex: 1;
  min-width: 300px;
}

/* Headings */
.sa-hero-commercial .sa-hero-text h1 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #66ccff;
  margin-bottom: .5rem;
}

.sa-hero-commercial .sa-hero-text h2 {
  font-size: 2.25rem;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
  .sa-hero-commercial {
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
  }

  .sa-hero-commercial .sa-container {
    width: 100%;
  }

  .sa-hero-commercial .sa-hero-video-bg video {
    object-fit: cover;
    object-position: top center;
  }

  .sa-hero-commercial .sa-hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 2rem 1rem;
  }

  .sa-hero-commercial .sa-hero-text {
    text-align: center;
  }

  .sa-hero-commercial .sa-hero-text h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .sa-hero-commercial .sa-hero-text h2 {
    font-size: 1.75rem;
  }
}

/* Gallery  */

.commercial-gallery-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.commercial-gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

.commercial-gallery-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.commercial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.commercial-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.commercial-gallery-grid img:hover {
  transform: scale(1.02);
}

.commercial-gallery-extra .commercial-gallery-grid {
  margin-top: 1.5rem;
}

/* Commercial Specialties Section */

.commercial-specialties-section {
  background-color: #f8f9fa;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.specialties-container {
  max-width: 1100px;
  margin: 0 auto;
}

.specialties-heading {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.specialties-subheading {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.specialties-flex-wrapper {
  margin-bottom: 3rem;
}

.specialties-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.commercial-specialty-card {
  flex: 1 1 calc(25% - 2rem);
  max-width: calc(25% - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.commercial-specialty-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.commercial-specialty-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.commercial-specialty-card p {
  color: #555;
  line-height: 1.5;
  font-size: 1rem;
}

.icon-top {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #66ccff;
}

/* Learn More Button */
.learn-more-btn {
  display: inline-block;
  width: 160px;
  margin: 1rem auto 0 auto;
  background-color: #66ccff;
  color: #fff;
  padding: 0.5rem 0;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.learn-more-btn:hover {
  background-color: #4eb8e6;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .commercial-specialty-card {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .commercial-specialty-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Footer */

.footer-cta-wrap {
    background-color: #4eb8e6;
    padding: 30px 20px;
  }

  .footer-cta-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-cta-container h2 {
    font-size: 32px;
    color: #fff;
    margin: 0;
  }

  .footer-cta-container .cta-button {
    background-color: #fff;
    color: #4eb8e6;
    font-size: 18px;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
  }

  .footer-cta-container .cta-button:hover {
    background-color: #e6f7ff;
    color: #2b9ecf;
  }

  @media (max-width: 700px) {

    .footer-cta-wrap {
      padding: 20px 20px;
    }
    .footer-cta-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-cta-container h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .footer-cta-container .cta-button {
      width: auto;
    }
  }


.footer-container {
  background-color: #202527;
  color: #fff;
  padding: 3rem 3rem .2rem;
  font-family: sans-serif;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

@media (max-width: 767px) {
  .footer-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem; /* Vertical spacing between rows only */
}

.footer-column {
  flex: 1 1 20%;
  min-width: 180px;
}

.footer-column h4 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem; 
  color: #66ccff;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 1.1rem; 
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  color: #66ccff;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .footer-column {
    flex: 1 1 48%;
    max-width: 48%;
    margin-bottom: 1.5rem;
  }

  .footer-column h4 {
    font-size: 1.1rem;
  }

  .footer-column p,
  .footer-column li,
  .footer-column a {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .footer-column {
    flex: 1 1 48%;
    max-width: 48%;
    min-width: 140px;
  }
}


.footer-social {
  text-align: center;
  margin: 1.5rem 0 1rem;
}

.footer-social .social-icons {
  padding: .5rem 0;
}

.footer-social .social-icons a {
  color: #ccc;
  margin: 0 10px;
  font-size: 1.3rem;
}

.footer-social .social-icons a:hover {
  color: #66ccff;
}

.footer-links-section {
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  padding: 1rem 0;
  margin: 1.25rem 0;
  text-align: center;
}

.footer-links-section a {
  margin: 0 1rem;
  color: #ccc;
  font-size: 1rem;
  text-decoration: none;
}

.footer-links-section a:hover {
  color: #66ccff;
}

@media (max-width: 600px) {
  .footer-links-section {
    padding: 1rem 0 0.5rem;
    margin: 1rem 0;
  }

  .footer-links-section a {
    display: inline-block;
    margin: 0.5rem 0.75rem;
    font-size: 0.95rem;
  }
}

.footer-container .sa-hero-badges {
  display: flex;
  justify-content: center;
  align-items: center; /* important */
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-container .sa-hero-badges img {
  width: 65px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .footer-container .sa-hero-badges {
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-wrap: none;
  }

  .footer-container .sa-hero-badges img {
    width: 50px;
    height: auto;
  }
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 1rem;
  color: white;
  font-size: 1rem;
}

/* Mobile Buttons */
.mobile-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}
.mobile-buttons a {
  padding: 15px 10px;
  width: 33.33%;
  text-decoration: none;
  border: 1px solid lightgray;
  text-align: center;
  background-color: #66ccff;
  color: white;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.mobile-buttons a i {
  margin-right: 5px;
}

.mobile-buttons a:not(:last-child) {
  border-right: none;
}

.mobile-buttons .button:active {
  transform: scale(0.95);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive: Hide buttons and adjust padding on desktop */
@media (min-width: 768px) {
  .mobile-buttons,
  .room-for-buttons {
    display: none;
  }
}

/* Responsive: Add extra bottom padding ONLY on mobile */
@media (max-width: 767px) {
  .footer-container {
    padding-bottom: 4rem; /* to clear mobile buttons */
  }

}

.sticky-inspection-tab {
  --r: 15px; /* controls the curvature */

  position: fixed;
  top: 30%;
  left: 15px; /* changed from right */
  z-index: 2;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  line-height: 1.8;
  padding-inline: 1.25em;
  text-decoration: none;
  background: #66ccfff3 border-box;

  /* Shape styling */
  border-inline: var(--r) solid #0000;
  border-radius: calc(2 * var(--r)) calc(2 * var(--r)) 0 0 / var(--r);
  mask:
    radial-gradient(var(--r) at var(--r) 0, #0000 98%, #000 101%)
      calc(-1 * var(--r)) 100% / 100% var(--r) repeat-x,
    conic-gradient(#000 0 0) padding-box;

  transform: rotate(90deg); /* flipped direction */
  transform-origin: left center; /* anchor from the left */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15); /* adjusted shadow direction */
  transition: background-color 0.3s ease;
}

.sticky-inspection-tab:hover {
  background-color: #55bce8;
	text-decoration: none;
}


@media (max-width: 768px) {
  html .sticky-inspection-tab {
    display: none !important;
  }
}