.elementor-kit-87{--e-global-color-primary:#123B63;--e-global-color-secondary:#000000;--e-global-color-text:#7B7370;--e-global-color-accent:#F0C442;--e-global-color-19d2fb5:#FFFFFF;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-weight:800;--e-global-typography-primary-text-transform:capitalize;--e-global-typography-primary-line-height:35px;--e-global-typography-secondary-font-family:"Outfit";--e-global-typography-secondary-font-size:40px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-text-transform:capitalize;--e-global-typography-secondary-line-height:35px;--e-global-typography-secondary-letter-spacing:0.6px;--e-global-typography-text-font-family:"Outfit";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:35px;--e-global-typography-accent-font-family:"Outfit";--e-global-typography-accent-font-size:20px;--e-global-typography-accent-font-weight:500;}.elementor-kit-87 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.team-member img {
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}


.icon-color {
  color: #123B63; /* Replace with any color code or name */
}


.btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #1c1f1e;
    font-size: 16px;
    overflow: hidden;
    min-width: 150px;
}

.btn::before,
.btn::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 25%;
    transition: all 0.35s ease;
    pointer-events: none;
}

.btn::before {
    bottom: 0;
    left: 0;
    border-left: 2px solid rgb(28, 31, 30);
    border-bottom: 2px solid rgb(28, 31, 30);
}

.btn::after {
    top: 0;
    right: 0;
    border-right: 2px solid rgb(28, 31, 30);
    border-top: 2px solid rgb(28, 31, 30);
}

/* Hover Effect */
.btn:hover::before,
.btn:hover::after {
    width: 100%;
    height: 100%;
}


/* Form container */
.contact-form {
  background-color: #0d3a65; /* Dark Blue Background */
  /*padding: 30px;*/
  max-width: 500px;*/
  margin: auto;
  /*border-radius: 5px;*/
  color: #fff;
  font-family: 'Outfit';
}

/* Heading */
.contact-form legend,
.contact-form .wpcf7-title,
.contact-form h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
}

/* Input & textarea styles */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 0px;*/
  margin-bottom: 15px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Two-column layout for name & phone, email & subject */
.contact-form .form-row {
  display: flex;
  gap: 10px;
}

.contact-form .form-row .half {
  width: 50%;
}

/* Textarea height */
.contact-form textarea {
  height: 150px;
  resize: none;
}

/* Submit Button */
.contact-form input[type="submit"] {
  background-color: #f0c442; /* Yellow */
  color: #fff;
  border: none;
  padding: 16px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  background-color: #daa520	;
}/* End custom CSS */