/*
Custom Css
*/

/* Navigation Active Link Styling */
.navbar-nav .nav-link.active {
  color: #ea7600 !important;
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #ea7600;
  border-radius: 1px;
}

/* Footer logo branding overrides */
#tempaltemo_footer h2.h2.text-success.logo {
  color: #ea7600 !important;
}
#tempaltemo_footer p {
  color: #fff !important;
}

/* Brand Color Scheme */
:root {
  --primary-color: #006a7e;
  --accent-color: #ea7600;
}

/* Links and CTAs */
a {
  transition: color 0.3s ease;
}

a:hover {
  color: #ea7600;
}

/* Buttons with primary color */
.btn-primary,
.btn:not(.btn-success):not(.btn-secondary) {
  background-color: #006a7e !important;
  border-color: #006a7e !important;
}

.btn-primary:hover,
.btn:not(.btn-success):not(.btn-secondary):hover {
  background-color: #ea7600 !important;
  border-color: #ea7600 !important;
}

/* Badge and focus elements */
.badge,
.badge-primary {
  background-color: #ea7600 !important;
}

/* Form focus states */
.form-control:focus {
  border-color: #006a7e !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 106, 126, 0.25) !important;
}

/* Header social media hover effects */
#templatemo_nav_top a.text-light:hover {
  color: #ea7600 !important;
}

#templatemo_nav_top a.text-light:hover i {
  color: #ea7600 !important;
}

/* Heading accents */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1d242d;
}

/* Product rating and highlights */
.rating,
.fa-star {
  color: #ea7600 !important;
}
/* Sticky Navbar */
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Scroll Effect */
.navbar-scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Smooth transition */
.navbar {
  transition: all 0.3s ease;
}

/* Body padding fix (important) */
body.nav-padding {
  padding-top: 80px;
}

/* WhatsApp Chat Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
  line-height: 1;
}

.whatsapp-btn:hover {
  background-color: #1eda5a;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(30, 218, 90, 0.5);
  text-decoration: none;
  color: white;
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 10px;
    right: 10px;
  }
}

/* Contact Page Banner Typography */
.banner-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #25d366;
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
  animation: fadeInDown 0.8s ease-out;
}

.banner-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #25d366;
}

.banner-title {
  font-size: 72px !important;
  font-weight: 800 !important;
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 24px !important;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 1s ease-out 0.2s both;
  word-spacing: 0.1em;
}

.banner-description {
  font-size: 19px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.98) !important;
  line-height: 1.9;
  letter-spacing: 0.3px;
  margin-bottom: 28px !important;
  animation: fadeInUp 1s ease-out 0.4s both;
  max-width: 550px;
}

.banner-cta-line {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #25d366 0%, #ea7600 100%);
  border-radius: 3px;
  margin-top: 28px;
  animation: slideInLeft 0.8s ease-out 0.6s both;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

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

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

@keyframes slideInLeft {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 54px !important;
    letter-spacing: -1.5px;
  }
  
  .banner-description {
    font-size: 17px !important;
    line-height: 1.8;
  }
  
  .banner-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }
  
  .banner-cta-line {
    width: 70px;
    height: 4px;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 42px !important;
    letter-spacing: -1px;
    line-height: 1.2;
  }
  
  .banner-description {
    font-size: 15px !important;
    line-height: 1.7;
    max-width: 100%;
  }
  
  .banner-subtitle {
    font-size: 11px;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
  }
  
  .banner-cta-line {
    width: 60px;
    height: 4px;
    margin-top: 20px;
  }
}

/* Home Page Banner Specific Styling */
.container-fluid.py-5 .banner-subtitle {
  color: #ea7600;
}

.container-fluid.py-5 .banner-subtitle::after {
  background-color: #ea7600;
}

