:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;
  --primary-lighter: #81c784;
  --primary-bg: #e8f5e9;
  --dark: #1a1a2e;
  --dark-light: #252525;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --gray-bg: #f8f9fa;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

.layout_padding {
  padding: 100px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 100px;
}

.layout_padding-bottom {
  padding-bottom: 100px;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.heading_container h2 span {
  color: var(--primary);
}

.heading_container p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

a, a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}

a:hover, a:focus {
  color: var(--primary);
}

.btn, .btn:focus {
  outline: none !important;
  box-shadow: none;
}

/* ===== HEADER ===== */
.hero_area {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.sub_page .hero_area {
  height: auto;
}

.sub_page .header_section {
  margin-top: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header_section {
  width: 100%;
  transition: var(--transition);
}

.header_section.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header_section .header_top {
  padding: 10px 0;
  background-color: var(--dark);
}

.header_section .header_top .header_top_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_section .header_top .contact_nav {
  display: flex;
}

.header_section .header_top .contact_nav a {
  margin-right: 25px;
  color: var(--white);
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.header_section .header_top .contact_nav a i {
  margin-right: 8px;
  background-color: var(--primary);
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
}

.header_section .header_top .contact_nav a:hover i {
  background-color: var(--white);
  color: var(--primary);
}

.header_section .header_bottom {
  background-color: var(--white);
  padding: 12px 0;
  transition: var(--transition);
}

.header_section.scrolled .header_bottom {
  padding: 8px 0;
}

.header_section .header_bottom .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand img {
  width: 130px;
  transition: var(--transition);
}

.header_section.scrolled .navbar-brand img {
  width: 110px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 8px 22px;
  color: var(--dark);
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--white);
  background-color: var(--primary);
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: var(--dark);
}

.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 37px;
  height: 42px;
  transition: var(--transition);
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--dark);
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--dark);
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}

.quote_btn-container {
  display: flex;
  align-items: center;
}

.quote_btn-container a {
  color: var(--dark);
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 8px 25px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  transition: var(--transition);
  border: none;
}

.quote_btn-container .quote_btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== SLIDER ===== */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center top;
  position: relative;
  transition: background-image 0.6s ease-in-out;
}

.slider_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(46, 125, 50, 0.4) 100%);
}

.slider_section .row {
  align-items: center;
  position: relative;
  z-index: 2;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: var(--white);
}

.slider_section .detail-box h1 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 2.8rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider_section .detail-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.slider_section .detail-box .btn-box {
  display: flex;
  margin: 0 -5px;
  margin-top: 35px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 175px;
  font-weight: 500;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 14px 25px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--primary);
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
  color: var(--white);
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 14px 25px;
  background-color: transparent;
  color: var(--white);
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--white);
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  list-style: none;
}

.slider_section .carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider_section .carousel-indicators li.active {
  width: 35px;
  height: 12px;
  border-radius: 6px;
  background-color: var(--primary);
}

/* ===== SERVICE SECTION ===== */
.service_section {
  position: relative;
  background-color: var(--gray-bg);
}

.service_section .heading_container h2 {
  text-transform: none;
}

.service_section .service_container {
  padding: 50px 20px;
  margin: 0;
}

