:root{
    --color-primary-green: #0d9488;
    --color-dark-green: #0f766e;
    --color-font-gray: #374151;
}

html, body{
    height: 100%;
    font-size: 16px;
    color: #374151;
    font-family: "Inter", sans-serif;
}

.container-fluid{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.topbar-fluid{
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(229, 231, 235, 1);
    backdrop-filter: blur(4px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.topbar-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.topbar-logo-container{
    width: 64px;
    height: 64px;
    overflow: hidden;
}

.topbar-logo-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.topbar-menu-container{
    display: flex;
    gap: 2rem;
}

.topbar-menu-item{
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.topbar-menu-item:hover{
    color: var(--color-primary-green);
}

.topbar-cta-button{
    background: var(--color-primary-green);
    color: #fff;
    font-size: .875rem;
    padding: .5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: .25px;
    transition: all 0.2s ease;
}

.topbar-cta-button:hover{
    text-decoration: none;
    background: var(--color-dark-green);
}

.hero-fluid{
    padding: 0;
    position: relative;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg-image{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    top: 0;
    left: 0;
}

.hero-bg-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fff, #fffffff2, #fffc);
}

.hero-container{
    position: relative;
}

.hero-intro-wrap{
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    width: max-content;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f766e;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.hero-intro-wrap i{
    font-size: 1.2rem;
    line-height: 1;
}

.hero-title{
    font-size: 3.75rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-subtitle{
    display: inline-block;
    position: relative;
    color: var(--color-primary-green);
}

.hero-sub-border{
    position: absolute;
    height: 0.75rem;
    width: 100%;
    background: #99f6e4;
    left: 0;
    bottom: -8px;
    transform: skewX(-12deg);
    opacity: 0.3;
}

.hero-p{
    font-size: 1.125rem;
    font-weight: 300;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-btn-container{
    display: flex;
    gap: 1.5rem;
}

.hero-btn-primary{
    font-size: 1.25rem;
    display: flex;
    gap: 10px;
    padding: 1rem 2rem;
    line-height: 1;
    background: var(--color-primary-green);
    color: #fff;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero-btn-primary:hover{
    background: var(--color-dark-green);
}

.hero-btn-secondary{
    font-size: 1.25rem;
    display: flex;
    gap: 10px;
    padding: 14px 2rem;
    line-height: 1;
    color: var(--color-primary-green);
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 2px solid var(--color-primary-green);
    box-sizing: border-box;
    cursor: pointer;
}

.hero-btn-secondary:hover{
    border: 2px solid var(--color-dark-green);
    color: #fff;
    background: var(--color-dark-green);
}

.hero-circle-left{
    position: absolute;
    left: 5rem;
    bottom: 5rem;
    background: #bfdbfe;
    width: 24rem;
    height: 24rem;
    opacity: 0.2;
    border-radius: 24rem;
    filter: blur(24px);
    mix-blend-mode: multiply;
    animation: hcl 3s ease infinite;
}

@keyframes hcl{
    0%      {bottom: 5rem;}
    50%     {bottom: 7rem;}
    100%    {bottom: 5rem;}
}

.hero-circle-right{
    width: 18rem;
    height: 18rem;
    position: absolute;
    top: 5rem;
    right: 5rem;
    background: #99f6e4;
    opacity: 0.2;
    filter: blur(24px);
    mix-blend-mode: multiply;
    border-radius: 18rem;
    animation: hcr 3s ease infinite;
}

@keyframes hcr{
    0%      {top: 5rem;}
    50%     {top: 7rem;}
    100%    {top: 5rem;}
}

.about-fluid{
    background: #f9fafb;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}

.section-title{
    position: relative;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    text-align: center;
    color: rgb(17, 24, 39);
    margin-bottom: 1rem;
}

.section-title-border{
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #14b8a6, #2563eb);
    margin: auto;
    margin-bottom: 1.5rem;
}

.about-icon-item{
    display: flex;
    color: inherit;
    align-items: center;
    gap: 8px;
}

.about-icon-item i{
    color: var(--color-primary-green);
    font-size: 1.25rem;
}

.about-col-photo{
    width: 100%;
    position: relative;
}

.about-photo-bg{
    position: absolute;
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    top: -1rem;
    left: -1rem;
    background: linear-gradient(to right, #14b8a6, #2563eb);
    opacity: 0.25;
    filter: blur(16px);
    border-radius: 1rem;
}

.about-col-photo img{
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px #00000040;
    position: relative;
}

.what-fluid{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #fff;
}

.what-subtitle{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary-green);
    line-height: 4rem;
}

.services-fluid{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, #f9fafb, #fff);
    position: relative;
    overflow: hidden;
}

.service-circle{
    position: absolute;
    width: 24rem;
    height: 24rem;
    bottom: 0;
    left: 0;
    border-radius: 50rem;
    opacity: 0.3;
    background: rgb(218, 234, 254);
    filter: blur(64px);
}

.service-container{
    position: relative;
}

.service-row, .process-row{
    align-items: stretch;
}

.service-col{
    background: #fff;
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
    height: 100%;
}

.service-col-icon{
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #14b8a6, #2563eb);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    margin-bottom: 1.5rem;
    transition: all 0.35s ease;
}

.service-col-title{
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    color: var(--bs-body-color);
    margin-bottom: 0.75rem;
    transition: all 0.35s ease;
}

.service-col-p{
    color: #4b5563;
    font-weight: 300;
    line-height: 1.625rem;
}

.service-border-wrap{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
}

.service-col-border{
    width: 0;
    height: 0.3rem;
    background: linear-gradient(to right, #14b8a6, #2563eb);
    transition: all 0.35s ease;
}

.service-col:hover{
    box-shadow: 0 25px 50px -12px #00000040;
    background: linear-gradient(to bottom right, #14b8a61a, #2563eb1a);
    padding-bottom: 1.7rem;
}

.service-col:hover .service-col-title{
    color: var(--color-primary-green);
}

.service-col:hover .service-col-border{
    width: 100%;
}

.service-col:hover .service-col-icon{
    transform: rotate(7deg) scale(1.1);
    margin-bottom: 1.2rem;
}

.process-fluid{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #fff;
}

.process-col{
    height: 100%;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.35s ease;
}

.process-col-num{
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    transition: all 0.35s ease;
    transform: scale(1);
    color: #ccfbf1;
    margin-bottom: 1rem;
}

.process-col-title{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: var(--color-dark-green);
    margin-bottom: 1rem;
}

.process-col-arrow{
    position: absolute;
    right: -10px;
    opacity: 0;
    top: calc(50% - 48px);
    font-size: 4rem;
    color: #99f6e4;
    animation: processArrow 1s ease-in infinite;
    z-index: 2;
}

.process-row .col-3:nth-child(2) .process-col-arrow{
    animation-delay: 1s;
}

.process-row .col-3:nth-child(3) .process-col-arrow{
    animation-delay: 2s;
}

.process-row .col-3:nth-child(4) .process-col-arrow{
    animation-delay: 3s;
}

@keyframes processArrow{
    0%      {right: -10px; opacity: 0;}
    100%    {right: -40px; opacity: 1;}
}

.process-col:hover{
    border: 2px solid var(--color-primary-green);
    box-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
    transform: translateY(-0.5rem);
    background: linear-gradient(to bottom right, #f0fdfa, #eff6ff);
}

.process-col:hover .process-col-num{
    transform: scale(1.1);
    color: #99f6e4;
}

.process-photo-wrap{
    width: 100%;
    max-width: 56rem;
    margin: auto;
    position: relative;
}

.process-photo-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #14b8a6, #2563eb);
    filter: blur(40px);
    opacity: 0.25;
    border-radius: 1rem;
}

.process-photo-wrap img{
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px #00000040;
    transition: all 0.3s ease;
    position: relative;
}

.contact-fluid{
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #f9fafb ,#f0fdfa4d , #eff6ff4d);
}

.contact-bg-container{
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.contact-bg-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-container{
    position: relative;
}

.contact-form-container{
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    width: 100%;
    max-width: 53rem;
    margin: auto;
    box-shadow: 0 25px 50px -12px #00000040;
}

.form-input-holder, .form-submit-holder{
    margin-top: 1.5rem;
}

.form-input-holder:first-child{
    margin-top: 0;
}

.form-label{
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 500;
}

.form-input{
    padding: 0.8rem 1rem;
    width: 100%;
    font-weight: 300;
    border: 2px solid var(--bs-border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus{
    border: 2px solid var(--color-primary-green);
    outline: none;
}

.form-submit-button{
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, #2563eb, #0d9488);
    border: none;
    border-radius: 6px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-submit-button:hover{
    background: linear-gradient(to right, #0d9488, #2563eb);
}

textarea{
    min-height: 100px;
}

.footer-fluid{
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: rgb(17, 24, 39);
}

.footer-logo-wrap{
    height: 70px;
}

.footer-logo-wrap img{
    height: 100%;
}

.footer-menu-title{
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: .75rem;
}

.footer-menu-item{
    display: block;
    color: rgb(156 163 175);
    transition: all 0.3s ease;
    font-weight: 300;
    text-decoration: none;
    padding: 5px 0;
}

.footer-menu-item:hover{
    color: var(--color-primary-green);
}

.footer-copy{
    color: rgb(156 163 175);
    font-size: 13px;
    font-weight: 300;
    border-top: 1px solid var(--bs-gray-800);
    padding-top: 3rem;
    margin-top: 2rem;
}







.mb-16{
    margin-bottom: 4rem;
}

@media (min-width: 1400px){
    .service-col, .process-col{
        padding: 2rem;
    }
    
    .service-col:hover{
        padding-bottom: 2.2rem;
    }
}

@media (max-width: 768px){
    
    .topbar-menu-container{
        display: none;
    }
    
    .hero-btn-container{
        flex-direction: column;
    }
    
    .hero-btn-primary, .hero-btn-secondary{
        justify-content: center;
    }
    
    .about-col-photo{
        margin-top: 3rem;
    }
    
    .service-row, .process-row{
        gap: 2rem;
    }
    
    .contact-form-container{
        padding: 1.5rem;
    }
    
    .footer-row{
        gap: 2rem;
    }
    
}