html, body{
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
    
  body{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    white-space: normal;
  }
    
  p {
    font-size: 18px;
  }
  
  /* back to top start */
  #myBtn {
    display: none; 
    position: fixed; 
    bottom: 55px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: #e97e13; 
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    width: 40px;
    height: 40px;
    border-radius: 100px; 
    font-size: 10px;
    transition: all 0.4s;
  }
      
  #myBtn:hover {
    background-color: #009900; 
  }
  /* back to top end */

/*Preloader start*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #009900;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*Preloader end*/
    
/* on screen whatsapp icon start */
 .whatsapp-icon {
    position: fixed;
    top: 89%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9999;
  }
    
  .whatsapp-icon a {
    display: block;
    text-align: center;
    padding: 5px;
    transition: all 0.3s ease;
    color: white;
  }
    
  .whatsapp-icon .on-screen-whatsapp:hover {
    text-decoration: none;
  }
    
  .whatsapp-icon .on-screen-whatsapp {
    background-color: #009900;
    color: #ffffff;
    margin-left: 15px;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.6em;
    color: #ffffff;
    z-index: 9999;
  }
    
  .whatsapp-icon .on-screen-whatsapp::before,
  .whatsapp-icon .on-screen-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #009900;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    transform: scale(1);
    box-sizing: border-box;
  }
    
  .whatsapp-icon .on-screen-whatsapp::before {
    -webkit-animation: whatsappPulse 2s ease-in-out infinite;
    animation: whatsappPulse 2s ease-in-out infinite;
  }
    
  .whatsapp-icon .on-screen-whatsapp::after {
    -webkit-animation: whatsappPulse 2s 1s ease-in-out infinite;
    animation: whatsappPulse 2s 1s ease-in-out infinite;
  }
    
  @-webkit-keyframes whatsappPulse {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0.7;
    }
    100% {
      -webkit-transform: scale(2.5);
      transform: scale(2.5);
      opacity: 0;
    }
  }
  
  @keyframes whatsappPulse {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0.7;
    }
    100% {
      -webkit-transform: scale(2.5);
      transform: scale(2.5);
      opacity: 0;
    }
  }
/* on screen whatsapp icon end */

/* Secondary Menu Start */
.secondary-menu {
    background: #000000;
    font-size: 15px;
    height: 40px;
    padding: 0;
    z-index: 996;
    transition: all 0.5s;
  }
  
  .contact-info a{
    line-height: 0;
    color: #ffffff;
    transition: 0.3s;
  }
  
  .contact-info a:hover{
    color: #009900;
    text-decoration: none;
  }
  
  .contact-info i {
    color: #009900;
    line-height: 0;
    margin-right: 5px;
  }
  
  .contact-info .phone-icon {
    margin-left: 15px;
  }
  
  .social-icons a {
    color: #ffffff;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    color: #009900;
  }
  
  /*topbar small phone screen display start*/
  @media only screen
  and (min-device-width: 353px)
  and (max-device-height: 745px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .secondary-menu{
     font-size: 13px;
    }
  }
  
  @media only screen
  and (min-device-width: 320px)
  and (max-device-height: 658px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .secondary-menu{
     font-size: 13px;
    }
  }
  /*hide secondary menu on scroll start*/
  .fixed-top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .hidden-secondary-menu {
    display: none;
  }
  /*hide secondary menu on scroll end*/
  
  /*secondary menu end*/

  /* Navigation-bar Start*/
#header {
    top: 30px;
    height: 70px;
    z-index: 997;
    transition: all 0.5s;
    padding: 10px 0;
    background: rgba(26, 24, 22, 0.85);
  }
  
  #header.header-transparent {
    background: transparent;
  }
  
  .bgcolor.scrolled{
    background: rgba(0, 0, 0, 0.9);
    transition: ease-in-out 0.5s;
  }
  
  .navbar {
    padding: 4px 0;
  }
  
  @media (max-width: 768px) {
    .navbar-brand{
      padding-left: 12px;
    }
  }
  
  .navbar-nav .nav-link {
    padding: 10px 20px;
    color: #ffffff !important;
    transition: color 0.3s;
  }

  .navbar-nav a {
    font-size: 18px;
  }
  
  .navbar-nav .active a {
    color: #009900 !important; 
  }
  
  .navbar-nav .nav-link:hover {
    color: #009900 !important;
  }
  
  .navbar .nav-item {
    word-spacing: 5px;
  }
  
  /*navbar toggler icon start*/
  .navbar-toggler {
    display: inline-block;
    cursor: pointer;
  }
  
  .navbar-toggler,
  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler-icon:focus{
    outline: none;
    box-shadow: none;
    border: 0;
  }
  
  .bar1, .bar3 {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .bar2 {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  @media (max-width: 768px) {
    .navbar-collapse {
      background-color: #161616 !important;
      border-radius: 5px;
    }
  }
  
  /* Rotate first bar */
  .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
  }
  
  /* Fade out the second bar */
  .change .bar2 {
    opacity: 0;
  }
  
  /* Rotate last bar */
  .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
  }
  /*navbar toggler icon end*/
  
  /* Navigation-bar end*/

  /* starter banner start */
/* Modern Hero Banner/Carousel */
.hero-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
}

.carousel {
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  position: relative;
  transition: transform 0.6s ease-in-out;
}

