/**
 * Theme Name:     Royal Door KC
 * Author:         Tom Usborne
 * Template:       generatepress
 * Text Domain:    royal-door-kc
 */

/* Load Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Typography */
body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-weight: 600;
  margin: 0 0 10px;
}

p {
  color: #7D7D7D;
  line-height: 1.7;
  margin-bottom: 1em;
}

/* ========= HEADER STYLES ========= */

/* Containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.header-top .container {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  gap: 6px;
  text-align: center;
}

/* Top Bar */
.header-top {
  background-color: #0a2b5a;
  color: #fff;
  font-size: 14px;
}

.top-bar-text {
  flex: 1;
  color: #fff;
  font-size: 14px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.phone svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Main Header */
.header-main {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 15px;
}

.logo img {
  height: 55px;
}

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

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  display: inline-block;
}

.nav-menu li.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 4px;
}

/* Submenu */
.nav-menu .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: none;
  min-width: 300px;
  z-index: 1000;
  list-style: none;
}

.nav-menu li:hover > .sub-menu {
  display: block;
}

.sub-menu li a {
  padding: 8px 20px;
  display: block;
  color: #000;
  font-size: 15px;
}

.sub-menu li a:hover {
  background: #f4f4f4;
}

/* CTA Button */
.cta-button {
  background: #ff5a1f;
  color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: nowrap;
  gap: 20px;
}

.logo,
.cta-button {
  white-space: nowrap;
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .header-top .container {
    flex-direction: column;
    text-align: center;
    padding: 12px 10px;
  }

  .phone {
    margin-top: 6px;
    justify-content: center;
  }
  .logo img {
  height: auto;
  width: 80px;
}
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 15px 0;
    flex-direction: column;
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

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

  .nav-menu li a {
    padding: 5px 20px;
    font-size: 16px;
    display: block;
    text-align: center;
  }

  .nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    height: 3px;
    background: #000;
    border-radius: 2px;
  }
  
   .header-main .container {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .cta-button {
    margin-left: auto;
    margin-right: 10px;
    white-space: nowrap;
    font-size: 12px;
   
  }

  .hamburger {
    margin-left: 0;
  }
  
  .banner-buttons {
    align-items: center;
    justify-content: center;
}

.banner-content h1 {
    font-size: 38px !important;
    line-height: 40.6px !important;
}


}

@media (min-width: 1025px) and (max-width: 1292px) {
    
    
  .nav-wrapper {
    justify-content: flex-end;
    overflow-x: auto; /* Add scroll if needed */
  }

.nav-menu {
    flex-wrap: wrap;
    gap: 0px 15px;
    justify-content: center;
    vertical-align: middle;
 }

  .nav-menu li {
    flex-shrink: 0;
  }
}


@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}



/* === Royal Footer Styling === */
.royal-footer {
  background-color: #0a2b5a;
  color: #ffffff;
  padding: 70px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #ffffff;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #838E9E;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #ffb347;
}

.footer-column p {
  font-size: 14px;
  color: #838E9E;
  max-width: 280px;
  line-height: 1.6;
}

.logo-column img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* === Social Buttons === */
.social-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* === Corrected Social Button Styles === */
.social-button {
  background-color: #1e3b68;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  gap: 12px;
  transition: background 0.3s ease;
  min-width: 160px;
  margin-bottom: 15px;
}

.social-button i {
  font-size: 16px;
}

/* Divider between icon and text */
.social-button span {
  position: relative;
  padding-left: 12px;
  margin-left: 4px;
}

.social-button span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Hover style matching footer background */
.social-button:hover {
  background-color: #054FCC;
  color: #ffffff;
}


/* === Footer Bottom === */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    width: 0px;
  }

  .social-button {
    width: auto;
    justify-content: center;
  }

  .social-button::before {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
  }

  .footer-columns > * {
    width: calc(50% - 10px); /* 2 columns with 20px horizontal gap */
  }
}



/* === Home Page Banner === */

.page-template-home-page .site-content{
    display: block;
}

.home-banner {
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0;
  padding-bottom: 120px;
 
  position: relative;
  color: #000;
}




.banner-wrapper {
  display: flex;
  flex-direction: column-reverse;
  
  text-align: center;
}