.service_section .box {
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service_section .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service_section .box .img-box {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.service_section .box .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service_section .box:hover .img-box img {
  transform: scale(1.05);
}

.service_section .box .detail-box {
  padding: 25px 20px;
}

.service_section .box .detail-box h5 {
  font-weight: 700;
  text-transform: none;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.service_section .box .detail-box p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service_section .box .detail-box a {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.service_section .box .detail-box a:hover {
  color: var(--primary-dark);
}

/* ===== ABOUT SECTION ===== */
.about_section {
  padding: 80px 0;
  background-color: var(--white);
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about_section .img-box video {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about_section .detail-box p {
  color: var(--text-light);
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 12px 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  margin-top: 20px;
  font-weight: 500;
}

.about_section .detail-box a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  color: var(--white);
}

/* ===== PROJECT SECTION ===== */
.project_section .heading_container {
  margin-bottom: 40px;
}

.project_section .heading_container h2 {
  color: var(--dark);
  text-transform: none;
  margin: 0;
}

.project_section .heading_container h2 span {
  color: var(--primary);
}

.project_section .box {
  position: relative;
}

.project_section .box .img-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.project_section .box .img-box img {
  width: 100%;
  transition: var(--transition);
}

.project_section .box:hover .img-box img {
  transform: scale(1.05);
}

.project_section .box .img-box .pin_link {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition);
  opacity: 0;
}

.project_section .box:hover .img-box .pin_link {
  opacity: 1;
}

.project_section .box .detail-box {
  padding: 20px 15px;
  transition: var(--transition);
  background-color: var(--primary);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.project_section .box .detail-box h5 {
  font-weight: 700;
}

.project_section .owl-item.active.center .box .detail-box {
  opacity: 1;
  visibility: visible;
}

.project_section .project_carousel {
  margin-top: 40px;
  padding: 0 45px;
}

.project_section .project_carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.project_section .project_carousel .owl-nav button {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  outline: none;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 5px;
}

.project_section .project_carousel .owl-nav button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.project_section .project_carousel .owl-nav button.owl-prev {
  left: -25px;
}

.project_section .project_carousel .owl-nav button.owl-next {
  right: -25px;
}

/* ===== WHY US SECTION ===== */
.why_us_section {
  background-color: var(--gray-bg);
}

.why_us_section .why_us_container .box {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why_us_section .why_us_container .box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why_us_section .why_us_container .box .img-box {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  transition: var(--transition);
}

.why_us_section .why_us_container .box .img-box i {
  font-size: 30px;
  color: var(--white);
}

.why_us_section .why_us_container .box .detail-box h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why_us_section .why_us_container .box .detail-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.why_us_section .why_us_container .box:hover .img-box {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.why_us_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.why_us_section .btn-box a {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  font-weight: 500;
}

.why_us_section .btn-box a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  color: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact_section {
  position: relative;
}

.contact_section .heading_container {
  margin-bottom: 30px;
}

.contact_section .heading_container h2 {
  text-transform: none;
}

.contact_section .form_container {
  margin-right: 15px;
}

.contact_section .form_container input,
.contact_section .form_container textarea {
  width: 100%;
  border: 2px solid #e0e0e0;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: none;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
}

.contact_section .form_container textarea {
  height: 130px;
  padding: 15px 20px;
  resize: vertical;
}

.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.contact_section .form_container input::placeholder,
.contact_section .form_container textarea::placeholder {
  color: #999;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 55px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.contact_section .form_container button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.contact_section .map_container {
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact_section .map_container .map {
  height: 100%;
  flex: 1;
}

.contact_section .map_container .map iframe {
  border-radius: var(--radius);
}

/* ===== INFO SECTION ===== */
.info_section {
  background-color: var(--dark);
  color: var(--white);
  padding: 50px 0;
}

.info_section .contact_nav {
  display: flex;
  justify-content: center;
  padding: 25px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.info_section .contact_nav a {
  flex: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  transition: var(--transition);
}

.info_section .contact_nav a i {
  font-size: 28px;
  margin-bottom: 10px;
}

.info_section .contact_nav a:hover {
  color: var(--primary-lighter);
}

.info_section .info_top {
  padding: 30px 0;
}

.info_section h4 {
  text-transform: none;
  position: relative;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.info_section .info_links .info_links_menu {
  display: flex;
  flex-wrap: wrap;
}

.info_section .info_links .info_links_menu a {
  color: rgba(255, 255, 255, 0.75);
  flex-basis: 50%;
  padding: 5px 0;
  transition: var(--transition);
  font-size: 0.95rem;
}

.info_section .info_links .info_links_menu a:hover,
.info_section .info_links .info_links_menu a.active {
  color: var(--primary-lighter);
  padding-left: 5px;
}

.info_section .info_post .post_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.info_section .info_post .post_box .img-box {
  min-width: 70px;
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  flex-basis: calc(33% - 10px);
  padding: 5px;
  margin: 5px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.info_section .info_post .post_box .img-box img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.info_section .info_bottom .row {
  align-items: center;
}

.info_section .info_bottom .info_logo {
  margin-right: 45px;
}

.info_section .info_bottom .info_logo a img {
  width: 125px;
}

.info_section .info_bottom .social_box {
  width: 100%;
  display: flex;
  margin-top: 25px;
}

.info_section .info_bottom .social_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-size: 18px;
  margin-right: 10px;
  transition: var(--transition);
}

.info_section .info_bottom .social_box a:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer_section {
  position: relative;
  background-color: var(--primary-dark);
  text-align: center;
}

.footer_section p {
  color: rgba(255, 255, 255, 0.8);
  padding: 20px 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer_section p a {
  color: var(--white);
  font-weight: 500;
}

.footer_section p a:hover {
  color: var(--primary-lighter);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 100px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 18px;
  z-index: 9998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  color: var(--white);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  padding: 20px;
  background-color: var(--primary-bg);
  border: 1px solid var(--primary-lighter);
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
  text-align: center;
  font-weight: 500;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--primary-lighter);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.preloader-text {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== HERO FLOATING SHAPES ===== */
.hero_shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero_shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero_shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-lighter);
  top: -50px;
  right: -50px;
  animation: float-shape 8s ease-in-out infinite;
}

.hero_shape-2 {
  width: 200px;
  height: 200px;
  background: var(--white);
  bottom: 10%;
  left: 5%;
  animation: float-shape 6s ease-in-out infinite reverse;
}

.hero_shape-3 {
  width: 150px;
  height: 150px;
  background: var(--primary-light);
  top: 40%;
  right: 15%;
  animation: float-shape 10s ease-in-out infinite 1s;
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(15px) rotate(-3deg); }
}

/* ===== HERO TEXT ANIMATION ===== */
.slider_section .detail-box h1 {
  animation: hero-text-in 1s ease forwards;
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider_section .detail-box .btn-box {
  animation: hero-text-in 1s ease 0.3s forwards;
  opacity: 0;
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
  color: var(--white);
  font-size: 24px;
  opacity: 0.7;
  cursor: pointer;
  transition: var(--transition);
}

.scroll-down:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-7px); }
}

/* ===== STATS SECTION ===== */
.stats_section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats_section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.stats_section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.stats_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat_box {
  text-align: center;
  color: var(--white);
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.stat_box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat_box .stat-icon {
  font-size: 36px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.stat_box .stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat_box .stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* ===== PRODUCT GALLERY ===== */
.gallery_section {
  padding: 100px 0;
  background-color: var(--white);
}

.gallery_section .heading_container {
  text-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery_item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery_item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery_item:hover img {
  transform: scale(1.1);
}

.gallery_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}

.gallery_item:hover .gallery_overlay {
  opacity: 1;
}

.gallery_overlay h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gallery_overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
}

.gallery_overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
}

.gallery_item:hover .gallery_overlay .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99990;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 15px;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--primary-lighter);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ===== GLASSMORPHISM SERVICE CARDS ===== */
.service_section .box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.service_section .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  transition: left 0.5s ease;
}

.service_section .box:hover::before {
  left: 100%;
}

.service_section .box .service-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  z-index: 5;
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
}

/* ===== ENHANCED WHY US ===== */
.why_us_section {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.why_us_section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why_us_section .heading_container h2 {
  color: var(--white);
}

.why_us_section .heading_container p {
  color: rgba(255, 255, 255, 0.7);
}

.why_us_section .why_us_container .box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.why_us_section .why_us_container .box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(46, 125, 50, 0.3);
  box-shadow: 0 0 30px rgba(46, 125, 50, 0.1);
}

.why_us_section .why_us_container .box .detail-box h5 {
  color: var(--white);
}

.why_us_section .why_us_container .box .detail-box p {
  color: rgba(255, 255, 255, 0.7);
}

.why_us_section .why_us_container .box .step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 15px;
  right: 20px;
}

.why_us_section .why_us_container .box {
  position: relative;
  overflow: hidden;
}

.why_us_section .btn-box a {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--white);
}

.why_us_section .btn-box a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ===== SUB-PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  animation: hero-text-in 0.8s ease forwards;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: hero-text-in 0.8s ease 0.2s forwards;
  opacity: 0;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card .card-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.contact-info-card .card-icon i {
  font-size: 28px;
  color: var(--primary);
}

.contact-info-card:hover .card-icon {
  background: var(--primary);
}

.contact-info-card:hover .card-icon i {
  color: var(--white);
}

.contact-info-card h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--primary-dark);
}

