/* ====== TOP BAR ====== */
.topbar-fe {
  background-color: #fe423d;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.topbar-fe i {
  margin-right: 6px;
  color: #fff;
  
}
.topbar-fe a {
  color: #fff;
  margin-left: 12px;
  font-size: 15px;
  transition: color 0.3s ease, transform 0.2s ease;
}
.topbar-fe a:hover {
  color: #ffd6d3;
  transform: translateY(-2px);
}

/* ====== NAVBAR ====== */
.main-navbar-fe {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.main-navbar-fe .navbar-brand img {
  transition: transform 0.3s ease;
}
.main-navbar-fe .navbar-brand img:hover {
  transform: scale(1.05);
}
.main-navbar-fe .nav-link {
  font-weight: 520;
  font-size: 15px;
  color: #333;
  margin: 0 12px;
  position: relative;
  transition: color 0.3s ease;
}
.main-navbar-fe .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: #fe423d;
  transition: width 0.3s ease;
}
.main-navbar-fe .nav-link:hover::after,
.main-navbar-fe .nav-link.active::after {
  width: 100%;
}
.main-navbar-fe .nav-link:hover,
.main-navbar-fe .nav-link.active {
  color: #fe423d;
}

.btn-fe {
  background-color: transparent;
  color: #fe423d !important;
  border: 2px solid #fe423d;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover effect */
.btn-fe:hover {
  background-color: #fe423d;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(254, 66, 61, 0.3);
  transform: translateY(-2px);
}

/* Click press effect */
.btn-fe:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(254, 66, 61, 0.2);
}

/* Ripple animation */
.btn-fe::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(254, 66, 61, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.5s ease;
  opacity: 0;
}

.btn-fe:active::after {
  width: 200%;
  height: 200%;
  opacity: 1;
  transition: 0s;
}


/* Toggler */
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(254,66,61,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991.98px) {
  .topbar-right-fe {
    display: none !important;
  }
  .topbar-left-fe {
    text-align: center;
    width: 100%;
  }
  .main-navbar-fe .nav-link {
    margin: 8px 0;
    text-align: center;
  }
  .btn-fe {
    width: 100%;
    text-align: center;
  }
}
/* Modal Css*/
/* ===== Modal UI/UX Enhancements ===== */
.login-modal-fe {
  background: #ffffff;
  border-radius: 20px;
  padding-top: 10px;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
}

/* Smooth fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input fields */
.input-fe {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}
.input-fe:focus {
  border-color: #fe423d;
  box-shadow: 0 0 8px rgba(254, 66, 61, 0.2);
}


/* Subtext */
.modal-body label {
  font-size: 14px;
}

.modal-header img {
  height: 50px;
}

/* Center content spacing */
.modal-content p {
  font-size: 14px;
  color: #6c757d;
}
/* Hero section */