.container-fluid.py-5 .banner-cta-line {
  background: linear-gradient(90deg, #ea7600 0%, #25d366 100%);
  box-shadow: 0 2px 8px rgba(234, 118, 0, 0.3);
}

/* Google Maps Container */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* Responsive Map Height */
@media (max-width: 768px) {
  .map-container {
    padding-bottom: 50%;
  }
}

@media (max-width: 576px) {
  .map-container {
    padding-bottom: 45%;
  }
}

/* Contact Cards Hover Effects */
.contact-card {
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.contact-card:hover .card-text a {
  color: #ffffff !important;
  font-weight: 700;
}

.contact-card:hover .card-text small {
  color: #ffffff !important;
  font-weight: 700;
}

.contact-card:hover .card-text {
  color: #ffffff !important;
  font-weight: 700;
}

.contact-card:hover .card-title {
  color: #ffffff !important;
}

.contact-card:hover .h1 {
  color: #ffffff !important;
}

/* Call Now Button Text Color */
.bg-success .btn-light.text-white,
.bg-success .btn-light.text-white:hover {
  color: #ffffff !important;
}

/* WhatsApp CTA Button Hover - Green */
.whatsapp-cta-btn {
  transition: all 0.3s ease;
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.whatsapp-cta-btn:hover {
  background-color: #1eda5a !important;
  border-color: #1eda5a !important;
  color: #ffffff !important;
}

/* Service Cards Styling */
.service-card {
  background: #ffffff;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(234, 118, 0, 0.05) 100%);
  transition: all 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25);
  border-color: #25d366;
}

.service-card:hover::before {
  left: 0;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #006a7e 0%, #25d366 100%);
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.service-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1d242d;
  line-height: 1.3;
  margin-top: 8px;
}

.service-card-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-list li {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  padding-left: 0;
  line-height: 1.6;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* Product Card Styling */
.product-card {
  background: #ffffff;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.03) 0%, rgba(234, 118, 0, 0.03) 100%);
  transition: all 0.4s ease;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25);
  border-color: #25d366;
}

.product-card:hover::before {
  left: 0;
}

.product-card .service-card-header {
  position: relative;
  z-index: 1;
}

.product-card .service-card-description {
  position: relative;
  z-index: 1;
}

.product-card .product-features {
  position: relative;
  z-index: 1;
}

.product-card .product-rating {
  position: relative;
  z-index: 1;
}

.product-image-container {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.product-image-container img {
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

/* Category Card Styling */
.category-card {
  background: #ffffff;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(234, 118, 0, 0.05) 100%);
  transition: all 0.4s ease;
  z-index: 0;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25);
  border-color: #25d366;
}

.category-card:hover::before {
  left: 0;
}

.category-card .service-card-header {
  position: relative;
  z-index: 1;
}

.category-card .service-card-description {
  position: relative;
  z-index: 1;
}

.category-card .service-list {
  position: relative;
  z-index: 1;
}

.category-card .btn {
  position: relative;
  z-index: 1;
}

/* Products Page Banner Styling */
.products-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-banner-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 40px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  max-width: 800px;
  width: 100%;
}

.products-banner .banner-subtitle {
  color: #25d366 !important;
}

.products-banner .banner-title {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

.products-banner .banner-description {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

/* Responsive Banner Styles */
@media (max-width: 768px) {
  .products-banner {
    min-height: 60vh;
  }
  
  .products-banner-overlay {
    padding: 40px 30px;
    margin: 0 20px;
  }
  
  .products-banner .banner-title {
    font-size: 54px !important;
  }
  
  .products-banner .banner-description {
    font-size: 17px !important;
  }
}

@media (max-width: 576px) {
  .products-banner {
    min-height: 50vh;
  }
  
  .products-banner-overlay {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .products-banner .banner-title {
    font-size: 42px !important;
  }
  
  .products-banner .banner-description {
    font-size: 15px !important;
  }
}

/* Why Choose Us Section Styling */
.why-choose-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-card {
  background: #ffffff;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25);
  border-color: #25d366;
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #006a7e 0%, #25d366 100%);
  color: #ffffff;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.why-choose-title {
  color: #1d242d;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.why-choose-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section Styling */
.cta-section {
  background: linear-gradient(135deg, #006a7e 0%, #25d366 100%);
  padding: 50px 30px;
  border-radius: 15px;
  color: white;
  text-align: center;
}

.cta-title {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 28px;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .why-choose-card {
    padding: 30px 20px;
  }
  
  .why-choose-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-description {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Smooth Scroll for Anchor Links */
html {
  scroll-behavior: smooth;
}