.elementor-kit-10{--e-global-color-primary:#9E1616;--e-global-color-secondary:#002545;--e-global-color-text:#C0C0C0;--e-global-color-accent:#8AD5F1;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-size:35px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Serif";--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Open Sans";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Open Sans";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1300px;}.e-con{--container-max-width:1300px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-10 e-page-transition{background-color:#FFBC7D;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* Hero Section */
.hero {
  background-image: url('your-roofing-image.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-align: center;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.btn {
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 5px;
  font-weight: bold;
  margin: 0 10px;
}
.btn-primary {
  background-color: #b71c1c; /* strong red */
  color: white;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.btn-primary:hover, .btn-secondary:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo img {
  height: 50px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.main-nav li {
  position: relative;
  margin-left: 25px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #003366; /* deep navy blue */
  font-family: 'Montserrat', sans-serif;
  padding: 8px 5px;
}
.main-nav a:hover {
  color: #b71c1c; /* strong red */
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: white;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  border-radius: 4px;
  min-width: 180px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #003366;
}
.dropdown-menu a:hover {
  background-color: #b71c1c;
  color: white;
}

@media (max-width: 768px) {
  .container {
    flex-wrap: wrap;
  }
  .main-nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
  }
  .main-nav.active ul {
    display: flex;
  }
  .main-nav li {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
  text-align: center;
}
.services-overview h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #003366; /* deep navy blue */
}
.services-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.service-item {
  max-width: 250px;
  flex: 1 1 220px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}
.service-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-item img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}
.service-item h3 {
  font-family: 'Montserrat', sans-serif;
  color: #b71c1c; /* strong red */
  margin-bottom: 10px;
}
.service-item p {
  font-family: 'Open Sans', sans-serif;
  color: #555;
}
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #003366; /* deep navy blue */
  color: white;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 10000;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.phone a {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.phone a:hover {
  text-decoration: underline;
}
.btn-primary {
  background-color: #b71c1c; /* strong red */
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: #a11515;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
  }
}

/* Flexbox for Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-buttons a {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  min-width: 180px;
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}/* End custom CSS */