/* Background Image */
.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.slide-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 102, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* Content Container */
.container {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.carousel-caption {
  position: static;
  width: 100%;
  color: white;
  max-width: 800px;
  transform: none;
  text-align: left;
  padding: 0;
  left: 0;
  right: 0;
  bottom: auto;
}

.carousel-caption.text-left {
  text-align: left;
}

.carousel-caption.text-center {
  text-align: center;
  margin: 0 auto;
}

.carousel-caption.text-right {
  text-align: right;
  margin-left: auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #00cc66;
}

.hero-badge span {
  color: #00cc66;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Hero Title */
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accent {
  color: #00cc66;
  position: relative;
  display: inline-block;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(0, 204, 102, 0.3);
  z-index: -1;
  border-radius: 3px;
}

/* Hero Description */
.hero-description {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px 0;
  max-width: 600px;
}

.carousel-caption.text-center .hero-description,
.carousel-caption.text-right .hero-description {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
  text-decoration: none !important;
}

.primary-btn {
  background: linear-gradient(135deg, #009900, #006600);
  color: white;
  border: 2px solid #009900;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #00cc66, #009900);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 153, 0, 0.3);
  color: orange !important;
  text-decoration: none !important;
}

.primary-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.primary-btn:hover svg {
  transform: translateX(5px);
  fill: orange;
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  color: orange !important;
  text-decoration: none !important;
}

/* SVG icon color change on hover */
.primary-btn:hover svg,
.secondary-btn:hover svg {
  fill: orange;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.carousel-indicators .active {
  background: #00cc66;
  border-color: white;
  transform: scale(1.2);
}

.carousel-indicators li:hover {
  background: rgba(0, 204, 102, 0.5);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 3;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #009900;
  border-color: #009900;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.carousel-control-icon svg {
  width: 100%;
  height: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-banner {
    height: 70vh;
    min-height: 500px;
    max-height: 600px;
  }
  
  .carousel-item {
    height: 70vh;
    min-height: 500px;
    max-height: 600px;
  }
  
  .carousel-caption {
    max-width: 600px;
  }
  
  .hero-badge {
    padding: 8px 16px;
  }
  
  .hero-badge span {
    font-size: 11px;
    letter-spacing: 1px;
  }
  
  .hero-btn {
    padding: 12px 24px;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
  }
  
  .carousel-item {
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .carousel-caption.text-left,
  .carousel-caption.text-center,
  .carousel-caption.text-right {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-icon {
    width: 16px;
    height: 16px;
  }
  
  .carousel-indicators {
    bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
  }
  
  .carousel-item {
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
  }
  
  .hero-title {
    margin-bottom: 15px;
  }
  
  .hero-description {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .hero-actions {
    gap: 10px;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
    top: auto;
    bottom: 60px;
    transform: none;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    transform: scale(1.1);
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
  
  .carousel-indicators {
    bottom: 10px;
  }
  
  .carousel-indicators li {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 375px) {
  .hero-banner {
    min-height: 300px;
    max-height: 400px;
  }
  
  .carousel-item {
    min-height: 300px;
    max-height: 400px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-badge {
    padding: 6px 12px;
    margin-bottom: 15px;
  }
  
  .hero-badge span {
    font-size: 10px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
/* starter banner end */

/*starter banner/ breadcrumb start*/
.page-header-banner {
  min-height: 80vh;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 102, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.banner-content {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Construction Badge */
.construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  border-left: 4px solid #009900;
  transition: all 0.3s ease;
}

.construction-badge:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.construction-badge svg {
  width: 20px;
  height: 20px;
  color: #00cc66;
}

.construction-badge span {
  color: #00cc66;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Page Title */
.page-title {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  margin: 0 0 25px 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.construction-green {
  color: #00cc66;
  position: relative;
  display: inline-block;
}

.construction-green::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 204, 102, 0.3);
  z-index: -1;
  border-radius: 4px;
}

/* Construction Divider */
.construction-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px auto;
  width: 100%;
  max-width: 500px;
}

.hard-hat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #009900, #006600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hard-hat-icon svg {
  width: 36px;
  height: 36px;
}

/* Construction Breadcrumb */
.construction-breadcrumb {
  display: inline-block;
}

.breadcrumb-items {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}

.breadcrumb-link:hover {
  background: rgba(0, 153, 0, 0.3);
  border-color: #009900;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 153, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb-link svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.breadcrumb-link:hover svg {
  transform: translateX(-4px);
}

.breadcrumb-item.current {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(0, 153, 0, 0.25);
  border: 1px solid rgba(0, 153, 0, 0.5);
  border-radius: 12px;
  color: #ffffff;
  min-width: 160px;
  justify-content: center;
  font-weight: 500;
}

.breadcrumb-item.current svg {
  width: 22px;
  height: 22px;
  color: #00cc66;
}

/* No separator */
.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-header-banner {
    min-height: 70vh;
  }
  
  .construction-badge {
    padding: 12px 28px;
    margin-bottom: 25px;
  }
  
  .construction-badge span {
    font-size: 13px;
  }
  
  .hard-hat-icon {
    width: 70px;
    height: 70px;
  }
  
  .hard-hat-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .breadcrumb-link,
  .breadcrumb-item.current {
    padding: 14px 28px;
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .page-header-banner {
    min-height: 60vh;
    background-attachment: scroll;
  }
  
  .page-title {
    margin-bottom: 20px;
  }
  
  .construction-badge {
    padding: 10px 24px;
    margin-bottom: 20px;
  }
  
  .construction-badge span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  
  .construction-divider {
    margin-bottom: 30px;
  }
  
  .hard-hat-icon {
    width: 60px;
    height: 60px;
  }
  
  .hard-hat-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .breadcrumb-items {
    flex-direction: column;
    gap: 15px;
  }
  
  .breadcrumb-link,
  .breadcrumb-item.current {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .page-header-banner {
    min-height: 50vh;
  }
  
  .construction-badge {
    padding: 8px 20px;
  }
  
  .construction-badge span {
    font-size: 11px;
    letter-spacing: 1px;
  }
  
  .construction-badge svg {
    width: 18px;
    height: 18px;
  }
  
  .hard-hat-icon {
    width: 50px;
    height: 50px;
  }
  
  .hard-hat-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .breadcrumb-link,
  .breadcrumb-item.current {
    padding: 12px 24px;
    max-width: 250px;
    font-size: 16px;
  }
  
  .breadcrumb-link svg,
  .breadcrumb-item.current svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 375px) {
  .page-title {
    font-size: 32px;
  }
  
  .construction-badge {
    padding: 6px 16px;
  }
  
  .construction-badge span {
    font-size: 10px;
  }
}
/*starter banner/ breadcrimb end*/

/*about start*/

.about-construction {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a1929 0%, #1a2b3e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-construction::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #009900, #00cc66);
  z-index: 2;
}

.construction-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header Styling */
.construction-header {
  text-align: center;
  margin-bottom: 80px;
}

.tagline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.construction-tag {
  background: rgba(0, 153, 0, 0.15);
  color: #00cc66;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid rgba(0, 204, 102, 0.3);
  border-radius: 4px;
}

.title-divider {
  display: flex;
  align-items: center;
}

.hard-hat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #009900, #006600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hard-hat-icon svg {
  width: 24px;
  height: 24px;
}

.construction-titlee {
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.green-accent {
  color: #00cc66;
  position: relative;
  display: inline-block;
}

.green-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00cc66, transparent);
  border-radius: 2px;
}

/* Content Layout */
.construction-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.construction-text {
  padding-right: 40px;
}

.text-block h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.year {
  color: #00cc66;
  font-weight: 800;
  background: rgba(0, 153, 0, 0.1);
  padding: 2px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 153, 0, 0.3);
}

.lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #b0b7c3;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.service-tag {
  background: rgba(255, 255, 255, 0.05);
  color: #b0b7c3;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-tag:hover {
  background: rgba(0, 153, 0, 0.2);
  color: #00cc66;
  border-color: rgba(0, 204, 102, 0.3);
  transform: translateY(-2px);
}

/* Founder Highlight */
.founder-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 153, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00cc66;
  margin-bottom: 30px;
}

.founder-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #009900, #006600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.founder-icon svg {
  width: 24px;
  height: 24px;
}

.founder-text {
  font-size: 16px;
  line-height: 1.5;
  color: #b0b7c3;
}

.founder-text strong {
  color: white;
}

.text-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #b0b7c3;
  margin-bottom: 40px;
}

/* Button */
.construction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #009900, #006600);
  color: white;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.construction-btn::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: left 0.6s ease;
}

.construction-btn:hover::before {
  left: 100%;
}

.construction-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 153, 0, 0.4);
  text-decoration: none;
  color: #e97e13;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.construction-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Image Styling */
.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.construction-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.image-container:hover .construction-img {
  transform: scale(1.05);
}

.image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  pointer-events: none;
}

.frame-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(0, 204, 102, 0.3);
  border-radius: 8px;
}

.frame-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: #00cc66;
  border-style: solid;
  border-width: 0;
}

