html {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}


#zsiq_float .zsiq_flt_rel {
 background-color: #328a59 !important;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

* {
    font-family: 'Montserrat', sans-serif;
}

header {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

li.nav-item {
    font-size: 18px;
    color: #000;
}

li.nav-item:hover {
    font-weight: 500;
}

@media only screen and (min-width: 1024px) {

a.nav-link.active, .dropdown-item.active, .dropdown-item:active {
    color: #2A73C7 !important;
    font-weight: 500;
    background-color: #fff !important;
}

a.nav-link.active::before, a.nav-link::before {
    content: "";
    position: absolute;
    background: #2A73C7;
    width: 0;
    height: 4px;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

a.nav-link.active::before, a.nav-link:hover::before {
    width: 100% !important;
}

a.nav-link:hover, .dropdown-item:hover {
    color: #2A73C7 !important;
    background: #fff !important;
}
li.nav-item {
    width: 136px;
     justify-content: center;
}
}


.cta-button {
    background: #10912B;
    width: max-content !important;
    height: 43px;
    backface-visibility: hidden;
    will-change: transform;
    box-sizing: border-box;
    font-size: 18px;
}

.hoveranimationbtn {
    overflow: hidden;
    z-index: 0;
    transition: transform 0.5s ease, color 0.6s ease;
    position: relative;
    border: 2px solid transparent;
}

.hoveranimationbtn::before, .membersubmitbtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.65s ease;
    z-index: -1;
}

.hoveranimationbtn:hover::before, .membersubmitbtn:hover::before {
    left: 0;
}

.hoveranimationbtn:hover {
    color: #10912B !important;
    border-color: #10912B;
}

.hero-section {
    height: 565px;
    background: url('../images/hero-bg.webp') no-repeat top center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.inner-hero {
    width: 687px;
    background: rgb(255 255 255 / 87%);
    border-radius: 7px;
}

.hero-description {
    font-size: 18px;
    line-height: 25px;
}

.section-title {
    font-size: 30px;
}

p.section-description, p.problem-item {
    font-size: 18px;
}

.breakdowns {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.breakdown-item {
    background: #F6F6F6;
    border-radius: 6px;
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 25%);
}

p.breakdown-description {
    font-size: 18px;
}

.breakdown-item img {
    object-fit: cover;
}

.image-section .img-container img {
    object-fit: cover;
}

.the-build {
    grid-template-columns: repeat(4, 1fr) !important;
}

.adg-work {
    grid-template-columns: repeat(5, 1fr) !important;
}

.social-reels {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.inner-seo-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.loc-icon {
    padding-left: 5px;
}
.seo-heading {
    font-size: 14px;
    color: #3F3D3D;
    font-weight: 600;
}

.img-section {
    width: 30px;
}

.seo-paragraph {
    font-size: 12px;
    color: #707070;
        line-height: 20px;
}

.seo-paragraph a {
    color: #0000FF;
}

.seo-header {
    gap: 12px;
    margin-bottom: 10px;
}

/* Animations */

/* Base class for all animated elements */
.animate {
    opacity: 0;
    transition: all 0.6s ease;
    transform: translate(0, 0);
}

/* Fade In */
.fade-in {
    transform: translateY(0);
}

.fade-in.show {
    opacity: 1;
}

/* Fade In Up */
.fade-in-up {
    transform: translateY(120px);
    opacity: 0;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Down */
.fade-in-down {
    transform: translateY(-40px);
    opacity: 0;
}

.fade-in-down.show {
    opacity: 1;
    transform: translateY(0);
}


/* Fade Left to Right */
.fade-left {
    transform: translateX(-120px);
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right to Left */
.fade-right {
    transform: translateX(120px);
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Delay utilities */
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
.delay-700 { transition-delay: 700ms; }


.social-icons {
  display: flex;
  /*justify-content: center; 
  align-items: center;*/
  gap: 5px;
  flex-wrap: wrap; 
}

.icon-box {
  position: relative;
  width: 29px;
  height: 29px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  left: 0;
  transition: transform 0.4s ease;
}

/* Default image */
.icon-box img.default {
  z-index: 1;
}

/* Hover image starts above */
.icon-box img.hover {
  transform: translateY(-100%);
  z-index: 2;
}

/* Hover animation */
.icon-box:hover img.hover {
  transform: translateY(0);
}

.icon-box:hover img.default {
  transform: translateY(100%);
}

.real-footer-left {
    width: 32%;
}

.real-footer-center {
    width: 38%;
    text-align: center;
}

.real-footer-right {
    width: 30%;
}

.contact-info {
    width: 67%;
    margin: auto;
}

p.real-footer-descrip, .real-footer-info a, .real-footer-bottom p {
    font-size: 18px;
}

span.read-toggle {
    display: none;
}

.Footer__WidgetFooter-sc-77dc2ec8-0 {
    display: none;
}

div#contactpopup .modal-dialog {
    width: 600px;
    max-width: 600px;
}

div#contactpopup .modal-content, div#contactpopup .modal-body {
    width: 100%;
    max-width: 100%;
}

#contactpopup .modal-header {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    border-bottom: none;
    z-index: 10;
    background: #fff;
    opacity: 1;
    z-index: 999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

#contactpopup .modal-header .btn-close {
    padding: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 1;
}