.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-kadence1:#E21E51;--e-global-color-kadence2:#4d40ff;--e-global-color-kadence3:#040037;--e-global-color-kadence4:#032075;--e-global-color-kadence5:#514d7c;--e-global-color-kadence6:#666699;--e-global-color-kadence7:#deddeb;--e-global-color-kadence8:#efeff5;--e-global-color-kadence9:#f8f9fa;--e-global-color-fa06b7a:#EE1A1A;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6.el-is-editing{--global-palette1:#E21E51;--global-palette2:#4d40ff;--global-palette3:#040037;--global-palette4:#032075;--global-palette5:#514d7c;--global-palette6:#666699;--global-palette7:#deddeb;--global-palette8:#efeff5;--global-palette9:#f8f9fa;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@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 */.about-us-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.about-us-section h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #002147;
}

.about-us-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

.about-us-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  color: #004080;
  text-transform: uppercase;
}

/* Uniform image sizes inside Elementor carousel */
.elementor-image-carousel img {
  width: 200px;       /* set width */
  height: 150px;      /* set height */
  object-fit: cover;  /* keeps proportion, crops extra */
  border-radius: 8px; /* optional rounded corners */
  transition: transform 0.3s ease-in-out;
}

.elementor-image-carousel img:hover {
  transform: scale(1.1); /* zoom on hover */
}


/* Style captions in Elementor Image Carousel */
.elementor-image-carousel-caption {
  font-size: 16px;
  font-weight: 600;
  color: #333;          /* dark text */
  text-align: center;
  margin-top: 8px;
  
}

.elementor-image-carousel img:hover + .elementor-image-carousel-caption {
  color: #0066cc;       /* caption turns blue on hover */
}


/* ===== HEADER STYLING ===== */

/* Keep header clean with slight shadow */
header, .elementor-location-header {
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 10px 30px;
}

/* Logo size */
header .elementor-widget-image img {
  max-height: 60px; /* Adjust as needed */
}

/* Site title text */
header .site-title, 
header .elementor-widget-heading h1, 
header .elementor-widget-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: #002147; /* Dark blue */
}

/* Navigation Menu */
header .elementor-nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #002147;
  margin: 0 18px; /* spacing between menu items */
  position: relative;
  transition: all 0.3s ease;
}

/* Menu hover underline effect */
header .elementor-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #e63946; /* Red underline */
  transition: width 0.3s ease;
}

header .elementor-nav-menu a:hover::after {
  width: 100%;
}

/* Active menu item */
header .elementor-nav-menu .elementor-item-active {
  color: #e63946 !important;
}

/* Get a Quote button */
header .elementor-button {
  background: #e63946;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

header .elementor-button:hover {
  background: transparent;
  border: 2px solid #e63946;
  color: #e63946;
}

/* ===== RESPONSIVE FIXES ===== */

/* Tablet view adjustments */
@media (max-width: 1024px) {
  header .elementor-nav-menu a {
    margin: 0 12px;
    font-size: 15px;
  }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  header .elementor-nav-menu {
    text-align: center;
  }
  header .elementor-button {
    display: none; /* Hide Get a Quote on mobile if tight space */
  }
}






/* Increase height of only the Message field in Elementor Pro form */
.custom-contact-form textarea.elementor-field-textual {
    min-height: 220px !important;   /* change 220px to your desired size */
    padding: 12px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
}

/* Target only the message field by its placeholder */
.custom-contact-form input[placeholder="Your Message"] {
    min-height: 150px !important;  /* makes it taller */
    padding: 12px !important;
    font-size: 15px !important;
}


.page-id-407 .wp-block-cover {
  display: none !important;
}





/* Force header visible on Insulator page (page-id-407) */
.page-id-407 header,
.page-id-407 .site-header,
.page-id-407 .wp-block-template-part {
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 99999 !important;
  opacity: 1 !important;
}/* End custom CSS */