/*
=============== 
Fonts
===============
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap');

/*
=============== 
Variables
===============
*/

:root {
  /* Dark shades of primary color */
  --clr-primary-1: hsl(246, 60%, 10%);
  --clr-primary-2: hsl(246, 60%, 15%);
  --clr-primary-3: hsl(246, 60%, 20%);
  --clr-primary-4: hsl(246, 60%, 25%);
  /* Primary/main color */
  --clr-primary-5: hsl(246, 60%, 30%);
  /* #171058 */
  /* Lighter shades of primary color */
  --clr-primary-6: hsl(246, 60%, 40%);
  --clr-primary-7: hsl(246, 60%, 50%);
  --clr-primary-8: hsl(246, 60%, 60%);
  --clr-primary-9: hsl(246, 60%, 70%);
  --clr-primary-10: hsl(246, 60%, 80%);

  /* Darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* Grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);

  /* Other colors */
  --clr-white: #fff;
  --clr-black: #222;
  --clr-red-dark: hsl(360, 67%, 44%);
  --clr-red-light: hsl(360, 71%, 66%);
  --clr-green-dark: hsl(125, 67%, 44%);
  --clr-green-light: hsl(125, 71%, 66%);
  --clr-yellow: hsl(42, 78%, 60%);
  /* Golden yellow for buttons */
  --clr-yellow-dark: hsl(42, 78%, 50%);
  /* Darker yellow for hover */
  --clr-turquoise: hsl(175, 60%, 60%);
  /* Turquoise for links */
  --clr-turquoise-dark: hsl(175, 60%, 50%);
  /* Darker turquoise for hover */
  --clr-coral: hsl(0, 100%, 70%);
  /* Coral pink for accents */
  --clr-coral-dark: hsl(0, 100%, 60%);
  /* Darker coral for hover */

  /* Fonts */
  --ff-primary: 'Roboto', sans-serif;
  --ff-secondary: 'Open Sans', sans-serif;

  /* Other variables */
  --transition: all 0.3s linear;
  --spacing: 0.1rem;
  --radius: 0.25rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
  --fixed-width: 620px;
}

/*
=============== 
Global Styles
===============
*/

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

body {
  font-family: var(--ff-secondary);
  background: var(--clr-grey-10);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}

/* Remove default margin and padding from body and main */
body,
main {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-8);
  font-family: var(--ff-primary);
}

.btn {
  padding: 8px 26px;
}

@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1rem;
  }

  body {
    font-size: 1rem;
  }

  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}

/*  global classes */

/* section */
.section {
  padding: 5rem 0;
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}

@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

/* --TOP NAV STARTS HERE-----------------------TOP NAV BEGINS HERE---------------------------------- */
/* --TOP NAV STARTS HERE-----------------------TOP NAV BEGINS HERE---------------------------------- */


.top-nav {
  background-color: var(--clr-primary-3);
  color: var(--clr-white);
  padding-top: 5px;
  padding-bottom: 5px;
}

.top-nav p {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--clr-white);
}

.top-nav i {
  vertical-align: middle;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  /* Space between icons */
}

.social-icons a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background-color: var(--clr-primary-2);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--clr-white);
  color: var(--clr-primary-2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-nav .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .social-icons {
    margin-top: 10px;
  }
}

/* --TOP NAV ENDS HERE-----------------------TOP NAV ENDS HERE---------------------------------- */
/* --TOP NAV ENDS HERE-----------------------TOP NAV ENDS HERE---------------------------------- */


/* ---NAVBAR STARTS--------------------------NAVBAR BEGINS HERE---------------------------------- */
/* ---NAVBAR STARTS--------------------------NAVBAR BEGINS HERE---------------------------------- */


nav {
  background: var(--clr-white);
  box-shadow: var(--light-shadow);
  padding: 10px 20px;
}

.logo:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.logo-container {
  width: 150px;
  height: 80px;
  overflow: hidden;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-size: 18px;
  padding: 8px 15px;
  transition: all 0.3s ease;
  color: #000; 
  font-weight: 500; /* Slightly bolder */
  margin: 0 5px;
  border-radius: 4px;
}

/* Hover Effect - Underline */
.nav-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--clr-primary-1) !important;
  color: var(--clr-white); /* Keep the color change if desired */
}

