.elementor-kit-745{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-91b741a:#3263A8;--e-global-color-cbb4970:#EEEEEE;--e-global-color-df5eaa4:#3263A8;--e-global-color-003419e:#FFFFFF;--e-global-color-2a92bdd:#EEEEEE;--e-global-color-c7f550b:#000000;--e-global-color-ce92c36:#F1EFED;--e-global-color-8d4987e:#D3AF37;--e-global-typography-primary-font-family:"Literata";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Literata";--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"Mulish";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Mulish";--e-global-typography-accent-font-weight:600;font-size:16px;}.elementor-kit-745 e-page-transition{background-color:#FFBC7D;}.elementor-kit-745 a{color:#3262A8;}.elementor-kit-745 a:hover{color:#059ED8;}.elementor-kit-745 h1{font-size:46px;}.elementor-kit-745 h2{font-size:34px;}.elementor-kit-745 h3{font-size:26px;}.elementor-kit-745 h4{font-size:20px;}.elementor-kit-745 h5{font-size:18px;}.elementor-kit-745 h6{font-size:14px;}.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 *//****** Find this code Site Setting Custom CSS ******/
 
 /********************************************
 * Modal for Contact Us Form in Footer
 ********************************************/

/* Modal wrapper: overlay + layout */
.Contact-Us-Modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(0, 0, 0, 0.45); /* dimmed background */

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 5vh 16px;
  box-sizing: border-box;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  overflow-y: auto; /* modal can scroll if needed */
}

/* Inner "card" container – covers Elementor layouts */
.Contact-Us-Modal .e-con-inner,
.Contact-Us-Modal .elementor-column > .elementor-widget-wrap,
.Contact-Us-Modal .elementor-container {
  position: relative;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;

  background: #ffffff;
  padding: 32px;
  border-radius: 12px;

  transform: translateY(-10px);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

/* Close button hit area */
.Contact-Us-Modal__close,
.contact-us-modal-close-button {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 2;
}

.Contact-Us-Modal__close img,
.contact-us-modal-close-button img {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.Contact-Us-Modal__close:hover,
.contact-us-modal-close-button:hover {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}

/* OPEN state */
.Contact-Us-Modal.Contact-Us-Modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.Contact-Us-Modal.Contact-Us-Modal--open .e-con-inner,
.Contact-Us-Modal.Contact-Us-Modal--open .elementor-column > .elementor-widget-wrap,
.Contact-Us-Modal.Contact-Us-Modal--open .elementor-container {
  transform: translateY(0);
}

/* Lock page scroll behind modal */
body.Contact-Us-Modal--active {
  overflow: hidden;
}

/* MOBILE – FULLSCREEN SHEET */
@media (max-width: 767px) {
  /* Close button floats above the content, in true modal header position */
  .Contact-Us-Modal__close,
  .contact-us-modal-close-button {
    position: fixed; /* instead of absolute inside content */
    top: env(safe-area-inset-top, 12px);
    right: 8px;
    z-index: 999999; /* stays above sheet */

    width: 44px;  /* more tappable */
    height: 44px;

    background: rgba(255, 255, 255, 0.9); /* light clickable bubble */
    backdrop-filter: blur(6px);           /* modern iOS-style effect */
    border-radius: 50%;
  }

  .Contact-Us-Modal__close img,
  .contact-us-modal-close-button img {
    width: 18px;
    height: 18px;
  }

  /* Modal behaves like a fullscreen sheet */
  .Contact-Us-Modal {
    align-items: stretch; /* take full height */
    justify-content: center;
    padding: 0;
    overflow-y: hidden;   /* sheet itself will scroll, not wrapper */
  }

  /* Inner sheet – full viewport, no rounded corners */
  .Contact-Us-Modal .e-con-inner,
  .Contact-Us-Modal .elementor-column > .elementor-widget-wrap,
  .Contact-Us-Modal .elementor-container {
    max-width: 100vw;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;

    margin: 0;
    border-radius: 0;

    padding: 60px 16px 24px !important; /* top padding keeps title/form below fixed close button */
    overflow-y: auto;                   /* content (form) scrolls inside the sheet */
  }

  /* Form fields full width */
  .Contact-Us-Modal input,
  .Contact-Us-Modal textarea,
  .Contact-Us-Modal select {
    width: 100% !important;
    box-sizing: border-box;
  }
}

/********************************************
 * ELEMENTOR EDITOR OVERRIDE
 * (show modal as normal section while editing)
 ********************************************/

body.elementor-editor-active .Contact-Us-Modal,
body.elementor-edit-mode .Contact-Us-Modal {
  position: static;
  inset: auto;
  background: transparent;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  display: block;
  padding: 0;
  overflow: visible;
}

body.elementor-editor-active .Contact-Us-Modal .e-con-inner,
body.elementor-editor-active .Contact-Us-Modal .elementor-column > .elementor-widget-wrap,
body.elementor-editor-active .Contact-Us-Modal .elementor-container,
body.elementor-edit-mode .Contact-Us-Modal .e-con-inner,
body.elementor-edit-mode .Contact-Us-Modal .elementor-column > .elementor-widget-wrap,
body.elementor-edit-mode .Contact-Us-Modal .elementor-container {
  max-width: 100%;
  height: auto;
  min-height: auto;
  border-radius: 0;
}

body.elementor-editor-active.Contact-Us-Modal--active,
body.elementor-edit-mode.Contact-Us-Modal--active {
  overflow: auto !important;
}

/********************************************
 * Custom CSS – Service Icon Sprite / Branding
 ********************************************/

/* Branding */
:root {
  --accent-color: #000;
}

/* Grid */
.icon-grid,
.elementor .icon-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 40px;
  justify-items: center;
  align-items: start;
  margin-top: 40px;
  box-sizing: border-box;
}

/* Card */
.icon-link,
.elementor .icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  max-width: 280px;
  transition:
    transform 0.15s ease-out,
    border-color 0.15s ease-out,
    color 0.15s ease-out;
}

/* Icon scales with viewport */
.icon-link svg {
  stroke: currentColor;
  fill: none;
  margin-bottom: 10px;
  width: clamp(56px, 10vw, 100px);
  height: auto;
  transition:
    stroke 0.15s ease-out,
    transform 0.15s ease-out,
    color 0.15s ease-out;
}

/* Label */
.icon-link span {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* Hover: keep white background, change stroke/text only */
.icon-link:hover {
  color: var(--accent-color);
  background: #fff;
  border-color: currentColor;
  transform: translateY(-4px);
}

/* Tablet: 2 per row */
@media (max-width: 900px) {
  .icon-grid,
  .elementor .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }

  .icon-link {
    max-width: 260px;
  }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .icon-grid,
  .elementor .icon-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .icon-link {
    max-width: 420px;
  }
}


.project-card {
  overflow: hidden;
  border-radius: 14px;
}

.project-card .elementor-widget-image {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.project-card .elementor-widget-image .elementor-widget-container {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.project-card .elementor-widget-image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform .35s ease;
}

.project-card:hover .elementor-widget-image img {
  transform: scale(1.06);
}/* End custom CSS */