@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    font-family: "Montserrat", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 1.4;
    color: #1A344B;
    background: #E5ECEE;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #1A344B;
}

img.logo {
    width: 80px;
}

.custom-button-one {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #95BCCE, #4A7D91);
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: opacity 0.2s ease;
    justify-content: center;
}

.custom-button-one:hover {
  opacity: 0.9;
}

.custom-button-one img {
  width: 22px;
  height: 22px;
}

.custom-button-two {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #7ED299, #29924D);
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: opacity 0.2s ease;
    justify-content: center;
}

.custom-button-two:hover {
  opacity: 0.9;
}

.custom-button-two img {
  width: 22px;
  height: 22px;
}

    .menu-button {
      display: inline-flex;
      align-items: center;
      padding: 10px 18px;
      background: linear-gradient(to right, #4b7e92, #1A344B);
      color: white;
      font-size: 14px;
      border: none;
      border-radius: 999px;
      cursor: pointer;
    }

    .menu-icon {
        display: flex;
        justify-content: center;
        margin-right: 10px;
        transform: translateY(-1px);
        gap: 4px;
        flex-direction: column;
        align-items: flex-end;
    }

    .menu-icon span {
      display: block;
      height: 1px;
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 1px;
    }

    .menu-icon span:nth-child(1),
    .menu-icon span:nth-child(3) {
      width: 20px;
    }

    .menu-icon span:nth-child(2) {
      width: 26px; 
    }

header {
    padding: 10px 0;
}

footer {
    padding: 10px 0;
}

.phone-block {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 15px 20px;
    font-weight: 600;
    background: #f1f5f6;
    color: #1b354c;
    border-radius: 40px;
}

img.phone-icon {
    padding: 0 12px;
}

.hero-section {
    background-color: #3D5F6A;
    border-radius: 60px;
}

.hero-section-body {
    padding: 70px 20px 70px 50px;
}

.white {
    color: #fff;
}
.uk-text-bold {
    font-weight: 700;
}

.drilling-offer {
    margin: 0px 40px 40px 0px;
    padding: 20px;
    background: #f1f5f6;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.drilling-offer h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    margin-top: 10px;
}

.drilling-offer h2 {
  animation: flash 1s infinite;
  color: #29924D;
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.drill-bar-container {
  width: 100%;
  height: 20px;
  background: #d1dfe4;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.drill-bar {
  width: 0%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #95BCCE,
    #95BCCE 10px,
    #7AA6B8 10px,
    #7AA6B8 20px
  );
  animation: drill-progress 5s infinite linear;
  border-radius: 10px 0 0 10px;
}

@keyframes drill-progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.services-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.services-mini-bar-container {
  width: 60px;
  height: 18px;
  background: #d1dfe4;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.services-mini-bar {
  width: 0%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #95BCCE,
    #95BCCE 10px,
    #7AA6B8 10px,
    #7AA6B8 20px
  );
  animation: services-mini-progress 2s infinite linear;
  border-radius: 999px;
}

@keyframes services-mini-progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.services-title {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.section-title .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #95BCCE, #4A7D91);
}

.section-title h3 {
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 12px; 
    border-radius: 30px; 
}

.service-image {
  width: 80px;
  height: 80px;
  border-radius: 30px;
  object-fit: cover;
}

.service-info {
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2; 
}

.service-price {
  font-size: 14px;
  color: #888;
  margin-top: 2px;
}

.service-order {
    font-size: 16px;
    color: #29924D;
    text-decoration: none;
    margin-top: 4px;
    font-weight: 600;
    transition: color 0.2s;
}

.service-order:hover {
  color: #29924D;
}

.cta-form-section {
    padding: 70px 50px 70px 50px;
    border-radius: 60px;
}

.uk-border-rounded {
    border-radius: 40px;
}