@media(min-width: 1024px) {
  .banner-wrapper {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
}

@media(max-width: 1024px) {
    .home-banner {
  padding: 100px 0;
  
}
  .home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65); /* Light overlay */
  z-index: 1;
}
.banner-wrapper {
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
}

.banner-content {
  max-width: 600px;
}

.banner-content h1 {
  font-size: 46px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
  line-height: 50.6px;
}

.banner-content h1 span {
  color: #f15b2a;
}

.banner-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.banner-buttons .btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid #0000005C;
}

.btn-outline {
  background: #f1f1f1;
  color: #000;
}

.btn-primary {
  background: #f15b2a;
  color: #fff;
}

.review-image {
  margin-top: 50px;
}

.review-image img {
 
  height: auto;
  width: auto;
}
  
.banner-image {
  width: 100%;
  margin-bottom: 30px;
}

@media(min-width: 768px) {
  .banner-image {
    margin-bottom: 0;
  }
}


/* === Quote Form Section === */

.quote-form-section {
  background-color: #054FCC; /* Bright blue background */
  padding: 20px 20px;
  padding-bottom: 20px;
  padding-top: 10px;
  color: #fff;
}

.quote-container {
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}

.form-placeholder {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  color: #333;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}


/* === Why Choose Section === */

.why-choose-section {
  padding: 60px 20px;
  background-color: #fff;
}

.why-choose-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.why-choose-image {
  position: relative;
  flex: 1 1 50%;
  min-width: 300px;
}

.why-choose-image img {
  width: 100%;
  max-height: 450px;
  border-radius: 15px;
  background-color: #ddd;
}

.trust-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.trust-badge img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.why-choose-content {
  flex: 1 1 45%;
}

.why-choose-content h2 {
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 42.9px;
}

.why-choose-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.why-choose-content ul li {
  list-style: disc;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.why-choose-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-choose-wrapper {
    flex-direction: column;
    text-align: center;
  }
 .why-choose-content ul li
 {
    list-style: none;

}
  .trust-badge {
    position: static;
    margin-top: 10px;
  }

  .why-choose-content {
    padding-top: 20px;
  }

  .why-choose-content ul {
    padding-left: 0;
    list-style: none;
  }

  .why-choose-content ul li::before {
    content: "• ";
    color: #333;
    font-weight: bold;
  }
}


/* === Garage Services Section === */
.garage-services {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.garage-services .section-heading h2, .testimonial-header h2, .blog-section-header h2, .section-header h2 {
  font-size: 39px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 50px;
}
.area-serve-section .section-header h2{
    text-align: center;
    margin-bottom: 50px;
} 

.area-serve-section .section-header p{
    text-align: center;
    margin-bottom: 40px;
} 
.garage-services .section-heading p, .testimonial-header p, .blog-section-header p, .section-header p {
  color: #7D7D7D;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;
  
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #00000036;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 220px;
  transition: all 0.3s ease;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-item p {
  font-size: 14px;
  color: #454545;
  margin-bottom: 20px;
  line-height: 20px;
}

.learn-more {
  display: inline-block;
  background: #ff5a1f;
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-style: italic;
}

.other-services {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.other-services a {
  color: #555;
  text-decoration: none;
  margin: 0 5px;
  font-style: italic;
}

.other-services a:hover {
  color: #000;
}

.service_bottom_link{
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_bottom_link span{
    font-size: 18px;
}
/* Responsive */
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service_bottom_link{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

  .service-item {
    width: 100%;
    max-width: 100%;
  }
}


/* CTA SECTION BASE */
.cta-section {
  background-color: #0057d9;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* CTA HEADING */
.cta-heading {
  font-size: 59px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 25px;
  color: #fff;
}



@media (max-width: 1024px) {
  .cta-heading {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 36px;
    line-height: 42px;
  }
  
  .garage-services .section-heading h2, .testimonial-header h2, .blog-section-header h2, .section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 38px;
}
}


@media (max-width: 480px) {
  .cta-heading {
    font-size: 26px;
    line-height: 36px;
  }
}


/* BUTTONS */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-primary {
  background: #f15b2a;
  color: #fff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: transparent;
  color: #f15b2a;
  border-color: #f15b2a;
}



.testimonial-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}



.testimonial-carousel .testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 0px 40px;
  box-shadow: 15px 10.5px 30px 0px #00000014;

  text-align: center;
  position: relative;
  margin: 15px 0px;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.author-wrap {
  position: relative;
  margin-bottom: 20px;
}

.author-img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.quote-icon {
  position: absolute;
  bottom: -10px;
  left: 84%;
  transform: translateX(-50%);
  width: 60px !important;
  height: 60px;
}

.testimonial-text {
  font-size: 12px;
  font-weight: 400;
  color: #868686;
  line-height: 16px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  margin: 10px auto 16px;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.author-title {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-button {
  margin-top: -40px;
  text-align: right;
}

.testimonial-button .btn-primary {
  background-color: #f15b2a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.testimonial-button .btn-primary:hover {
  background-color: #d94f20;
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .testimonial-carousel .testimonial-card {
    padding: 25px 15px;
  }

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

  .author-img {
 
    height: auto;
  }
 
  .quote-icon {
    
    height: auto;
  }
  
  .testimonial-button {
    margin-top: 30px;
    text-align: center;
}
}

/* ===================== */
/* NAVIGATION ARROWS     */
/* ===================== */
.testimonial-carousel-wrapper {
  position: relative;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #a2a2a2;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  box-shadow: 0px 6px 12px 0px #0000000D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.testimonial-nav span {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin-top: -2px;
}

.testimonial-nav.prev {
  left: -24px;
}

.testimonial-nav.next {
  right: -24px;
}

.testimonial-nav:hover {
  background-color: #f15b2a;
  border-color: #f15b2a;
}

.testimonial-nav:hover span {
  color: #fff;
}

/* ===================== */
/* OWL DOTS STYLING      */
/* ===================== */
.owl-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}

.blog-carousel .owl-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  gap: 10px;
}

.owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e4e4e4;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.owl-dot.active span {
  background-color: #f15b2a !important;
}


.testimonial-nav img {
  width: 10px;
  height: auto;
  display: block;
}





.blog-slider-section {
  padding: 80px 20px;
  background: #fff;
}

.blog-section-header {
  text-align: center;
  margin-bottom: 50px;
}


.blog-slider-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.blog-slider-left {
  flex: 0 0 30%;
  max-width: 30%;
}
.blog-slider-left h3 {
  font-size: 37px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 40px;
}
.blog-slider-left p {
  font-size: 15px;
  color: #868686;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 20px;
}
.explore-btn {
  display: inline-block;
  background-color: #f15b2a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.explore-btn:hover {
  background-color: #d94f20;
}

.blog-slider-right {
  flex: 0 0 70%;
  max-width: 70%;
  position: relative;
}

/* Blog Card Styling */
.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px 4px #00000017;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
}
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-content {
  padding: 20px;
}
.blog-category {
  color: #f15b2a;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}
.blog-content h4 a{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  text-decoration: none;
}

.blog-content h4{
 line-height: 1;
}
.blog-content p {
  font-size: 14px;
  color: #7d7d7d;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-slider-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .blog-slider-left,
  .blog-slider-right {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .blog-slider-left h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 40px;
}
}

@media (min-width: 1024px) {
  .blog-carousel .owl-item.middle-item .blog-card {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-radius: 12px;
  }
}




/* === Recent Work Section === */

.recent-work {
  padding: 60px 0;
  background-color: #fff;
}

.recent-work .section-header {
  text-align: center;
  margin-bottom: 40px;
}



.recent-work .portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: left;
}

/* Portfolio Item */
.recent-work .portfolio-item {
  position: relative;
  width: calc(33.33% - 20px);
  overflow: hidden;
  height: 300px;
  border-radius: 6px;
  background-color: #000;
}

.recent-work .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.recent-work .portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.recent-work .portfolio-item:hover .overlay {
  opacity: 1;
}

.recent-work .overlay .location {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
  color: #fff;
}

.recent-work .overlay h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.recent-work .overlay .view-link {
  font-size: 14px;
  color: #FFC759;
  text-decoration: none;
  font-weight: 400;
}

/* Buttons */
.recent-work .portfolio-buttons {
  text-align: center;
  margin-top: 30px;
}

.recent-work .btn {
  background: #222;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
}

.recent-work .btn-orange {
  background-color: #f15b2a;
}

/* Hidden Items */
.recent-work .hidden {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .recent-work .portfolio-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .recent-work .portfolio-item {
    width: 100%;
  }
}




/* ========= Section Process STYLES ========= */

.process-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.section-title p {
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-step {
  flex: 1 1 220px;
}

.step-image img {
  max-width: 220px;
  margin: 0 auto 20px;
  display: block;
}

.process-step h4 {
  font-size: 19px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  line-height: 21px;
}

.process-step p {
  font-size: 12px;
  color: #868686;
  line-height: 16px;
}

@media (max-width: 768px) {
  .steps-wrapper {
    gap: 40px;
  }

  .process-step {
    max-width: 100%;
  }

  .step-image img {
    max-width: 100px;
  }
}




.area-serve-section {
  padding: 80px 20px;
  background: #fff;
}

.area-serve-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #C9DAE1;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.map-placeholder img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-details h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.info-list li {
  font-size: 14px;
  margin: 15px 0;
  color: #333;
}

.info-list i {
  color: #F95D2A;
  margin-right: 8px;
}

.connect i {
  color: #F95D2A;
  
}
.connect {
  margin-bottom: 20px;
}

.connect a {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.btn-orange {
  display: inline-block;
  background: #f15b2a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.area-text {
  flex: 1 1 500px;
}

.area-text h5 {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.area-text h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 15px;
}

.area-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.area-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 150px;
}

.area-list h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.area-list ul {
  padding: 0;
  list-style: disc;
  padding-left: 0px;
  font-size: 18px;
  color: #333;
}


.area-list ul li a{
  text-decoration: none;
  padding: 0;
  list-style: disc;
  padding-left: 0px;
  font-size: 18px;
  
}
@media (max-width: 992px) {
  .area-serve-wrapper {
    flex-direction: column;
  }
  .area-serve-section {
  padding: 80px 0px;
  background: #fff;
}
  .area-list ul {

  font-size: 14px;
 
}

.area-text h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

}

@media (max-width: 1227px) {
 .area-columns {
  gap: 40px;
}
}


/* ========= Banner STYLES ========= */

.global_banner {
  background-color: #0052cc;
  color: #fff;
  padding: 60px 0;
  padding-top: 80px;
  


  .global_banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  .global_banner-content {
    max-width: 800px;

    h1 {
      font-size: 59px;
      font-weight: 400;
      line-height: 64px;
      margin-bottom: 15px;
      color: #fff;

      span {
        display: block;
        font-weight: 700;
        font-size: 42px;
        color: #fff;
      }
    }

    p {
      font-size: 22px;
      font-weight: 500;
      line-height: 26px;
      margin-bottom: 40px;
      color: #fff;
    }

    .btn {
      padding: 12px 24px;
      background-color: #ff5722;
      color: #fff;
      font-weight: 600;
      border-radius: 4px;
      text-decoration: none;
    }
  }

  .global_banner-logo img {
    max-width: 250px;
    height: auto;
  }

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

    .global_banner-content,
    .global_banner-logo {
      width: 100%;
    }

    .global_banner-content h1,
    .global_banner-content h1 span {
      font-size: 32px;
      line-height: 39px;
    }
  }
}


/* ========= About Us STYLES ========= */

.quote-section {
  background-color: #f05523; /* Brand orange */
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.quote-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.quote-icon-custom img {
  width: auto;
  margin-bottom: 10px;
}

.quote-text p{
  font-size: 24px;
  line-height: 31px;
  font-weight: 400;
  color: #fff;
}

.quote-text strong {
  font-weight: 700;
}

.quote-author {
  font-family: Roboto;
  margin-top: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 31px;
  font-size: 16px;
  color: #fff;
}






.mission-section {
  padding: 80px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.mission-left,
.mission-right {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .mission-left {
    flex: 0 0 45%;
  }
  .mission-right {
    flex: 0 0 50%;
  }
}

.mission-left img {
  width: 100%;
  border-radius: 16px;
}

.mission-statement-box {
  background: #FEFBF8;
  border: 1px solid #ddd;
  padding: 20px 30px;
  border-radius: 16px;
  margin-top: 20px;
}

.statement-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.statement-top-row img{
  width: 80px;
}
.icon-house {
  width: 40px;
  height: auto;
}

.statement-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #F95D2A;
  text-align: center;
  line-height: 40px;
  margin: 0;
}

.statement-text h4 span {
  font-family: 'Petit Formal Script', cursive;
  font-size: 54px;
  color: #000;
  line-height: 50px;
  font-weight: 600;
}

.statement-description {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 12px;
  padding; 0px 40px;
}


.statement-text p {
  font-size: 14px;
  margin-top: 8px;
}

.mission-right h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.mission-right p {
  font-size: 16px;
  color: #555;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .mission-values {
    grid-template-columns: 1fr 1fr;
  }
}

.value-item {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.value-item img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.value-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14px;
  color: #666;
}




.faq-section {
  padding: 80px 20px;
  background: #fff;
}
.faq-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.faq-items {
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 14px;
  padding: 20px 50px;
  border: 1px solid #eaeaea;
  background: #fff;
  margin-top: 20px;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #101828;
}
.faq-question:hover{
    background-color: #0057d9;
}
.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #f15b2a;
}

.faq-answer {
  display: none;
  padding: 16px;
  padding-bottom: 0px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.faq-contact-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
}
.faq-contact-box img {
  max-height: 60px;
  margin-bottom: 20px;
}
.faq-contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-contact-box p {
  color: #888;
  font-size: 15px;
  margin-bottom: 20px;
}
.faq-call-btn {
  display: inline-block;
  background: #fdd835;
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
}

.faq-question:hover {
  background-color: #054FCC;
  color: #fff;
}
.faq-item.active .faq-question {
  background-color: #054FCC;
  color: #fff;
}
.faq-question .faq-toggle {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
  padding: 80px 0px;
  
}
    .faq-items {
  padding: 20px 10px;
}
  .faq-title {
    font-size: 24px;
  }
  .faq-contact-box h3 {
    font-size: 16px;
  }
  .faq-call-btn {
    font-size: 14px;
  }
}