/* Base */
.hero-modern {
  position: relative;
  height: 100vh;
  background: url('../img/slides/slide-1.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Overlay */
.hero-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Text Content */
.hero-text {

  animation: fadeInSlide 1.3s ease-out forwards;
}

.hero-text h1 {
      max-width: 700px;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-text h2 {
      max-width: 600px;
  font-size: 1.8rem;
  color: #FE423D;
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-text p {
      max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e8e8e8;
  margin-bottom: 40px;
}

.hero-text .highlight {
      max-width: 600px;
  color: #FE423D;
  font-weight: 600;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-main {
  background: #FE423D;
  color: #fff;
  padding: 14px 38px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254,66,61,0.4);
}

.btn-main:hover {
  background: #e13a33;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,66,61,0.5);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 38px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #FE423D;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    justify-content: center;
    text-align: center;
  }
  .hero-container {
    justify-content: center;
  }
  .hero-text {
    max-width: 90%;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text h2 {
    font-size: 1.3rem;
  }
}




/* WHY CHOOSE US SECTION */
.why-choose-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .tagline {
  color: #FE423D;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
}

.section-header h2 {
  font-weight: 600;
  color: #222;
  font-size: 36px;
}

.section-header h2 span {
  color: #FE423D;
}

.section-header .intro-text {
  max-width: 650px;
  margin: 15px auto 0;
  color: #555;
  line-height: 1.7;
}

.choose-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 50px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.choose-card .icon {
  font-size: 40px;
  color: #FE423D;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.choose-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.choose-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.choose-card:hover {
  transform: translateY(-10px);
  border-color: #FE423D;
  box-shadow: 0 10px 25px rgba(254,66,61,0.15);
}

.choose-card:hover .icon {
  transform: scale(1.15) rotate(8deg);
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }
  .choose-card {
    padding: 30px 20px;
  }
}
/* FAQ SECTION */
.faq-section {
   background: linear-gradient(135deg, #fff 0%, #fdf3f2 100%);

  padding: 100px 0;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header .tagline {
  color: #FE423D;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
}

.faq-header h2 {
  font-weight: 600;
  color: #222;
  font-size: 34px;
}

.faq-header h2 span {
  color: #FE423D;
}

.faq-header .intro-text {
  max-width: 680px;
  margin: 15px auto 0;
  color: #555;
  line-height: 1.7;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item.active {
  border-color: #FE423D;
  box-shadow: 0 8px 20px rgba(254,66,61,0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 25px;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question .icon {
  color: #FE423D;
  font-size: 20px;
  margin-right: 10px;
}

.faq-question:hover {
  color: #FE423D;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 25px 25px;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.arrow i {
  transition: transform 0.3s ease;
  color: #FE423D;
}

.faq-item.active .arrow i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 26px;
  }
  .faq-question {
    font-size: 16px;
  }
}

/* btn */
/* Floating Phone Icon */
.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    background-color: #ff0000; /* green like WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
    transition: transform 0.3s;
}

/* Hover effect */
.phone-float:hover {
    transform: scale(1.2);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}
/* =========================
   GET A QUOTE SECTION STYLES
========================= */
#getquote {
  position: relative;
  color: #222;
  font-family: 'Poppins', 'Roboto', sans-serif;
}

/* Dark overlay */
#getquote .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 0;
}

/* Headline */
#getquote h1 {
  text-transform: uppercase;
  font-size: 2.8em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

/* Red underline under the main title */
#getquote h1 + div {
  background-color: #ff0000;
  height: 4px;
  width: 100px;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Form container styling */
#getquote .col-lg-7 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

#getquote .col-lg-7:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Sidebar styling */
#getquote .col-lg-4 {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Section title inside the form */
.form-header h3 {
  font-size: 1.8rem;
  color: #ff0000;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.form-header p {
  color: #777;
  font-size: 0.95rem;
}

/* Inputs */
#getquote input[type="text"],
#getquote input[type="date"],
#getquote input[type="time"],
#getquote input[type="number"],
#getquote input[type="email"],
#getquote select {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 5px;
  transition: border 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}

#getquote input:focus,
#getquote select:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* Labels */
#getquote label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  font-size: 0.95rem;
}

/* Buttons */
#getquote button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#getquote button:hover {
  background-color: #e00000;
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
}

/* Tabs */
.tablink {
  background: #f8f8f8;
  border: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
}

.tablink a {
  display: block;
  color: #111;
  text-decoration: none;
  padding: 10px 0;
}

.tablink:hover {
  background-color: #ff0000 !important;
}

.tablink:hover a {
  color: #fff;
}

/* Active Tab */
.tablink.active,
.tablink.active a {
  background-color: #ff0000 !important;
  color: #fff !important;
}

/* Pricing and notes */
#getquote p {
  line-height: 1.7;
  font-size: 0.95rem;
}

#getquote p strong {
  color: #111;
}

/* Phone link */
#getquote a[href^="tel"] {
  color: #ff0000;
  font-weight: 600;
}

/* Success Message */
.sucess {
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  #getquote h1 {
    font-size: 2.2em;
  }

  #getquote .col-lg-7,
  #getquote .col-lg-4 {
    margin-top: 20px !important;
  }

  .form-header p {
    font-size: 0.9rem;
  }

  #getquote button {
    font-size: 0.95rem;
  }
}

/* ===== ABOUT US SECTION ===== */
.about-us-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff 0%, #fdf3f2 100%);
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Content Layout */
.about-us-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Section */
.about-us-text {
  flex: 1 1 500px;
  z-index: 2;
}

.about-us-text h2 {
    font-size: 34px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.2;
}

.about-us-text h2 span {
  color: #FE423D;
}



.about-us-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Button */
.btn-about {
  display: inline-block;
  background-color: #FE423D;
  color: #fff !important;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(254, 66, 61, 0.3);
}

.btn-about:hover {
  background-color: #e53b35;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(254, 66, 61, 0.4);
}