/* Active Link - Underline */
.navbar-nav .nav-link.active {
  text-decoration: underline;
   text-decoration-color: var(--clr-primary-1) !important;
  font-weight: 600;
}

/* Contact Link - Special Styling */
.nav-item-contact {
  margin-left: 15px;
}

.nav-link-contact {
  background-color: var(--clr-primary-1);
  color: var(--clr-white) !important;
  border-radius: 6px;
  padding: 8px 20px !important;
  font-weight: 600;
}

.nav-link-contact:hover {
  background-color: var(--clr-primary-3) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-link-contact.active {
  background-color: var(--clr-primary-3) !important;
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px;
  }

  .nav-item-contact {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav-link-contact {
    display: inline-block;
    width: auto;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .navbar-toggler {
    border: none;
    font-size: 24px;
  }

  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px;
    display: block;
  }

  .nav-item-contact {
    margin: 10px auto;
  }

  .nav-link-contact {
    width: 80%;
    margin: 10px auto;
  }
}


/* --NAVBAR ENDS--------------------------------NAVBAR ENDS HERE--------------------------------- */
/* --NAVBAR ENDS--------------------------------NAVBAR ENDS HERE--------------------------------- */

/*---SLIDER SECTION STARTS--------- SLIDER SECTION STARTS HERE------------------------------------ */
/*---SLIDER SECTION STARTS--------- SLIDER SECTION STARTS HERE------------------------------------ */

/* Main Slider Styles */
.main-hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.main-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

.main-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.main-slide .container {
  position: relative;
  z-index: 2;
}

.slide1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/fullhouse.jpg);
}

.slide2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/fullhouse1.jpg);
}

.slide3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/renovate.jpg);
}

.slide4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/floor.jpg);
}

/* Text Animation */
.main-slide h6 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.3s forwards;
}

.main-slide h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.6s forwards;
}

.main-slide p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.9s forwards;
}

.main-slide .btn {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 1.2s forwards;
}

.main-slide .btn-outline-light {
  animation: fadeInUp 0.8s 1.4s forwards;
}

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

/* Owl Carousel Customization */
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-size: 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
  background: #fff !important;
  transform: scale(1.2);
}

/* Button Styles */
.btn-brand {
  background: var(--clr-primary-1);
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background: var(--clr-primary-3);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .main-slide h1 {
    font-size: 2.5rem !important;
  }
  
  .main-slide p {
    font-size: 1rem;
  }
  
  .owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 18px !important;
  }
}



/*-----SLIDER SECTION ENDS---------------------- SLIDER SECTION ENDS HERE -----------------------------*/
/*-----SLIDER SECTION ENDS---------------------- SLIDER SECTION ENDS HERE -----------------------------*/


/*---ABOUT STARTS HERE--------------------- ABOUT US SECTION ---ABOUT STARTS HERE---------------------*/
/*---ABOUT STARTS HERE--------------------- ABOUT US SECTION ---ABOUT STARTS HERE---------------------*/

.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Heading Styling */
.about-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--clr-primary-5);
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: #007bff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
}

.about-section h2:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Text Styling */
.about-content {
  text-align: left;
}

.animated-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  color: var(--dark-shadow);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Styling */
.btn-qoute {
  border-color: var(--clr-primary-1);
  background-color: var(--clr-primary-1);
  color: var(--clr-white);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-qoute:hover {
  background-color: var(--clr-primary-3);
  border-color: var(--clr-primary-3);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.about-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-img:hover {
  transform: translateY(-10px);
}

/* Features Section */
.features-heading h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--clr-primary-5);
  text-transform: uppercase;
  text-align: center;
}