/* Blog Grid Section */
.blog-grid-section {
  padding: 40px 20px 80px;
  background: #fff;
}

.blog-grid-section .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-grid-section .blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 20px);
}

.blog-grid-section .blog-thumb {
  position: relative;
}

.blog-grid-section .blog-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-grid-section .blog-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #054FCC;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-grid-section .blog-fav img {
  width: 20px;
  height: 20px;
}

.blog-grid-section .blog-content {
  background: #054FCC;
  color: #fff;
  padding: 20px 16px;
  padding-top: 30px;
}

.blog-grid-section .blog-content h3 a{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-decoration: none;
  
}

.blog-grid-section .blog-content h3{
  line-height: 1;
  
}

.blog-grid-section .blog-content h3 a:hover{
  
  color: #C2C2C2;
 
  
}

.blog-grid-section .blog-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  align-items: center;
}

.blog-grid-section .blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-grid-section .blog-meta img {
  width: 14px;
  height: 14px;
}

/* Buttons */
.blog-grid-section .blog-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.blog-grid-section .load-more {
  background: #f2f2f2;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.blog-grid-section .estimate-btn {
  background: #f15b2a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid-section .blog-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .blog-grid-section .blog-card {
    width: 100%;
  }

  .blog-grid-section .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-grid-section .blog-buttons {
    flex-direction: column;
    gap: 10px;
  }
}