.tl {
  top: -2px;
  left: -2px;
  border-top-width: 3px;
  border-left-width: 3px;
  border-top-left-radius: 4px;
}

.tr {
  top: -2px;
  right: -2px;
  border-top-width: 3px;
  border-right-width: 3px;
  border-top-right-radius: 4px;
}

.bl {
  bottom: -2px;
  left: -2px;
  border-bottom-width: 3px;
  border-left-width: 3px;
  border-bottom-left-radius: 4px;
}

.br {
  bottom: -2px;
  right: -2px;
  border-bottom-width: 3px;
  border-right-width: 3px;
  border-bottom-right-radius: 4px;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #009900, #006600);
  color: white;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.badge-content {
  text-align: center;
}

.badge-number {
  font-size: 28px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.badge-teext {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .construction-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .construction-text {
    padding-right: 0;
  }
  
  .construction-titlee {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .about-construction {
    padding: 80px 0;
  }
  
  .construction-titlee {
    font-size: 32px;
  }
  
  .text-block h3 {
    font-size: 26px;
  }
  
  .tagline-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .service-tags {
    justify-content: center;
  }
  
  .construction-btn {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .construction-titlee {
    font-size: 28px;
  }
  
  .text-block h3 {
    font-size: 22px;
  }
  
  .service-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
  
  .image-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px;
  }
  
  .badge-number {
    font-size: 24px;
  }
}
  /*about end*/
  
/************** about page start ****************/

/*more-about-us start*/
.pakwi-more {
    padding: 60px 0;
    background: #ffffff;
}

.pakwi-more-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.pakwi-more-header {
    text-align: center;
    margin-bottom: 40px;
}

.pakwi-more-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pakwi-green {
    color: #009900;
}

.pakwi-green .bi-building {
    margin-right: 8px;
}

.pakwi-more-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Content Layout */
.pakwi-more-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .pakwi-more-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Text Section */
.pakwi-more-text {
    padding-right: 20px;
}

.pakwi-description {
    margin-bottom: 30px;
}

.pakwi-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.pakwi-description p:last-child {
    margin-bottom: 0;
}

.pakwi-highlight {
    background: #f8f9f8;
    padding: 24px;
    border-radius: 10px;
    border-left: 4px solid #009900;
}

.pakwi-highlight h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #009900;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pakwi-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Image Section */
.pakwi-more-image {
    position: relative;
}

.pakwi-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pakwi-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.pakwi-image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pakwi-tag-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #009900;
    line-height: 1;
    margin-bottom: 4px;
}

.pakwi-tag-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 576px) {
    .pakwi-more {
        padding: 40px 0;
    }
    
    .pakwi-more-container {
        padding: 0 20px;
    }
    
    .pakwi-more-title {
        font-size: 1.6rem;
    }
    
    .pakwi-highlight {
        padding: 20px;
    }
    
    .pakwi-img {
        height: 220px;
    }
}
/*more-about-us end*/

/* PAKWI Vision & Mission Section start*/
.pakwi-vision-mission {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.pakwi-vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009900, #006600, #009900);
}

.pakwi-vm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.pakwi-vm-header {
    text-align: center;
    margin-bottom: 50px;
}

.pakwi-vm-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pakwi-vm-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #009900, transparent);
}

.pakwi-vm-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009900, #006600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pakwi-vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pakwi-vm-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Content Grid */
.pakwi-vm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .pakwi-vm-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Cards */
.pakwi-vision-card,
.pakwi-mission-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.pakwi-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #009900, #006600);
}

.pakwi-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #006600, #009900);
}

/* Card Header */
.pakwi-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pakwi-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 153, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009900;
    font-size: 1.5rem;
}

.pakwi-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.pakwi-vm-green {
    color: #009900;
}

/* Card Body */
.pakwi-card-body {
    margin: 0;
}

.pakwi-card-texts {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pakwi-vision-mission {
        padding: 50px 0;
    }
    
    .pakwi-vm-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .pakwi-vision-card,
    .pakwi-mission-card {
        padding: 25px 20px;
    }
    
    .pakwi-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .pakwi-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .pakwi-vision-mission {
        padding: 40px 0;
    }
    
    .pakwi-vm-container {
        padding: 0 20px;
    }
    
    .pakwi-vm-title {
        font-size: 1.6rem;
    }
    
    .pakwi-vm-subtitle {
        font-size: 0.95rem;
    }
    
    .pakwi-card-header {
        gap: 12px;
    }
}
/* PAKWI Vision & Mission Section end*/

/*our values start*/
.pakwi-values {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.pakwi-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009900, #006600, #009900);
}

.pakwi-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.pakwi-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.pakwi-values-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pakwi-values-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #009900, transparent);
}

.pakwi-values-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009900, #006600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pakwi-values-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pakwi-values-green {
    color: #009900;
}

.pakwi-values-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Values Grid */
.pakwi-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .pakwi-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pakwi-values-grid {
        grid-template-columns: 1fr;
    }
}

/* Value Cards */
.pakwi-value-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pakwi-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.1);
    border-color: #009900;
}

.pakwi-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009900, #006600);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pakwi-value-card:hover::before {
    opacity: 1;
}

.pakwi-qhse-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 153, 0, 0.02), rgba(0, 102, 0, 0.02));
}

.pakwi-qhse-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #009900;
    border-radius: 50%;
    opacity: 0.2;
}

/* Value Icon */
.pakwi-value-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 153, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #009900;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.pakwi-value-card:hover .pakwi-value-icon {
    background: #009900;
    color: white;
    transform: scale(1.1);
}

