/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 10 2026 | 04:46:25 */



/* Bright hover effect for container list items */
.container ul li,
.container .list-item {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.container ul li:hover,
.container .list-item:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Alternative bright glow effect */
.container ul li:hover::before,
.container .list-item:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  border-radius: inherit;
}

/* Smooth transition for touch devices */
@media (hover: hover) {
  .container ul li:active,
  .container .list-item:active {
    transform: translateY(0);
    filter: brightness(1.1);
  }
}


/* 1. GLOW EFFECT - Change color and glow size */
.glow-hover {
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}
.glow-hover:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}



/* Parent container (optional) */
.services-container {
  display: flex;
  gap: 20px;
}

/* Service box */
.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Zoom effect on hover */
.service-box:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}





/* Universal hover zoom for any container */
.hover-zoom {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hover-zoom img {
    transition: transform 0.3s ease;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}





.about-sticky {
  position: sticky;
  top: 0px; 
 
}





.footer-link {
    text-decoration: none;
    color: #ffffff; /* your footer text color */
    transition: all 0.2s ease-in-out;
}

.footer-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px; /* spacing from text */
}





/* POPUP BOX BEAUTIFICATION */
.consult-popup-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
       width: 30%;
    max-width: 95%;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    position: relative;
    animation: popupFade 0.3s ease-out;
}

@keyframes popupFade {
    from { opacity: 0; transform: scale(.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* Close Button */
.consult-close {
    position: absolute;
    right: 22px;
    top: 18px;
    font-size: 26px;
    background: transparent;
    border: none;
    color: #ff0055;
    cursor: pointer;
    transition: .2s;
}
.consult-close:hover {
    transform: rotate(90deg);
}

/* Form Container */
.consult-popup-inner label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

/* Input Fields */
.consult-popup-inner input,
.consult-popup-inner textarea {
    width: 100%;
   
    border: 1px solid #ccc;
    border-radius: 8px;
   
    background: #fafafa;
    transition: .25s;
}
.consult-popup-inner input:focus,
.consult-popup-inner textarea:focus {
    border-color: #ff0055;
    box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.20);
    background: #fff;
    outline: none;
}

/* Submit Button (Only CF7 Button) */
.consult-popup-inner input[type="submit"] {
    background: #ff0055 !important;
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    margin-top: 10px;
}
.consult-popup-inner input[type="submit"]:hover {
    background: #d60048 !important;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .consult-popup-box {
        padding: 22px;
    }
}


.consult-popup-inner{
	
	    margin-top: 25px;
}
.consult-popup-inner textarea{
	height:50px;
} 









/* Contact Form Wrapper */
.custom-contact-form {
  max-width: 900px;
  margin: 0 auto;
  color: #fff; /* text color */
  font-family: 'Arial', sans-serif;
}

/* Rows */
.custom-contact-form .contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

/* Fields */
.custom-contact-form .contact-field {
  flex: 1;
  min-width: 250px;
}

/* Full width fields */
.custom-contact-form .contact-field.full-width {
  flex: 1 1 100%;
}

/* Input & Textarea */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form input[type="url"],
.custom-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent bg */
  color: #fff;
  font-size: 16px;
  outline: none;
  height: 50px; /* make all fields same height */
  box-sizing: border-box;
  resize: none; /* disable resizing for textarea */
}

/* Message box same height */
.custom-contact-form textarea {
  height: 50px; /* same as other fields */
}

/* Placeholder color */
.custom-contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Submit Button */
.custom-contact-form input[type="submit"] {
  background-color: #0073e6; /* blue button */
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.custom-contact-form input[type="submit"]:hover {
  background-color: #005bb5;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .custom-contact-form .contact-row {
    flex-direction: column;
  }
}
/* Submit Button Full Width */
.custom-contact-form input[type="submit"] {
  background-color: #0073e6; /* blue button */
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  width: 302% !important; /* full width */
  box-sizing: border-box; /* ensure padding doesn't exceed width */
}

.custom-contact-form input[type="submit"]:hover {
  background-color: #005bb5;
}



























===================================================
CSS - (Paste in CF7 Additional CSS or Theme CSS)
===================================================

/* ---- Wrapper ---- */
.grow-form-wrapper {
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 12px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  font-family: 'roboto', sans-serif;
}

/* ---- Title ---- */
.grow-form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  position: relative;
}
.grow-form-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: #000000;
  border-radius: 2px;
  margin: 8px auto 24px;
}

/* ---- Row ---- */
.grow-form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

/* ---- Field Group ---- */
.grow-field-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ---- Input ---- */
.grow-input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  background: #f4f4f4;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.grow-input:focus {
  background: #ece9e9;
  box-shadow: 0 0 0 2px #e8522a55;
}
.grow-input::placeholder {
  color: #999;
}

/* ---- Phone Group ---- */
.grow-phone-group {
  flex-direction: row;
  align-items: center;
  background: #f4f4f4;
  border-radius: 6px;
  padding: 0 10px;
  gap: 6px;
}
.grow-flag {
  font-size: 14px;
  color: #444;
  white-space: nowrap;
}
.grow-phone-input {
  background: transparent !important;
  flex: 1;
  padding: 12px 4px !important;
}

/* ---- Submit Button ---- */
.grow-form-submit {
  margin-top: 20px;
}
.grow-btn {
  width: 100%;
  padding: 15px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  border:solid 1px #000000;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}
.grow-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}
.grow-btn:active {
  transform: translateY(0);
}

/* ---- Consent Text ---- */
.grow-form-consent {
  font-size: 11px;
  color: #888;
  line-height: 1.6;
  margin-top: -35px !important;
  text-align: left;
}
.grow-form-consent a {
  color: #000000;
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .grow-form-row {
    flex-direction: column;
  }
  .grow-form-wrapper {
    padding: 24px 18px;
  }
}

/* ---- CF7 Validation Styles ---- */
.wpcf7-not-valid-tip {
  font-size: 11px;
  color: #e8522a;
  margin-top: 4px;
}
.wpcf7-response-output {
  border: none !important;
  padding: 10px 0 0 !important;
  font-size: 13px;
  text-align: center;
}



a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}











/* Load DM Sans via @font-face */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/dmsans/v13/rnCuH-vYSZviVYUb_rj3ij__anPXDTzY.woff2') format('woff2');
}

/* Apply globally */
body, html, h1, h2, h3, h4, h5, h6, p, a, span, div,li,ul {
    font-family: 'DM Sans', sans-serif !important;
}