/* Feature Box */
.feature-box {
  text-align: center;
  padding: 30px;
  background: var(--clr-white);
  border-radius: 10px;
  box-shadow: 0 4px 8px var(--light-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  /* Ensure all boxes are equal width */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* Ensure equal height */
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 18px var(--dark-shadow);
  background: linear-gradient(
    135deg,
    var(--clr-primary-3),
    var(--clr-primary-1)
  );
  color: var(--clr-white);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-description{
  color: var(--dark-shadow);
}

/* 🌍 Mobile & Tablet Responsiveness */

/* Tablets (Medium Screens) */
@media (max-width: 991px) {
  .about-content {
    text-align: center;
  }

  .about-img img {
    width: 90%;
    margin: auto;
  }

  .btn-qoute {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .features-heading h3 {
    font-size: 1.8rem;
  }

  .feature-box {
    padding: 20px;
    height: auto;
    /* Adjust height for smaller screens */
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }
}

/* Mobile (Small Screens) */
@media (max-width: 767px) {
  .about-section {
    text-align: center;
  }

  .about-content {
    text-align: center;
    padding: 0 20px;
  }

  .about-img {
    margin-bottom: 20px;
  }

  .btn-qoute {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .features-heading h3 {
    font-size: 1.6rem;
  }

  .feature-box {
    width: 100%;
    /* Ensures all boxes have equal width */
    padding: 15px;
    margin-bottom: 15px;
    height: auto;
    /* Adjust for mobile */
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }
}

/*-----ABOUT ENDS HERE------------------ ABOUT US SECTION ENDS -----ABOUT ENDS HERE------------------*/
/*-----ABOUT ENDS HERE------------------ ABOUT US SECTION ENDS -----ABOUT ENDS HERE------------------*/

/*----SERVICE SECTION STARS HERE----- SERVICES SECTION STARTS HERE ----SERVICE SECTION STARS HERE-----*/
/*----SERVICE SECTION STARS HERE----- SERVICES SECTION STARTS HERE ----SERVICE SECTION STARS HERE-----*/


.svc-container {
  background: #f9f9f9;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.svc-services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--clr-primary-5);
  position: relative;
  display: inline-block;
}

.svc-services-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: var(--clr-primary-3);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
}

.svc-services-section h2:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.svc-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.svc-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 220px;
}

.svc-carousel img {
  display: none;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.svc-carousel img.svc-active {
  display: block;
}

.svc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
  border-radius: 50%;
}

.svc-btn.svc-prev {
  left: 10px;
}

.svc-btn.svc-next {
  right: 10px;
}

.svc-card-body {
  padding: 1rem;
  text-align: center;
}

.svc-card-body h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #222;
}

.svc-card-body p {
  font-size: 0.95rem;
  color: #555;
}

.svc-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--clr-primary-3);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.svc-link:hover {
  background-color: var(--clr-primary-2);
}

/* -------------------
   RESPONSIVE STYLES
------------------- */

@media (max-width: 992px) {
  .svc-container {
    padding: 1.5rem;
  }
  .svc-card {
    max-width: 45%;
  }
}

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

  .svc-carousel-wrapper {
    height: 200px;
  }

  .svc-btn {
    font-size: 20px;
    padding: 0.4rem 0.8rem;
  }

  .svc-services-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .svc-carousel-wrapper {
    height: 180px;
  }

  .svc-card-body h3 {
    font-size: 1.1rem;
  }

  .svc-card-body p {
    font-size: 0.9rem;
  }

  .svc-btn {
    font-size: 18px;
    padding: 0.3rem 0.6rem;
  }
}




/*----SERVICE SECTION ENDS HERE------- SERVICES SECTION ENDS HERE ----SERVICE SECTION ENDS HERE-------*/
/*----SERVICE SECTION ENDS HERE------- SERVICES SECTION ENDS HERE ----SERVICE SECTION ENDS HERE-------*/

/*CTA starts here*/

.cta-section {
  position: relative;
  height: 400px;
  /* Adjust height as needed */
  width: 100%;
  background-image: url('../img/fullhouse1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-white);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-shadow);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h1 {
  font-size: 3rem;
  font-weight: bolder;
  margin-bottom: 20px;
}

.cta-content .btn {
  font-size: 1.2rem;
  padding: 10px 30px;
  border-radius: 25px;
  background-color: var(--clr-primary-1);
  border: none;
  transition: background-color 0.3s ease;
}

.cta-content .btn:hover {
  background-color: var(--clr-primary-3);
}

/*CTA ends here*/

/**REVIEWS**/

.reviews-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--clr-primary-1);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.review-form input,
.review-form textarea,
.review-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.review-form textarea {
  resize: vertical;
  height: 100px;
}