/* Value Content */
.pakwi-value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pakwi-value-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pakwi-values {
        padding: 60px 0;
    }
    
    .pakwi-values-title {
        font-size: 1.8rem;
    }
    
    .pakwi-values-grid {
        gap: 25px;
    }
    
    .pakwi-value-card {
        padding: 30px 25px;
    }
    
    .pakwi-value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .pakwi-value-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .pakwi-values {
        padding: 50px 0;
    }
    
    .pakwi-values-container {
        padding: 0 20px;
    }
    
    .pakwi-values-header {
        margin-bottom: 40px;
    }
    
    .pakwi-values-title {
        font-size: 1.6rem;
    }
    
    .pakwi-values-subtitle {
        font-size: 1rem;
    }
}
/*our values end*/

/* PAKWI Team Section start */
.pakwi-team {
    padding: 80px 0;
    background: #f8faf8;
    position: relative;
}

.pakwi-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009900, #006600, #009900);
}

.pakwi-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.pakwi-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.pakwi-team-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pakwi-team-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #009900, transparent);
}

.pakwi-team-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009900, #006600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pakwi-team-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pakwi-team-green {
    color: #009900;
}

.pakwi-team-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Directors Row */
.pakwi-directors-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .pakwi-directors-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Director Card */
.pakwi-director-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pakwi-director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pakwi-director-img {
    position: relative;
    flex-shrink: 0;
}

.pakwi-director-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #009900;
    box-shadow: 0 10px 25px rgba(0, 153, 0, 0.2);
}

.pakwi-director-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #ff9900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 3px solid white;
}

/* Director Info */
.pakwi-director-info {
    flex: 1;
}

.pakwi-director-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.pakwi-director-title {
    color: #009900;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pakwi-director-specialty {
    display: block;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.pakwi-director-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Team Grid */
.pakwi-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .pakwi-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pakwi-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pakwi-team-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Card */
.pakwi-team-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pakwi-team-card:hover {
    transform: translateY(-5px);
    border-color: #009900;
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.1);
}

.pakwi-team-img {
    margin-bottom: 25px;
}

.pakwi-team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 3px solid #009900;
    box-shadow: 0 8px 20px rgba(0, 153, 0, 0.15);
}

/* Team Info */
.pakwi-team-info {
    margin-top: 20px;
}

.pakwi-team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.pakwi-team-role {
    color: #009900;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pakwi-team-specialty {
    display: block;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    font-style: italic;
}

.pakwi-team-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pakwi-team {
        padding: 60px 0;
    }
    
    .pakwi-team-title {
        font-size: 1.8rem;
    }
    
    .pakwi-director-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 25px;
    }
    
    .pakwi-director-photo {
        width: 150px;
        height: 150px;
    }
    
    .pakwi-team-card {
        padding: 25px 20px;
    }
    
    .pakwi-team-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .pakwi-team {
        padding: 50px 0;
    }
    
    .pakwi-team-container {
        padding: 0 20px;
    }
    
    .pakwi-team-title {
        font-size: 1.6rem;
    }
    
    .pakwi-team-subtitle {
        font-size: 1rem;
    }
    
    .pakwi-director-card {
        padding: 25px 20px;
    }
}
/*Pakwi team end*/

/***************************** about page end *******************/

/*services start*/
.services-modern {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.services-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009900, #00cc66, #009900);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tag-text {
  color: #009900;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.tag-text::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #009900;
  transform: translateY(-50%);
}

.tag-text::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #009900;
  transform: translateY(-50%);
}

.tag-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #009900, transparent);
}

.services-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.green-highlight {
  color: #009900;
  position: relative;
}

.green-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 153, 0, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.services-intro {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Layout */
.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-image-section {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.services-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-wrapper:hover .services-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 153, 0, 0.1) 0%, rgba(0, 102, 0, 0.05) 100%);
  z-index: 1;
}

.service-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 1px solid rgba(0, 153, 0, 0.1);
}

.badge-iccon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #009900, #006600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 20px;
  height: 20px;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Text Section */
.services-text-section {
  padding-left: 40px;
}

.services-description h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.lead-paragraph {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}

/* Key Services Grid */
.key-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: #009900;
  box-shadow: 0 10px 20px rgba(0, 153, 0, 0.1);
}

.service-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 153, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009900;
  flex-shrink: 0;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.services-description p:last-of-type {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

/* CTA Button */
.services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #009900, #006600);
  color: white;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.services-cta::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: left 0.6s ease;
}

.services-cta:hover::before {
  left: 100%;
}

.services-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 153, 0, 0.3);
  text-decoration: none;
  color: #e97e13;
}

.arrow-wrapper {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.services-cta:hover .arrow-wrapper {
  transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .services-text-section {
    padding-left: 0;
  }
  
  .services-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 80px 0;
  }
  
  .services-title {
    font-size: 32px;
  }
  
  .services-description h3 {
    font-size: 26px;
  }
  
  .key-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }
  
  .badge-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 28px;
  }
  
  .services-intro {
    font-size: 16px;
  }
  
  .service-badge {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .services-cta {
    padding: 16px 25px;
    font-size: 15px;
  }
  
  .key-services-grid {
    grid-template-columns: 1fr;
  }
}
/*services end*/

/**************** services page start **************/
/*services start*/

.pakwi-services {
    padding: 80px 0;
    background: #f8faf8;
    position: relative;
}

.pakwi-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009900, #006600, #009900);
}

.pakwi-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.pakwi-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.pakwi-services-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pakwi-services-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #009900, transparent);
}

.pakwi-services-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009900, #006600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 153, 0, 0.3);
}

.pakwi-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.pakwi-services-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Introduction */
.pakwi-services-intro {
    background: white;
    padding: 30px 35px;
    border-radius: 16px;
    margin-bottom: 60px;
    border-left: 5px solid #009900;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.pakwi-services-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Categories */
.pakwi-services-categories {
    display: grid;
    gap: 50px;
    margin-bottom: 60px;
}

/* Category Card */
.pakwi-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pakwi-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Category Image */
.pakwi-category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pakwi-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pakwi-category-card:hover .pakwi-category-img {
    transform: scale(1.05);
}

.pakwi-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 153, 0, 0.1) 0%,
        rgba(0, 102, 0, 0.2) 100%);
}

/* Category Content */
.pakwi-category-content {
    padding: 40px;
}

/* Category Header */
.pakwi-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.pakwi-category-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #009900;
}

.pakwi-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 153, 0, 0.1), rgba(0, 102, 0, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009900;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 153, 0, 0.1);
}

.pakwi-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.pakwi-category-badge {
    background: linear-gradient(135deg, #009900, #006600);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 153, 0, 0.2);
}

/* Category Services */
.pakwi-category-services {
    display: grid;
    gap: 35px;
}

.pakwi-service-group {
    display: grid;
    gap: 20px;
}

.pakwi-group-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #009900;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-left: 15px;
}

.pakwi-group-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #009900;
    border-radius: 50%;
}