.scheme-block-step-number {
    font-size: 60px;
    padding: 0px 20px 0px 20px;
    width: 35px;
    color: transparent;
    background-image: linear-gradient(0.25turn, #7ED299 0%, #29924D 100%);
    -webkit-background-clip: text;
    will-change: transform;
    line-height: 1.5;
    font-weight: 600;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.scheme-block-step-title {
    font-size: 22px;
    font-weight: 700;
}

.scheme-block-step-description {
    font-size: 16px;
    font-weight: 500;
}

.scheme-block-step {
    color: #fff;
    margin-bottom: 20px;
}

.scheme-block {
    background-color: #354F50;
    border-radius: 60px;
    padding: 50px 60px;
}

.arrow-down {
    width: 20px;
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.tada {
    animation: tada 4s infinite;
}

@keyframes pulse {
0% {
    -moz-box-shadow: 0 0 0 0 rgba(110,169,45,1);
    box-shadow: 0 0 0 0 rgba(110,169,45,1);
}
70% {
    -moz-box-shadow: 0 0 0 10px rgba(110,169,45,0);
    box-shadow: 0 0 0 10px rgba(110,169,45,0);
}
100% {
    -moz-box-shadow: 0 0 0 0 rgba(110,169,45,0);
    box-shadow: 0 0 0 0 rgba(110,169,45,0);
}
}
.pulse {
    box-shadow: 0 0 0 rgba(110,169,45,1);
    animation: pulse 2s infinite;
}

.cta {
    border-radius: 60px;
    background-position: center center;
    background: #f1f5f6;
    padding: 20px 60px;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1A344B;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
    background: #f1f5f6;
    padding: 10px 10px;
    border-radius: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.address-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  padding: 16px 20px;
  text-decoration: none;
  color: #1F2B3A;
}

.address-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.uk-card-default {
    background-color: #f1f5f6;
    color: #1A344B;
}

button.uk-modal-close-outside.uk-icon.uk-close {
    background: #1A344B;
    padding: 10px;
    border-radius: 12px;
}

.uk-offcanvas-close {
    position: absolute;
    z-index: 1000;
    top: 20px;
    right: 20px;
    padding: 10px;
    background: #4A7D91;
    border-radius: 40px;
}

.uk-offcanvas-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    width: 350px;
    left: -350px;
}

.uk-offcanvas-bar .uk-nav-primary>li>a {
    color: #1A344B;
    font-size: 20px;
    font-weight: 700;
}

.uk-offcanvas-bar .uk-nav-primary>li>a:hover {
    color: #29924D;
}


.phone-icon-menu {
    background: linear-gradient(90deg, #7ED299, #29924D);
    padding: 7px 18px;
    border-radius: 40px;
}

.mob-menu {
    background: linear-gradient(90deg, #95BCCE, #4A7D91);
    padding: 7px 18px;
    border-radius: 40px;
}


.review-card {
  background-color: #f1f5f6;
  border-radius: 20px;
  padding: 24px;
  color: #2d3748;
}

.stars {
  margin-bottom: 16px;
}

.stars img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.review-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 16px;
  color: #2d3748;
}

.uk-dotnav>.uk-active>* {
    background-color: #29924D;
    border-color: transparent;
}

.uk-dotnav>*>* {
    display: block;
    box-sizing: border-box;
    width: 30px;
    height: 4px;
    border-radius: 50px;
    background: #C9C9C9;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    transition: .2s ease-in-out;
    transition-property: background-color, border-color;
}


.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.fab {
  width: 60px;
  height: 60px;
  background-color: #29924D;
  border-radius: 50%;
  color: white;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.fab-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.fab-option {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: white;
  border-radius: 50%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  transition: background-color 0.3s;
}

.fab-option:hover {
  background-color: #138496;
}


@media (max-width: 640px) {

.hero-section-body {
    padding: 40px 20px 20px 20px;
}

.hero-section {
  background-color: #3D5F6A;
  border-radius: 60px;
  padding: 0 0 20px 0px;
}

h1.uk-text-bold.white.uk-text-uppercase {
    font-size: 24px;
}

.services-title {
    font-size: 24px;
}

.section-title h3 {
    font-size: 18px;
}


.drilling-offer {
    margin: 0px 20px 30px 20px;
    padding: 20px;
    border-radius: 40px;
}

.cta-form-section {
    padding: 120px 20px 20px 20px;
    border-radius: 60px;
}

.scheme-block {
    background-color: #354F50;
    border-radius: 60px;
    padding: 40px 20px;
}

.scheme-block-step-description {
    font-size: 16px;
    font-weight: 500;
    margin-top: -40px;
}

.cta {
    border-radius: 50px;
    background-position: center center;
    background: #f1f5f6;
    padding: 20px 20px;
}

}