.review-form button {
  padding: 12px;
  background-color: var(--clr-primary-1);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.review-form button:hover {
  background-color: var(--clr-primary-3);
}

.past-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-card h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.review-card .rating {
  color: var(--clr-yellow);
  margin: 5px 0;
}

.review-card .rating i {
  font-size: 1.2rem;
}

.review-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .review-form {
    gap: 10px;
  }

  .past-reviews {
    grid-template-columns: 1fr;
  }
}

/****ABOUT US PAGE STARS HERE********************** ****************************************/

.about-section1 {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.about-section1 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--clr-primary-5);
  position: relative;
  display: inline-block;
}

.about-section1 h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background-color: var(--clr-primary-5); 
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
}

.about-section1 h2:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.about-section1 p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--clr-red-dark);
}

.about-section1 img {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  margin-top: -350px;
}

.about-section1 .icon {
  font-size: 2rem;
  color: var(--clr-primary-1);
  margin-bottom: 10px;
}

.about-section1 .list-group-item1 {
  border: none;
  padding: 10px 0;
  font-size: 1rem;
}

.about-section1 .list-group-item1 i {
  color: var(--clr-primary-1);
  margin-right: 10px;
}

.about-section1 .tagline {
  color: var(--clr-red-dark);
  font-family: var(--ff-primary);
  font-weight: bold;
}

.about-section1 .btn {
  background-color: var(--clr-primary-1);
  color: var(--clr-white);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-section1 .btn:hover {
  background-color: var(--clr-primary-3);
}

@media (max-width: 768px) {
  .about-section1 {
    text-align: center;
  }

  .about-section1 img {
    margin-top: 30px;
  }
}

/*ABOUT1 US SECTION ENDS HERE*/

/**CONTACT US PAGE SECTION STARTS HERE*/

.form-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--clr-primary-1);
  font-weight: bold;
}
.form-container label {
  font-weight: bold;
  color: var(--clr-grey-4);
}
.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 15px;
  background-color: var(--clr-primary-10);
}
/* Style the select dropdown */
.form-container select {
  background-color: var(--clr-primary-10);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  color: var(--clr-grey-4);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* Hover and focus states */
.form-container select:hover {
  border-color: var(--clr-primary-3);
}

.form-container select:focus {
  outline: none;
  border-color: var(--clr-primary-2);
  box-shadow: 0 0 5px var(--clr-primary-2);
}
.form-container textarea {
  resize: vertical;
  height: 120px;
}
.form-container button {
  width: 100%;
  padding: 12px;
  background-color: var(--clr-primary-1);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-container button:hover {
  background-color: var(--clr-primary-3);
}
.form-container .error {
  color: var(--clr-red-dark);
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.error {
    color: #dc3232;
    font-size: 0.8em;
    margin-top: 5px;
}

@media (max-width: 768px) {
  .form-container {
    margin: 20px;
    padding: 20px;
  }
}
/**CONTACT US ENDS HERE***/

/**GALLERY PAGE*/
/* Gallery container */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-section {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f9fa; /* Default background */
}

/* Unique backgrounds for each section */
.gallery-section.construction {
  background-color: #e3f2fd; /* Light blue */
}

.gallery-section.renovations {
  background-color: #fff3e0; /* Light orange */
}

.gallery-section.carpentry {
  background-color: #f1f8e9; /* Light green */
}

.gallery-section.design-painting {
  background-color: #fce4ec; /* Light pink */
}

.gallery-section.maintenance {
  background-color: #e0f7fa; /* Light cyan */
}

.gallery-section.plumbing {
  background-color: #ede7f6; /* Light purple */
}

h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #333;
}

/* Gallery layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 200px; /* Fixed height for uniformity */
  object-fit: cover; /* Ensures images fill the container */
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive design */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row on tablets */
  }

  h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr; /* 1 image per row on mobile */
  }

  h2 {
    font-size: 1rem;
  }
}

/*Landing Page*/
/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* HERO SECTION */
.hero1 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../img/consite9.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
  z-index: 1;
}

.hero1-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero1 h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero1 p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--clr-grey-8);
  font-style: italic;
}