/* Service Item */
.pakwi-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    background: #f9f9f9;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.pakwi-service-item:hover {
    background: #f0f8f0;
    border-color: #009900;
    transform: translateX(8px);
}

.pakwi-service-item i {
    font-size: 1.6rem;
    color: #009900;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 153, 0, 0.1);
    border: 1px solid rgba(0, 153, 0, 0.1);
}

.pakwi-service-content {
    flex: 1;
}

.pakwi-service-content h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.pakwi-service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA */
.pakwi-services-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 153, 0, 0.05), rgba(0, 102, 0, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(0, 153, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pakwi-services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009900, #006600);
}

.pakwi-cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.pakwi-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #009900, #006600);
    color: white;
    padding: 20px 45px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 153, 0, 0.3);
}

.pakwi-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 153, 0, 0.4);
    background: linear-gradient(135deg, #006600, #009900);
    text-decoration: none;
    color: #e97e13;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pakwi-services {
        padding: 60px 0;
    }
    
    .pakwi-services-title {
        font-size: 2rem;
    }
    
    .pakwi-category-image {
        height: 200px;
    }
    
    .pakwi-category-content {
        padding: 30px 25px;
    }
    
    .pakwi-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .pakwi-category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .pakwi-category-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .pakwi-services-categories {
        gap: 40px;
    }
    
    .pakwi-category-image {
        height: 180px;
    }
    
    .pakwi-service-item {
        padding: 20px;
    }
    
    .pakwi-service-item i {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .pakwi-cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .pakwi-services {
        padding: 50px 0;
    }
    
    .pakwi-services-container {
        padding: 0 20px;
    }
    
    .pakwi-services-title {
        font-size: 1.8rem;
    }
    
    .pakwi-services-subtitle {
        font-size: 1.1rem;
    }
    
    .pakwi-services-intro {
        padding: 25px 20px;
    }
    
    .pakwi-services-intro p {
        font-size: 1.05rem;
    }
    
    .pakwi-category-image {
        height: 160px;
    }
    
    .pakwi-service-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .pakwi-service-item i {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .pakwi-cta-button {
        width: 100%;
        max-width: 300px;
    }
}
/*services end*/

/*testimonials start*/
.pakwi-final-design {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
              url("../img/testimonials/15.jpg") center center / cover no-repeat fixed;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden; 
}

.pakwi-flex-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; 
}


.pakwi-content-wrapper {
  display: flex;
  flex-direction: column; 
  gap: 30px; 
  align-items: center;
}

/* --- Header Styles --- */
.pakwi-header-flex {
  text-align: center;
  width: 100%; 
}

.pakwi-subtitle {
  color: #009900;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.pakwi-maintitle {
  color: #fff;
  font-size: 2.2rem; 
  font-weight: 800;
  margin-bottom: 15px;
}

.pakwi-maintitle span {
  color: #009900;
}

.pakwi-divider {
  width: 60px;
  height: 4px;
  background: #009900;
  margin: 0 auto;
}

.pakwi-tagline {
    color: #aaa;
    margin-top: 15px;
}


.pakwi-slider-flex {
  width: 100%; 
}

/* The "Glassmorphism" Card Style */
.pakwi-flex-card {
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(10px); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  margin: 0 5px;
  height: 100%;
  position: relative;
}

.pakwi-quote-badge {
    position: absolute;
    top: 8px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #009900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.pakwi-card-text {
  color: #e0e0e0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  word-wrap: break-word;
  margin-top: 15px;
}

.pakwi-user-meta {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pakwi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 12px; 
  border: 2px solid #009900;
  margin-right: 15px;
  object-fit: cover;
}

.pakwi-user-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.pakwi-user-role {
    color: #009900;
    font-size: 13px;
    text-transform: uppercase;
}

/* Swiper Pagination (Pill Style from first design) */
.pakwi-pagination-bullets.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.pakwi-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}
  
.pakwi-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #009900;
    width: 30px; /* Expands when active */
    border-radius: 5px;
}


/* --- DESKTOP VIEW: Switch to horizontal layout --- */
@media (min-width: 768px) {
  .pakwi-content-wrapper {
    flex-direction: row; 
    align-items: flex-start;
  }

  .pakwi-header-flex {
    flex: 0 0 350px; 
    text-align: left;
  }
  
  .pakwi-divider {
    margin: 0;
  }

  .pakwi-maintitle {
    font-size: 3rem; 
  }

  .pakwi-slider-flex {
    flex-grow: 1; 
    padding-left: 20px; 
  }
}

/*testimonials end*/
/**************** services page end   **************/