/* ===== PROCESS TIMELINE ===== */
.process-section {
  padding: 100px 0;
  background: var(--white);
}

.process-section .heading_container {
  text-align: center;
  align-items: center;
  margin-bottom: 60px;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-lighter), var(--primary), var(--primary-lighter));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.process-step .step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
}

.process-step .step-circle .step-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.process-step:hover .step-circle {
  background: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.3);
}

.process-step:hover .step-circle .step-num {
  color: var(--white);
}

.process-step h5 {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.88rem;
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.industries-section .heading_container {
  text-align: center;
  align-items: center;
  margin-bottom: 50px;
}

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

.industry-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  padding: 30px 15px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.industry-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.industry-item .ind-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.industry-item .ind-icon i {
  font-size: 26px;
  color: var(--primary);
}

.industry-item:hover .ind-icon {
  background: var(--primary);
}

.industry-item:hover .ind-icon i {
  color: var(--white);
}

.industry-item h5 {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.industry-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== NEW FOOTER ===== */
.footer-new {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-new .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col.brand-col h4::after {
  width: 50px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col .footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

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

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-col ul li a::before {
  content: '\f105';
  font-family: FontAwesome;
  margin-right: 10px;
  color: var(--primary);
  font-size: 0.8rem;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-item i {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  color: var(--primary-lighter);
  font-size: 0.85rem;
  margin-top: 2px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--primary-lighter);
  font-weight: 500;
}