.btnh-primary {
  background-color: var(--clr-primary-1);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.btnh-primary:hover {
  background-color: var(--clr-primary-3);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .hero1 h1 {
    font-size: 2rem;
  }

  .hero1 p {
    font-size: 1rem;
  }

  .btnh-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}



/***CSR starts here ************************************CSR*****/


/* Banner Section */
.banner1 {
  background-image: url('../img/floor.jpg'); 
  background-size: cover;
  background-position: center;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.banner1-overlay {
  background-color: rgba(0, 0, 0, 0.2); /* Dark overlay for better text visibility */
  padding: 20px;
  border-radius: 8px;
}

.banner1 h1 {
  font-size: 48px;
  margin: 0;
}

.banner1 p {
  font-size: 20px;
  margin: 10px 0 0;
  color: var(--clr-grey-10);
}

/* CSR Content Section */
.csr-content {
  padding: 40px 0;
  background-color: #f8f9fa;
  
}

.csr-content p{
  color: var(--clr-green-dark);
}

.csr-content h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.charity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.charity-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.charity-card:hover {
  transform: translateY(-10px);
}

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

.charity-card h3 {
  font-size: 24px;
  margin: 20px 0 10px;
}

.charity-card p {
  padding: 0 20px 20px;
  font-size: 16px;
  color: #555;
}

/* Call to Action Section */
.cta1 {
  background-color: var(--clr-primary-7);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.cta1 h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--clr-red-light);
}

.cta1 p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta1 .btn1 {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  color: var(--clr-primary-1);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta1 .btn1:hover {
  background-color: var(--clr-primary-3);
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .banner1 h1 {
    font-size: 36px;
  }

  .banner1 p {
    font-size: 18px;
  }

  .csr-content h2 {
    font-size: 28px;
  }

  .charity-card h3 {
    font-size: 20px;
  }

  .charity-card p {
    font-size: 14px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .banner1 h1 {
    font-size: 28px;
  }

  .banner1 p {
    font-size: 16px;
  }

  .csr-content h2 {
    font-size: 24px;
  }

  .charity-grid {
    grid-template-columns: 1fr;
  }
}






/* WHATSAPP BUTTON */

/* Whatsapp button front page */

:root {
    --whatsapp-green: #25d366;
    --whatsapp-dark: #075e54;
    --gradient-blue-1: #4f46e5;
    --gradient-blue-2: #3b82f6;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-button__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

.whatsapp-button__icon {
    width: 30px;
    height: 30px;
    fill: white;
    transition: all 0.3s ease;
}

.whatsapp-button__text {
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button__link:hover {
    width: 200px;
    border-radius: 30px;
    background: linear-gradient(135deg,
            var(--gradient-blue-1),
            var(--gradient-blue-2));
}

.whatsapp-button__link:hover .whatsapp-button__icon {
    transform: translateX(-60px);
}

.whatsapp-button__link:hover .whatsapp-button__text {
    opacity: 1;
    transform: translateX(10px);
}

.whatsapp-button__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}




/* FOOTER STARTS HERE */

.footer {
    background-color: var(--clr-primary-1);
    color: var(--clr-grey-9);
    font-size: 16px; /* Adjusted font size for better mobile view */
}

.footer h5 {
    color: var(--clr-primary-5);
    /* Primary color for headings */
    font-weight: bold;
    font-size: 1.2rem; /* Adjusted heading size for mobile */
    margin-bottom: 1rem; /* Adjusted margin for mobile */
}

.footer a {
    transition: color 0.3s ease;
    display: block; /* Make links block for better touch targets on mobile */
    padding: 0.3rem 0; /* Add some padding for better touch targets */
}

.footer a:hover {
    color: var(--clr-primary-5) !important;
    /* Primary color on hover */
}

.footer .text-muted {
    color: #adb5bd !important;
    /* Light gray for secondary text */
    font-size: 0.9rem; /* Adjusted muted text size for mobile */
}

.footer .list-unstyled.d-flex {
    justify-content: center; /* Center social icons on smaller screens */
}

.footer .list-unstyled.d-flex li a {
    padding: 0; /* Remove padding from social icons to control size */
}

/* Media query for larger screens to adjust layout */
@media (min-width: 992px) {
    .footer {
        font-size: 18px;
    }

    .footer h5 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer a {
        display: inline-block; /* Revert to inline-block for larger screens */
        padding: 0;
    }

    .footer .text-muted {
        font-size: 1rem;
    }

    .footer .row > div {
        margin-bottom: 1.5rem; /* Add some bottom margin for spacing between sections on larger screens */
    }

    .footer .list-unstyled.d-flex {
        justify-content: flex-start; /* Align social icons to the start on larger screens */
    }
}




/***FOOTER***/


.pro-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.pro-header {
    background-color: var(--pro-primary);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pro-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Hero Section */
.pro-hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../img/fullhouse.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.pro-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pro-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pro-hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--clr-white);
    font-style: italic;

}

.pro-btn {
    display: inline-block;
    background-color: var(--clr-primary-1);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.pro-btn:hover {
    background-color: var(--clr-primary-3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pro-btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 1rem;
}

.pro-btn-outline:hover {
    background-color: white;
    color: var(--clr-primary-2);
}

/* Services Section */

  /* Enhanced Section Header Styles */
  .pro-services-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
  }

  .pro-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  .pro-section-title {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .pro-section-subtitle {
    display: block;
    color: var(--clr-primary-2);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

  .pro-section-title h2 {
    font-size: 2.5rem;
    color: var(--clr-primary-1);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }

  .pro-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .pro-decoration-line {
    width: 50px;
    height: 2px;
    background-color: var(--clr-primary-2);
    display: inline-block;
  }

  .pro-decoration-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-primary-2);
    border-radius: 50%;
    margin: 0 10px;
    display: inline-block;
  }

  .pro-section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Existing Grid Styles (unchanged) */
  .pro-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
  }



  .pro-service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pro-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }

  .pro-service-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .pro-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .pro-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pro-service-overlay h4 {
    color: var(--pro-accent);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }

  .pro-service-overlay p {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
  }

  .pro-service-card:hover .pro-service-overlay {
    opacity: 1;
  }

  .pro-service-card:hover .pro-service-overlay h4,
  .pro-service-card:hover .pro-service-overlay p {
    transform: translateY(0);
  }

  .pro-service-card:hover .pro-service-img {
    transform: scale(1.1);
  }

  .pro-service-content {
    padding: 1.5rem;
  }

  .pro-service-content h3 {
    color: var(--pro-primary);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
  }

  .pro-service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .pro-service-link {
    color: var(--pro-secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .pro-service-link span {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .pro-service-link:hover {
    color: var(--pro-primary);
  }

  .pro-service-link:hover span {
    transform: translateX(5px);
  }

    /* Responsive Adjustments */
  @media (max-width: 768px) {
    .pro-section-title h2 {
      font-size: 2rem;
    }
    
    .pro-section-description {
      font-size: 1rem;
    }
    
    .pro-services-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding: 1rem 0;
    }
    
    .pro-service-img-container {
      height: 180px;
    }
  }

  @media (max-width: 480px) {
    .pro-section-title h2 {
      font-size: 1.8rem;
    }
    
    .pro-services-grid {
      grid-template-columns: 1fr;
    }
  }

    /* Construction Service Section */
    .pro-construction-section {
        padding: 5rem 0;
        background-color: #f9f9f9;
    }

    .pro-construction-container {
        display: flex;
        align-items: center;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .pro-construction-content {
        flex: 1;
    }

    .pro-construction-img {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .pro-construction-img img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .pro-construction-img:hover img {
        transform: scale(1.03);
    }

    .pro-lead {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-weight: 500;
        line-height: 1.6;
    }

    .pro-features {
        margin: 2rem 0;
    }

    .pro-feature-item {
        margin-bottom: 1.5rem;
        padding-left: 2.5rem;
        position: relative;
    }

    .pro-feature-item i {
        position: absolute;
        left: 0;
        top: 0;
        color: #e67e22;
        font-size: 1.5rem;
    }

    .pro-feature-item h3 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }

    .pro-feature-item p {
        color: #555;
        line-height: 1.6;
    }

    .pro-btn {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .pro-btn-primary {
        background-color: #e67e22;
        color: white;
        border: 2px solid #e67e22;
    }

    .pro-btn-primary:hover {
        background-color: transparent;
        color: #e67e22;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .pro-construction-container {
            flex-direction: column;
        }
        
        .pro-construction-content,
        .pro-construction-img {
            flex: none;
            width: 100%;
        }
        
        .pro-construction-img {
            margin-top: 2rem;
        }
    }

    @media (max-width: 768px) {
        .pro-construction-section {
            padding: 3rem 0;
        }
        
        .pro-lead {
            font-size: 1.1rem;
        }
        
        .pro-feature-item h3 {
            font-size: 1.1rem;
        }
    }



  /* Construction Service Section */
  .pro-construction-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
  }
  
  .pro-construction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230,126,34,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
  }
  
  .pro-features-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .pro-feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
     align-items: center;
     text-align: center;
     max-width: 300px;
     flex-direction: column;
     display: flex;
    z-index: 1;
  }
  
  .pro-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--clr-primary-2);
    transition: height 0.4s ease;
    z-index: -1;
  }
  
  .pro-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }
  
  .pro-feature-item:hover::before {
    height: 100%;
  }
  
  .pro-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--clr-primary-2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .pro-feature-item:hover .pro-feature-icon {
    background: white;
    color: var(--clr-primary-2);
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .pro-feature-item h3 {
    color: var(--clr-primary-2);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    transition: color 0.3s ease;
  }
  
  .pro-feature-item:hover h3 {
    color: white;
  }
  
  .pro-feature-item p {
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
  }
  
  .pro-feature-item:hover p {
    color: rgba(255,255,255,0.9);
  }
  
  .pro-cta-container {
    text-align: center;
    margin: 3rem 0 4rem;
  }
  
  .pro-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--clr-primary-2);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .pro-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
  }
  
  .pro-btn-primary:hover {
    background: var(--clr-primary-1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.4);
  }
  
  .pro-btn-primary:hover::before {
    left: 100%;
  }
  
  .pro-btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .pro-btn-primary:hover i {
    transform: translateX(5px);
  }
  
  .pro-construction-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .pro-construction-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .pro-construction-img:hover img {
    transform: scale(1.05);
  }
  
  .pro-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: center;
  }
  
  .pro-img-overlay span {
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .pro-construction-img:hover .pro-img-overlay span {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .pro-construction-section {
      padding: 4rem 0;
    }
    
    .pro-features {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .pro-features {
      grid-template-columns: 1fr;
    }
    
    .pro-feature-item {
      padding: 1.5rem;
    }
    
    .pro-btn-primary {
      padding: 0.8rem 2rem;
      font-size: 1rem;
    }
  }

    


/* Testimonials */
.pro-testimonials {
    padding: 5rem 0;
    background-color: white;
}

.pro-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.pro-testimonial {
    background-color: var(--clr-grey-8);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pro-testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.pro-testimonial-author {
    font-weight: 600;
    color: var(--clr-primary-2);
}

/* CTA Section */
.pro-cta-section {
    padding: 5rem 0;
    background-color: var(--clr-grey-9);
    color: white;
    text-align: center;
}

.pro-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pro-cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--clr-grey-1);
}

/* Footer */
.pro-footer {
    background-color: var(--clr-primary-1);
    color: white;
    padding: 3rem 0 1rem;
}

.pro-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pro-footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.pro-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--clr-primary-7);
}

.pro-footer-col p {
    margin-bottom: 1rem;
    color: #bbb;
}

.pro-footer-links {
    list-style: none;
}

.pro-footer-links li {
    margin-bottom: 0.8rem;
}

.pro-footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.pro-footer-links a:hover {
    color: var(--clr-primary-8);
}

.pro-social-links {
    display: flex;
    gap: 1rem;
}

.pro-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.pro-social-links a:hover {
    background-color: var(--clr-primary-7);
    transform: translateY(-3px);
}

.pro-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pro-about-container {
        grid-template-columns: 1fr;
    }
    
    .pro-about-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pro-hero h1 {
        font-size: 2.5rem;
    }
    
    .pro-hero p {
        font-size: 1rem;
    }
    
    .pro-btn {
        padding: 0.6rem 1.5rem;
    }
    
    .pro-services-row {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    .pro-header-container {
        flex-direction: column;
    }
    
    .pro-nav ul {
        margin-top: 1rem;
    }
    
    .pro-nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .pro-hero h1 {
        font-size: 2rem;
    }
    
    .pro-btn-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .pro-btn-outline {
        margin-left: 0;
    }
}