/*Gallery start*/
.pakwi-gallery-container {
  width: 100%;
  background: linear-gradient(145deg, #f9fafb 0%, #f3f4f6 100%);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.gallery-global {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Styles */
.gallery-section {
  margin-bottom: 5rem;
  scroll-margin-top: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #009900 0%, #00cc00 60%, #ff9900 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header .description {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  border-left: 4px solid #ff9900;
  padding-left: 1.2rem;
  background: rgba(255, 153, 0, 0.05);
  display: inline-block;
  border-radius: 0 12px 12px 0;
}

/* Grid Layouts */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Cards / Image Items */
.gallery-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 153, 0, 0.1);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.2);
  border-color: #ff9900;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  background: #e5e7eb;
  aspect-ratio: 1 / 0.85;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 0.5s ease-out;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,153,0,0.1) 0%, rgba(255,153,0,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-card:hover .image-wrapper::after {
  opacity: 1;
}

.card-caption {
  padding: 1rem 1.2rem 1.2rem;
  background: white;
}

.card-caption p {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c3e2f;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

/* Single image section */
.single-hero {
  display: flex;
  justify-content: center;
}

.single-card {
  max-width: 800px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
}

.single-card .image-wrapper {
  aspect-ratio: 16 / 9;
}

/* Section divider with brand colors */
.gallery-section:not(:last-child)::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #009900, #ff9900);
  margin: 3rem auto 0;
  border-radius: 4px;
  opacity: 0.5;
}

/* Animation */
.gallery-card {
  animation: fadeSlideUp 0.5s ease backwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animations */
.grid-4 .gallery-card:nth-child(1) { animation-delay: 0.05s; }
.grid-4 .gallery-card:nth-child(2) { animation-delay: 0.1s; }
.grid-4 .gallery-card:nth-child(3) { animation-delay: 0.15s; }
.grid-4 .gallery-card:nth-child(4) { animation-delay: 0.2s; }
.grid-3 .gallery-card:nth-child(1) { animation-delay: 0.05s; }
.grid-3 .gallery-card:nth-child(2) { animation-delay: 0.1s; }
.grid-3 .gallery-card:nth-child(3) { animation-delay: 0.15s; }

/* Responsive Design */
@media (max-width: 1024px) {
.grid-4, .grid-3 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-7 {
  grid-template-columns: repeat(3, 1fr);
}
.section-header h2 {
  font-size: 2rem;
}
}

@media (max-width: 768px) {
.gallery-global {
  padding: 2rem 1.2rem;
}
.grid-4, .grid-3, .grid-7 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.section-header h2 {
  font-size: 1.7rem;
}
.section-header .description {
  font-size: 1rem;
  padding-left: 1rem;
}
}

@media (max-width: 550px) {
.grid-4, .grid-3, .grid-7 {
  grid-template-columns: 1fr;
}
.single-card .image-wrapper {
  aspect-ratio: 4 / 3;
}
}

/* Interactive micro-effect */
.gallery-card:active {
  transform: scale(0.98);
  transition: 0.05s;
}
/*Gallery end*/

  /*************** portfolio page start *************
  .portfolio {
    padding-top: 15px;
    padding-bottom: 12px;
  }

  .portfolio .container .row {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.896);
    padding: 10px;
    border-radius: 8px;
  }

  .portfolio h3 {
    color: #000000;
    font-weight: bold;
  }

  .portfolio h5 {
    color: #009900;
    font-weight: bold;
  }

  .portfolio .carousel #carouselExampleIndicators .carousel-item {
    border-radius: 0.5rem;
    overflow: hidden; 
  }
  
  .portfolio .carousel #carouselExampleIndicators .carousel-caption {
    position: absolute; 
    bottom: 10%; 
    left: 0;
    right: 0;
    padding: 0.5rem 1rem; 
    text-align: center;
    color: #fff; 
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 0.5rem; 
    max-width: 90%; 
    margin: 0 auto; 
    display: block !important; 
    box-sizing: border-box; 
  }

  @media (max-width: 767.98px) {
    .portfolio .carousel #carouselExampleIndicators .carousel-caption {
      top: 60%; 
      padding: 0.5rem; 
      background-color: rgba(0, 0, 0, 0.7); 
      max-width: 90%; 
      margin: 0 auto; 
      box-sizing: border-box; 
      padding-top: 20PX;
      margin-bottom: 10PX;
    }
  }


*************** portfolio page start *************/

/*-------------- Compliance & Certification  ------------*/
.certificates-showcase {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.certificates-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #009900, #00cc66, #009900);
}

.showcase-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 153, 0, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 153, 0, 0.2);
}

.badge-icon {
  width: 24px;
  height: 24px;
  color: #009900;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
}

.badge-text {
  color: #009900;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.showcase-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.accent-text {
  color: #009900;
  position: relative;
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 153, 0, 0.15);
  z-index: -1;
}

.showcase-description {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel Container */
.certificates-carousel-container {
  position: relative;
  margin: 50px 0;
}

.carousel-wrapper {
  padding: 20px 10px;
}

/* Certificate Card */
.certificate-slide {
  padding: 20px 15px;
}

.certificate-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid #f0f0f0;
}

.certificate-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 153, 0, 0.15);
  border-color: #009900;
}

.certificate-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.certificate-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.certificate-card:hover .certificate-img {
  transform: scale(1.08);
}

.certificate-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 153, 0, 0.95) 0%, rgba(0, 102, 51, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 30px;
}

.certificate-card:hover .certificate-hover {
  opacity: 1;
}

.hover-content {
  text-align: center;
  color: white;
}

.certificate-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.certificate-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.hover-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hover-content p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Certificate Details */
.certificate-details {
  padding: 25px;
}

.certificate-tag {
  display: inline-block;
  background: rgba(0, 153, 0, 0.1);
  color: #009900;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
}

.certificate-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.certificate-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.certificate-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00cc66;
}

.status-indicator.active {
  background: #00cc66;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.status-text {
  font-size: 13px;
  font-weight: 600;
  color: #666;
}

/* Custom Arrows */
.custom-arrows {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.arrow {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #009900;
  color: #009900;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrow:hover {
  background: #009900;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 153, 0, 0.3);
}

.arrow svg {
  width: 20px;
  height: 20px;
}

/* Hide default owl carousel navigation */
.certificates-carousel .owl-nav {
  display: none !important;
}

/* Compliance Statement */
.compliance-statement {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 16px;
  margin-top: 50px;
  border: 2px solid #e8f5e9;
  box-shadow: 0 10px 30px rgba(0, 153, 0, 0.05);
}

.statement-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #009900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.statement-content {
  flex: 1;
}

.statement-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2a;
  margin-bottom: 15px;
}

.statement-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Owl Carousel Customization */
.certificates-carousel.owl-carousel .owl-stage-outer {
  padding: 20px 0;
}

.certificates-carousel .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.certificates-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd !important;
  margin: 0 8px;
  transition: all 0.3s ease !important;
}

.certificates-carousel .owl-dot.active {
  background: #009900 !important;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(0, 153, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .showcase-title {
    font-size: 42px;
  }
  
  .certificate-image {
    height: 250px;
  }
}