/* Image Section */
.about-us-image {
  flex: 1 1 450px;
  text-align: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.about-us-image img {
  width: 100%;
  max-width: 460px;
  z-index: 2;
  position: relative;
  transition: transform 0.4s ease;
}

.about-us-image img:hover {
  transform: scale(1.05);
}

/* Decorative Shape */
.bg-shape {
  position: absolute;
  top: 30px;
  right: -30px;
  width: 120%;
  height: 90%;
  background: rgba(254, 66, 61, 0.05);
  border-radius: 50% 50% 0 50%;
  z-index: 1;
  transition: 0.4s ease;
}

.image-wrapper:hover .bg-shape {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-us-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-us-text h2 {
    font-size: 32px;
  }

  .about-us-text p {
    font-size: 16px;
  }

  .btn-about {
    padding: 10px 28px;
  }

  .bg-shape {
    display: none;
  }
}
/* ===== FOOTER ===== */
.footer-fe {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Open Sans', sans-serif;
}

.footer-fe .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.footer-fe .footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer-fe .footer-logo span {
  color: #fe423d;
}

.footer-fe p {
  color: #ccc;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}

.footer-fe h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.footer-fe h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #fe423d;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-fe ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-fe ul li {
  margin-bottom: 10px;
}

.footer-fe ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-fe ul li a:hover {
  color: #fe423d;
}

.footer-fe .contact-info i {
  color: #fe423d;
  margin-right: 8px;
}

.footer-fe .social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-fe .social-icons a:hover {
  background: #fe423d;
}

.footer-fe .newsletter-form {
  display: flex;
  margin-top: 10px;
}

.footer-fe .newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
}

.footer-fe .newsletter-form button {
  background-color: #fe423d;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: 0.3s;
}

.footer-fe .newsletter-form button:hover {
  background-color: #e83e38;
}

.footer-fe .footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #999;
}

.footer-fe .footer-bottom a {
  color: #fe423d;
  text-decoration: none;
  font-weight: 500;
}

.footer-fe .footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-fe {
    text-align: center;
  }
  .footer-fe .newsletter-form {
    flex-direction: column;
  }
  .footer-fe .newsletter-form input,
  .footer-fe .newsletter-form button {
    border-radius: 30px;
    margin-top: 8px;
  }
}
  /* OUR SERVICES SECTION */
.services-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .tagline {
  color: #FE423D;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
}

.section-header h2 {
  font-weight: 600;
  color: #222;
  font-size: 36px;
}

.section-header h2 span {
  color: #FE423D;
}

.section-header .intro-text {
  max-width: 700px;
  margin: 15px auto 0;
  color: #555;
  line-height: 1.7;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  height: 450px; /* ✅ Fixed height for all boxes */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #FE423D;
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  font-size: 42px;
  color: #FE423D;
  margin-bottom: 18px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;              /* ✅ hides overflowed text */
  text-overflow: ellipsis;       /* ✅ adds neat ... if text is too long */
  display: -webkit-box;          /* ✅ makes multiline ellipsis work */
  -webkit-line-clamp: 9;         /* ✅ adjust number of visible lines */
  -webkit-box-orient: vertical;  
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #FE423D;
  box-shadow: 0 12px 25px rgba(254, 66, 61, 0.15);
}

.service-card:hover .icon {
  transform: scale(1.1) rotate(6deg);
  color: #d1322e;
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    height: auto; /* ✅ on mobile, let boxes auto resize */
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }
  .service-card {
    padding: 30px 20px;
  }
}


/* SERVICE AREAS SECTION */
.service-areas-section {
  background: linear-gradient(135deg, #fff 0%, #fdf3f2 100%) !important;

  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .tagline {
  color: #FE423D;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
}

.section-header h2 {
  font-weight: 600;
  color: #222;
  font-size: 36px;
}

.section-header h2 span {
  color: #FE423D;
}

.section-header .intro-text {
  max-width: 700px;
  margin: 15px auto 0;
  color: #555;
  line-height: 1.7;
}

.service-area-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* AREA CARD STYLING */
.area-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.area-card i {
  font-size: 28px;
  color: #FE423D;
  margin-bottom: 12px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.area-card h4 {
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin: 0;
}

.area-card:hover {
  transform: translateY(-6px);
  border-color: #FE423D;
  box-shadow: 0 10px 25px rgba(254, 66, 61, 0.15);
}

.area-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #d1322e;
}

/* Full width card for final line */
.full-width {
  background: #FE423D;
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(254, 66, 61, 0.2);
}

.full-width i {
  color: #fff;
}

.full-width h4 {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }
  .area-card {
    padding: 25px 15px;
  }
}
/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .tagline {
  color: #FE423D;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
}

.section-header h2 {
  font-weight: 600;
  color: #222;
  font-size: 36px;
}

.section-header h2 span {
  color: #FE423D;
}

.section-header .intro-text {
  max-width: 700px;
  margin: 15px auto 0;
  color: #555;
  line-height: 1.7;
}

/* ===================== TESTIMONIAL CARD ===================== */
.testimonial-card {
   background: linear-gradient(135deg, #fff 0%, #fdf3f2 100%);

  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(254, 66, 61, 0.15);
}

.testimonial-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
}

.quote-icon {
  color: #FE423D;
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid #FE423D;
}

.testimonial-author h5 {
  color: #222;
  font-size: 17px;
  margin: 0;
  font-weight: 600;
}

.testimonial-author span {
  color: #777;
  font-size: 14px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .testimonial-card {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
  .testimonial-card {
    margin-bottom: 20px;
  }
}
 