.testimonial-page-wrapper .testimonial-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.testimonial-page-wrapper .testimonial-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.testimonial-page-wrapper .testimonial-header p {
  font-size: 1rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto 40px;
}

.testimonial-page-wrapper .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-page-wrapper .testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 40px;
  box-shadow: 15px 10.5px 30px 0px #00000014;
  width: calc(25% - 30px);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.testimonial-page-wrapper .author-wrap {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-page-wrapper .author-img {
  width: 110px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.testimonial-page-wrapper .quote-icon {
  position: absolute;
  bottom: -10px;
  left: 84%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
}

.testimonial-page-wrapper .testimonial-text {
  font-size: 12px;
  font-weight: 400;
  color: #868686;
  line-height: 16px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.testimonial-page-wrapper .testimonial-dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  margin: 10px auto 16px;
}

.testimonial-page-wrapper .author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.testimonial-page-wrapper .author-title {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-page-wrapper .testimonial-buttons {
  margin-top: 40px;
  text-align: center;
}

.testimonial-page-wrapper .btn.load-more {
  background-color: #f5f5f5;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid #ccc;
  cursor: pointer;
  margin-right: 10px;
}

.testimonial-page-wrapper .btn.btn-primary {
  background-color: #f15b2a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.testimonial-page-wrapper .btn.btn-primary:hover {
  background-color: #d94f20;
}

.testimonial-page-wrapper .testimonial-card.hidden {
  display: none;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .testimonial-page-wrapper .testimonial-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .testimonial-page-wrapper .testimonial-card {
    width: 100%;
  }

  .testimonial-page-wrapper .testimonial-text {
    font-size: 13px;
  }

  .testimonial-page-wrapper .testimonial-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-page-wrapper .btn.load-more,
  .testimonial-page-wrapper .btn.btn-primary {
    width: 100%;
    margin: 5px 0;
  }
}












.free-estimate-section {
  padding: 60px 20px;
  background-color: #fff;
}

.free-estimate-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #054FCC;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
  justify-content: space-between;
  align-items: center;
}

.free-estimate-form {
  flex: 1 1 50%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}

.free-estimate-form h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #000;
  line-height: 50px;
}

.form-placeholder {
  border: 2px dashed #ccc;
  padding: 40px;
  text-align: center;
  font-style: italic;
  color: #777;
}

.free-estimate-info {
  flex: 1 1 35%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.urgent-label,
.phone-box,
.trusted-label {
  color: #fff;
  font-size: 30px;
  line-height: 39px;
}

.phone-box {
  background-color: #FFB703;
  color: #000;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 18px;
}

.trusted-label {
  font-size: 26px;
  margin: 20px 0 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid #FFFFFF85;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.trust-logo {
  background: #fff;
  padding: 30px 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
}




.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 22px;
  height: 22px;
}

.free-estimate-section .free-estimate-section-connect a {
  display: inline-flex;
  align-items: center; /* Align icon and text vertically */
  justify-content: flex-start;
  gap: 10px 5px;
  margin: 6px 5px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
  vertical-align: middle;
}

.free-estimate-section .free-estimate-section-connect a img {

  
  width: 100%;
  height: auto;
  padding: 5px;
  object-fit: contain;
  display: inline-block;
}
@media (min-width: 769px) and (max-width: 1220px) {
  .free-estimate-section .trust-logo img {
    width: 80%;
  }
  .free-estimate-wrapper {
    flex-direction: column;
    padding: 20px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .free-estimate-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .free-estimate-form,
  .free-estimate-info {
    flex: 1 1 100%;
  }

  .trust-logos {
    grid-template-columns: repeat(1, 1fr);
  }
}



.contact-form-section {
  padding: 60px 20px;
  background-color: #fff;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #054FCC;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
  justify-content: space-between;
}

.referral-contact-form-wrapper {
  
  background: #054FCC;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px 20px;
  padding-bottom: 20px;
  
}

.contact-form-left {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}

.map-placeholder iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.contact-details .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-details .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.contact-form-section-connect a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 10px 6px 0;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  border-radius: 50px;
  padding: 6px 10px;
}

.contact-form-section-connect a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.google-rating img {
  max-width: 180px;
  margin-top: 15px;
}

.google-rating .ti-widget-container{
  text-align: left !important;
}
.contact-form-right {
  flex: 1 1 45%;
  display: flex;
  color: #fff;
  font-style: italic;
  font-size: 1rem;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form-left,
  .contact-form-right {
    flex: 1 1 100%;
  }

  .contact-form-section-connect {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}



.signature-projects-section {
  padding: 80px 20px;
  background: #fff;
}

.signature-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

}

.signature-text {
  flex: 1 1 45%;
}

.signature-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.signature-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.signature-icons {
  flex: 1 1 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.signature-item {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.signature-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.signature-item img {
  width: 50px;
  height: auto;
  margin-bottom: 12px;
}

.signature-item h4 {
  font-size: 18px;
  font-weight: 500;
  color: #101828;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .signature-content {
    flex-direction: column;
    text-align: center;
  }

  .signature-text {
    flex: 1 1 100%;
  }

  .signature-icons {
    flex: 1 1 100%;
    justify-content: center;
  }

  .signature-item {
    flex: 1 1 30%;
  }
}

@media (max-width: 576px) {
  .signature-item {
    flex: 1 1 100%;
  }
}



.garage-door-portfolio-section {
  padding: 60px 20px;
  background: #fff;
}

.garage-door-container {
 

}

.garage-door-title {
  text-align: center;
  font-size: 39px;
  font-weight: 500;
  margin-bottom: 40px;
}

.garage-door-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.garage-door-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: calc(33.33% - 20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.garage-door-card:hover {
  transform: translateY(-4px);
}

.garage-door-thumb {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.garage-door-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.garage-door-thumb:hover img {
  transform: scale(1.05);
}

.garage-door-view-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
  display: none;
  line-height: 1.4;
}

.garage-door-thumb:hover .garage-door-view-overlay {
  display: block;
}

.garage-door-content {
  padding: 20px;
}

.garage-door-heading {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.garage-door-description{
    font-size: 16px;
    color: #7D7D7D;
}
.garage-door-meta {
  font-size: 16px;
  color: #555;
  margin-bottom: 6px;
}

.garage-door-meta strong {
  color: #000;
}

.garage-door-meta span {
  color: #f15b2a;
}

.garage-door-meta span a{
  text-decoration: none;
}
.garage-door-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.garage-door-load-more {
  background: #f2f2f2;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.garage-door-estimate-btn {
  background: #f15b2a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .garage-door-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .garage-door-card {
    width: 100%;
  }

  .garage-door-buttons {
    flex-direction: column;
    gap: 12px;
  }
}



/* Base Section */
.garage-door-section {
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}



/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-button {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background-color: #f2f2f2;
  color: #333;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.filter-button.active,
.filter-button:hover {
  background-color: #FF5C1B;
  color: #fff;
}

/* Grid for Cards */
.door-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-button {
    white-space: nowrap;
  }
}

/* Card Style */
.door-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.door-card:hover {
  transform: translateY(-5px);
}

.door-top {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.bg-carriage {
  background-color: #3A271C;
}

.bg-modern-glass {
  background-color: #0D2C61;
}

.bg-raised-panel {
  background-color: #C8B57F;
}

.bg-farmhouse {
  background-color: #3E3635;
}

/* Bottom Content */
.door-bottom {
  padding: 20px;
  text-align: left;
}

.door-title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 22px;
  color: #333;
}

.door-top h3{
    color: #fff;
    font-size: 22px;
}

/* Colours Row */
.color-row {
  display: flex;
  align-items: center;

  gap: 8px;
  margin-bottom: 15px;
}

.color-label {
  font-size: 18px;
  font-weight: 400;
  color: #555;
}

.color-dots {
  display: flex;
  gap: 6px;
}

.dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #999;
}

.dot-dark { background: #333; }
.dot-grey { background: #888; }
.dot-black { background: #000; }
.dot-light { background: #ddd; }
.dot-cream { background: #e7dbb7; }

/* View Button */
.details-btn {
  display: block;
  background-color: #FF5C1B;
  color: #fff;
  padding: 10px 28px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
  margin-top: 10px;
  text-align: center;
}

.details-btn:hover {
  background-color: #e45116;
}



/* Garage Door Openers */



.garage-openers-section {
  padding: 60px 20px;
  background-color: #fff;
}

.garage-openers-section .container{
  max-width: 1000px;
  margin: 0 auto;
}

.garage-openers-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}



.garage-openers-section .section-header p {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.openers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.opener-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #0b2b52;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.opener-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.opener-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.opener-info h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.opener-desc {
  color: #D2D2D2;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.opener-info hr {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  margin: 15px 0;
  margin-top: 0px;
}

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

.features-list li {
  display: flex;
  align-items: center;
  color: #D2D2D2;
  font-size: 14px;
  margin-bottom: 10px;
}

.features-list img {
  width: 16px;
  height: auto;
  margin-right: 10px;
}



/* Responsive */
@media screen and (max-width: 991px) {
  .openers-grid {
    grid-template-columns: 1fr;
  }

  .opener-image {
    height: 180px;
  }
}







.product-feature-section {
  padding: 60px 20px;
  background: #fff;
}

.product-feature-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.product-feature-content {
  flex: 1 1 50%;
}

.product-brand {
  color: #f15b2a;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-model {
  font-size: 2.5rem;
  font-weight: 800;
  color: #054FCC;
  margin: 0;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0;
  color: #222;
}

.product-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.btn-orange {
  background-color: #f15b2a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.product-icons {
  display: flex;
  gap: 20px;
}

.product-icons a {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.product-icons img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Right Image Section */
.product-feature-image {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-image img {
  max-width: 100%;
  /*width: 350px;*/
  border: 2px solid #f15b2a;
  border-radius: 6px;
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.color-swatches .swatch {
  width: 30px;
  height: 30px;
  border: 2px solid #f15b2a;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .product-feature-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .product-feature-content,
  .product-feature-image {
    flex: 1 1 100%;
  }

  .product-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}



.product-tabs-section {
  padding: 60px 20px;
  background-color: #fff;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
}

.tab {
    padding: 12px 24px;
    border: none;
    background: #F3F4F6;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: 0.5s;
    margin-right: 10px;
    border-radius: 6px 6px 0px 0px;
}

.tab.active {
  background-color: #f15b2a;
  color: #fff;
  border-radius: 6px 6px 0 0;
}

.tab-content {
  display: none;
  animation: fadeIn 0.8s ease;
}

.tab-content.active {
  display: block;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item .icon {
  background-color: #fff5f0;
  color: #f15b2a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.feature-item strong {
  display: block;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.specs-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .tab {
    flex: 1;
    text-align: center;
  }

  .spec-row {
    flex-direction: column;
    gap: 4px;
  }
}





 .hidden-project {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  height: 0;
  overflow: hidden;
}
.garage-door-card.fade-in {
  display: block;
  height: auto;
  opacity: 1 !important;
  transform: translateY(0) !important;
  overflow: visible;
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}



/* ========== Single Blog Section ========== */

.single-blog__section {
  padding: 60px 0;
}

.single-blog__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.single-blog__row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* Content: 70% width */
.single-blog__content {
  flex: 0 0 68%;
  max-width: 68%;
}

/* Image: 30% width */
.single-blog__image {
  flex: 0 0 29%;
  max-width: 29%;
}

.single-blog__featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Responsive: Stack layout on smaller screens */
@media (max-width: 991px) {
  .single-blog__content,
  .single-blog__image {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.single-blog__section .wp-block-separator{
    border-top: none;
}



.portfolio-item.hidden-project {
  display: none;
}
referral-contact-form-wrapper
.portfolio-item.fade-in {
  display: block;
  animation: fadeIn 0.7s ease-in-out;
}

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



/* ========== Form Section ========== */


.gform-field-label{
    color: #464646 !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

.page-template-contact  .gform-field-label{
    color: #fff !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

.referral-form  .gform-field-label{
    color: #fff !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}
.gfield_required{
    display: none !important;
}

.gfield#field_submit{
    padding: 10px 30px !important;
    
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper select {
  padding-right: 35px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.icon-name input { background-image: url('https://amarwp.com/royaldoorkc/wp-content/uploads/2025/07/Vector-16.png'); }
.icon-phone input { background-image: url('https://amarwp.com/royaldoorkc/wp-content/uploads/2025/07/Vector-18.png'); }
.icon-email input { background-image: url('https://amarwp.com/royaldoorkc/wp-content/uploads/2025/07/Group-2.png'); }
.icon-address input { background-image: url('https://amarwp.com/royaldoorkc/wp-content/uploads/2025/07/Vector-17.png'); }


.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  
  /* Initial state: always ready to transition */
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  
  /* Add smooth transitions */
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.sticky-header.hide {
  transform: translateY(-100%);
  box-shadow: none;
}

@media (max-width: 767px) {
  .area-serve-section,
  .process-section,
  .recent-work,
  .blog-slider-section,
  .testimonial-section,
  .garage-services,
  .why-choose-section,
  .mission-section,
  .faq-section {
    padding-top: 50px;
    padding-bottom: 30px;
  }
	.testimonial-section{
		padding-top: 50px;
        padding-bottom: 0px
	}
}