@media (max-width: 992px) {
  .certificates-showcase {
    padding: 80px 0;
  }
  
  .showcase-title {
    font-size: 36px;
  }
  
  .certificate-image {
    height: 220px;
  }
  
  .compliance-statement {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .certificates-showcase {
    padding: 60px 0;
  }
  
  .showcase-title {
    font-size: 32px;
  }
  
  .showcase-description {
    font-size: 16px;
  }
  
  .certificate-slide {
    padding: 15px 10px;
  }
  
  .certificate-image {
    height: 200px;
  }
  
  .certificate-details {
    padding: 20px;
  }
  
  .certificate-name {
    font-size: 18px;
  }
  
  .custom-arrows {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .showcase-title {
    font-size: 28px;
  }
  
  .header-badge {
    padding: 10px 20px;
  }
  
  .certificate-image {
    height: 180px;
  }
  
  .compliance-statement {
    padding: 30px 20px;
  }
  
  .custom-arrows {
    gap: 15px;
  }
  
  .arrow {
    width: 45px;
    height: 45px;
  }
}
/*-------------- Compliance & Certification end ------------*/

/*-------Stats Section start----------*/
.compact-stats {
  padding: 80px 20px;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  z-index: 1;
}

/* Dark overlay to make text readable */
.stats-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.stats-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

/* Header Styling */
.stats-header {
  margin-bottom: 60px;
  padding: 0 20px;
}

.stats-tag {
  display: inline-block;
  color: #00cc66;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 8px 20px;
  background: rgba(0, 204, 102, 0.15);
  border: 1px solid rgba(0, 204, 102, 0.3);
  border-radius: 25px;
}

.stats-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.green-text {
  color: #00cc66;
  position: relative;
  display: inline-block;
}

.green-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(0, 204, 102, 0.2);
  z-index: -1;
  border-radius: 3px;
}

.stats-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.stat-item {
  padding: 35px 40px;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009900, #00cc66);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 204, 102, 0.4);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.purecounter {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: white;
  font-family: 'Arial', sans-serif;
}

.plus {
  font-size: 30px;
  font-weight: 700;
  color: #00cc66;
}

.stat-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .compact-stats {
    padding: 60px 20px;
    min-height: 400px;
  }
  
  .stats-header {
    margin-bottom: 50px;
  }
  
  .stats-header h2 {
    font-size: 32px;
  }
  
  .stats-grid {
    gap: 40px;
  }
  
  .stat-item {
    padding: 30px;
    min-width: 180px;
  }
  
  .purecounter {
    font-size: 44px;
  }
  
  .plus {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .compact-stats {
    padding: 50px 15px;
    min-height: 350px;
  }
  
  .stats-header h2 {
    font-size: 28px;
  }
  
  .stats-header p {
    font-size: 15px;
  }
  
  .stats-grid {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 260px;
    padding: 25px;
  }
  
  .stats-tag {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  /* Disable parallax on mobile for better performance */
  .stats-bg {
    background-attachment: scroll;
  }
}
/*-------Stats Section end----------*/

/*why choose us start*/
  /* Modern Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009900, #00cc66, #009900);
}

.wcu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 10px 25px;
  background: rgba(0, 153, 0, 0.1);
  border: 1px solid rgba(0, 153, 0, 0.2);
  border-radius: 30px;
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: #009900;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
}

.section-badge span {
  color: #009900;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.accent {
  color: #009900;
  position: relative;
  display: inline-block;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 153, 0, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Layout */
.wcu-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.wcu-intro {
  position: sticky;
  top: 120px;
}

.intro-badge {
  display: inline-block;
  color: #009900;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 8px 20px;
  background: rgba(0, 153, 0, 0.1);
  border: 1px solid rgba(0, 153, 0, 0.2);
  border-radius: 20px;
}

.wcu-intro h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.wcu-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 153, 0, 0.08);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #009900;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: #009900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.trust-text span {
  font-size: 14px;
  color: #666;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009900, #00cc66);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #009900;
  box-shadow: 0 20px 40px rgba(0, 153, 0, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 153, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #009900;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wcu-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .wcu-intro {
    position: static;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .wcu-intro h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-badge {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .trust-text {
    text-align: center;
  }
}
/*why choose us end*/

/*call to action start*/
.modern-cta {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background with parallax */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.cta-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 102, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content {
  text-align: center;
  color: white;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px 25px;
  background: rgba(0, 204, 102, 0.2);
  border: 1px solid rgba(0, 204, 102, 0.4);
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.cta-badge svg {
  width: 16px;
  height: 16px;
  color: #00cc66;
}

.cta-badge span {
  color: #00cc66;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Title */
.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 30px 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accent {
  color: #00cc66;
  position: relative;
  display: inline-block;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 204, 102, 0.3);
  z-index: -1;
  border-radius: 4px;
}

/* Text Content */
.cta-text {
  max-width: 800px;
  margin: 0 auto 40px;
}

.cta-quote {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.cta-quote::before,
.cta-quote::after {
  content: '"';
  color: #00cc66;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
}

.cta-quote::before {
  top: -10px;
  left: 0;
}

.cta-quote::after {
  bottom: -15px;
  right: 0;
}

/* Highlights */
.cta-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(0, 204, 102, 0.2);
  border-color: rgba(0, 204, 102, 0.4);
  transform: translateY(-3px);
}

.highlight-item svg {
  width: 18px;
  height: 18px;
  color: #00cc66;
}

.highlight-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #009900, #006600);
  color: white;
  padding: 20px 45px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid #009900;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.cta-button::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: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #00cc66, #009900);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 153, 0, 0.4);
  text-decoration: none;
  color: #e97e13;
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .modern-cta {
    padding: 80px 20px;
    min-height: 400px;
  }
  
  .cta-title {
    font-size: 40px;
  }
  
  .cta-quote {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .modern-cta {
    padding: 60px 20px;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-highlights {
    gap: 20px;
  }
  
  .highlight-item {
    padding: 10px 16px;
  }
  
  .cta-button {
    padding: 18px 35px;
    font-size: 16px;
  }
  
  .cta-background {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .modern-cta {
    padding: 50px 15px;
    min-height: 350px;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-badge {
    flex-direction: column;
    gap: 8px;
    padding: 10px 20px;
  }
  
  .cta-highlights {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .highlight-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .cta-button {
    padding: 16px 30px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
}
/*call to action end*/

/*Frequently asked questions start*/
/* Modern FAQ Section */
.faq {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009900, #00cc66, #009900);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.gy-4 {
  row-gap: 30px;
}

.col-lg-4, .col-lg-8 {
  padding: 0 15px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

/* Left Column Content */
.content {
  height: 100%;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding: 10px 25px;
  background: rgba(0, 153, 0, 0.1);
  border: 1px solid rgba(0, 153, 0, 0.2);
  border-radius: 30px;
}

.faq-badge svg {
  width: 18px;
  height: 18px;
  color: #009900;
}

.faq-badge span {
  color: #009900;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.support-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 153, 0, 0.05);
  border-radius: 12px;
  border-left: 4px solid #009900;
}

.support-icon {
  width: 40px;
  height: 40px;
  background: #009900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.support-icon svg {
  width: 20px;
  height: 20px;
}

.support-text {
  display: flex;
  flex-direction: column;
}

.support-text strong {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.support-text span {
  font-size: 14px;
  color: #666;
}

/* FAQ Items - KEEPING ORIGINAL CLASS STRUCTURE FOR JS */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  position: relative;
  padding: 25px 30px;
  margin-bottom: 0;
  background: white;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 40px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  color: #1a1a1a;
}

.faq-item h3 .num {
  color: #009900;
  padding-right: 10px;
  font-weight: 700;
  min-width: 25px;
}

.faq-item h3:hover {
  color: #009900;
}

.faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  padding-top: 10px;
}

.faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 18px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: #009900;
}

.faq-item .faq-toggle:hover {
  color: #006600;
}

/* Active State */
.faq-active {
  border-color: #009900;
  box-shadow: 0 10px 25px rgba(0, 153, 0, 0.1);
}

.faq-active h3 {
  color: #009900;
}

.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #009900;
}

/* Hover Effects */
.faq-item:hover {
  border-color: rgba(0, 153, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 992px) {
  .faq {
    padding: 80px 0;
  }
  
  .content h3 {
    font-size: 28px;
  }
  
  .faq-badge {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
  
  .faq-item {
    padding: 20px 25px;
  }
  
  .faq-item h3 {
    font-size: 16px;
    margin-right: 35px;
  }
  
  .faq-item .faq-toggle {
    top: 20px;
    right: 25px;
  }
  
  .faq-item .faq-content p {
    font-size: 15px;
  }
  
  .support-box {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 50px 0;
  }
  
  .content h3 {
    font-size: 24px;
  }
  
  .faq-badge span {
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .faq-item {
    padding: 18px 20px;
  }
  
  .faq-item h3 {
    font-size: 15px;
  }
  
  .faq-item .faq-toggle {
    top: 18px;
    right: 20px;
    font-size: 16px;
  }
}
/*Frequently asked questions end*/

/****************contact us page start*****************/
/* ===== CONSTRUCTION CONTACT SECTION - FRESH & UNIQUE ===== */
.construction-contact {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
}

.construction-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009900, #00cc66);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 24px;
  background: rgba(0, 153, 0, 0.1);
  border: 1px solid rgba(0, 153, 0, 0.2);
  border-radius: 30px;
}

.contact-badge i {
  color: #009900;
  font-size: 18px;
}

.contact-badge span {
  color: #009900;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-heading {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.contact-highlight {
  color: #009900;
  position: relative;
}

.contact-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(0, 153, 0, 0.15);
  z-index: -1;
  border-radius: 3px;
}

.contact-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Contact Card Base */
.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: #009900;
  box-shadow: 0 15px 30px rgba(0, 153, 0, 0.1);
}

.card-icon-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #009900, #006600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 26px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.card-details {
  width: 100%;
}

.card-details p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 8px;
}

.time-period,
.address-main {
  font-size: 17px !important;
  color: #333 !important;
}

.time-hours {
  font-size: 18px !important;
  font-weight: 600;
  color: #009900 !important;
}

.time-note,
.address-note {
  font-size: 14px !important;
  color: #777 !important;
  margin-top: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.address-box {
  background: rgba(0, 153, 0, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 153, 0, 0.1);
  margin: 10px 0 !important;
}

/* Social Media Card */
.social-media-card .card-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 240px;
  margin-top: 15px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  color: #333;
}

.social-icon-btn:hover {
  transform: translateX(5px);
  text-decoration: none;
}

.social-icon-btn i {
  font-size: 20px;
}

.facebook-btn:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877F2;
  color: #1877F2;
}

.twitter-btn:hover {
  background: rgba(29, 161, 242, 0.1);
  border-color: #1DA1F2;
  color: #1DA1F2;
}

.tiktok-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: #000;
  color: #000;
}

/* Phone & Email Lists */
.phone-list,
.email-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.phone-link,
.email-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 153, 0, 0.05);
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 153, 0, 0.1);
  font-size: 15px;
}

.phone-link:hover,
.email-link:hover {
  background: rgba(0, 153, 0, 0.1);
  border-color: #009900;
  color: #009900;
  text-decoration: none;
  transform: translateX(5px);
}

.phone-link i,
.email-link i {
  color: #009900;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .construction-contact {
    padding: 60px 0;
  }
  
  .contact-heading {
    font-size: 32px;
  }
  
  .contact-description {
    font-size: 16px;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-card {
    padding: 25px 20px;
  }
  
  .card-icon-circle {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  .phone-link,
  .email-link {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .social-icon-btn {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .construction-contact {
    padding: 50px 0;
  }
  
  .contact-heading {
    font-size: 28px;
  }
  
  .contact-badge {
    padding: 8px 20px;
  }
  
  .contact-badge span {
    font-size: 12px;
  }
  
  .contact-info-card {
    padding: 20px 15px;
  }
  
  .time-hours {
    font-size: 16px !important;
  }
  
  .phone-link i,
  .email-link i {
    font-size: 14px;
  }
}
/****************contact us page end*****************/

/* footer start */
.construction-footer {
    background-color: #1a1a2a;
    color: #ffffff;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
}

.construction-footer-wrapper {
    padding-top: 50px;
    border-top: 5px solid #009900;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

/* Brand Column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.construction-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.construction-logo {
    width: 70px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.construction-brand {
    display: flex;
    flex-direction: column;
}

.construction-company-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.construction-tag {
    color: #009900;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.construction-mission {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0;
}

.construction-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.construction-badge {
    background-color: rgba(0, 153, 0, 0.15);
    color: #00cc66;
    border: 1px solid #009900;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Column */
.footer-services-col {
    display: flex;
    flex-direction: column;
}

.construction-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #009900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.construction-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #00cc66;
}

.construction-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.construction-service-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.construction-service {
    color: #cccccc;
    font-size: 13px;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.construction-service::before {
    content: '▶';
    color: #009900;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}

.construction-service:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Contact Column */
.footer-contact-col {
    display: flex;
    flex-direction: column;
}

.construction-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.construction-contact-item {
    display: flex;
    gap: 15px;
}

.construction-contact-icon {
    color: #009900;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.construction-contact-details {
    flex: 1;
}

.construction-contact-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.construction-contact-value {
    color: #bbbbbb;
    font-size: 13px;
    margin: 4px 0;
}

.construction-contact-value a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s;
}

.construction-contact-value a:hover {
    color: #009900;
}

/* Links Column */
.footer-links-col {
    display: flex;
    flex-direction: column;
}

.construction-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.construction-nav-link {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all 0.3s ease;
}

.construction-nav-link:hover {
    color: #009900;
    border-left-color: #009900;
    transform: translateX(5px);
}

.construction-social-title {
    margin-top: 15px;
}

.construction-social-box {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.construction-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #2a2a3a;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.construction-social-link:hover {
    background-color: #009900 !important;
    color: #ffffff !important;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 153, 0, 0.4);
    border-color: #00cc66;
}

.construction-emergency-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.1) 0%, rgba(200, 0, 0, 0.15) 100%);
    border-left: 4px solid #ff3333;
    border-radius: 8px;
    margin-top: 15px;
}

.construction-emergency-icon {
    color: #ff3333;
    font-size: 28px;
}

.construction-emergency-info {
    flex: 1;
}

.construction-emergency-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px;
}

.construction-emergency-phone {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Copyright Bar */
.construction-copyright-bar {
    background-color: #0a0a1a;
    padding: 25px 0;
    border-top: 1px solid #2a2a3a;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.construction-copyright-text {
    color: #888888;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .footer-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .construction-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .construction-footer-wrapper {
        padding-top: 40px;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .construction-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .construction-service-group {
        gap: 8px;
    }
    
    .construction-social-box {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .construction-emergency-card {
        justify-content: center;
        text-align: center;
    }
    
    .construction-logo-box {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .construction-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .construction-title {
        text-align: center;
    }
    
    .construction-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .construction-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .construction-contact-icon {
        align-self: center;
    }
    
    .construction-copyright-text {
        font-size: 13px;
    }
}
/* footer end */