/********************************************************** */
/**********************  Envotek ************************ */
/**********************************************************

    TABLE OF CONTENT
    ========================

    01. Default CSS
    02. Hero Section
    03. Service Section
    04. Partner Section
    05. Choose Us Section
    06. Project Section
    07. Testimonial Section
    08. Call To Action
    09. Blog Section
    10. Page Banner
    11. About Us
    12. About Page Choose Us
    13. Team Section
    14. Service Details
    15. Project Details
    16. Blog Details
    17. Contact Section
    18. Main Footer


/****************************************************** */
/*******************  01. Default CSS ***************** */
/****************************************************** */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #68616D;
    font-size: 17px;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1F0039;
    font-weight: 700;
}

/* ===============================
   MODERN HEADING SCALE (FIXED)
================================ */

h1 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem); /* 29px – 38px */
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.5rem, 2.2vw, 2rem); /* 24px – 32px */
    line-height: 1.3;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.3rem, 1.9vw, 1.7rem); /* 21px – 27px */
    line-height: 1.35;
    font-weight: 700;
}

h4 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.4;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem; /* 18px */
    line-height: 1.45;
    font-weight: 600;
}

h6 {
    font-size: 1rem; /* 16px */
    line-height: 1.5;
    font-weight: 600;
}


img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

button,
button:focus {
    outline: 0;
    border: none;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

/*** Preloader style ***/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/logo.png);
}

.theme-btn {
    padding: 19px 36px;
    font-size: 18px;
    font-weight: 500;
    background: #1C8CB2;
    color: #FFFFFF;
    border-radius: 5px;
    text-transform: capitalize;
    border: 2px solid transparent;
    transition: all .3s;
}

.theme-btn i {
    padding-left: 15px;
}

.theme-btn:hover {
    border-color: #1C8CB2;
    color: #1C8CB2;
    background: transparent;
}

.theme-btn:focus {
    box-shadow: none;
    border: 2px solid #1C8CB2;
}

.section-title {
    margin-bottom: 55px;
}

.section-title span {
    color: #1C8CB2;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.section-title h2 {
    line-height: 1.38;
}




/****************************************************** */
/*******************  02. Hero Section **************** */
/****************************************************** */
.hero-section {
    background: white;
    position: relative;
    z-index: 1111;
    height: 600px;
    display: flex;
    align-items: center;
    margin-top: 100px;
    background-size: cover;
    background-position: center;
    /* background-image: url(../images/hero/hero-bg.jpg); */
}

.hero-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .65;
    background: white;
}

.hero-section .hero-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 27%;
    z-index: -2;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    color: black;
    font-size: 55px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-content p {
    color: black;
    font-size: 20px;
    margin-bottom: 45px;
}


/****************************************************** */
/*****************  03. Service Section *************** */
/****************************************************** */

.vln-service-wrapper {
    padding: 50px 0px 70px;
    background-color: #EEE;
}

.vln-section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.vln-subtitle {
    color: #1C8CB2;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.vln-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #222222;
}

/* The Card Design */
.vln-service-card {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vln-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #1C8CB2;
}

.vln-icon-box {
    width: 65px;
    height: 65px;
    background: #f4fafd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.vln-service-card:hover .vln-icon-box {
    background: #1C8CB2;
}

.vln-icon-box i {
    font-size: 28px;
    color: #1C8CB2;
    transition: 0.3s;
}

.vln-service-card:hover .vln-icon-box i {
    color: #ffffff;
}

.vln-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vln-card-title a {
    color: #222222;
    text-decoration: none;
}

.vln-card-text {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sidebar Button Area */
.vln-sidebar-cta {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1dee2;
    border-radius: 12px;
    padding: 20px;
}

.vln-btn-main {
    background: #1C8CB2;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.vln-btn-main:hover {
    background: #146a87;
    color: #fff;
    transform: scale(1.05);
}

/* .service-item {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 0px 25px;
    margin-bottom: 50px;
    transition: all .3s;
    background: linear-gradient(to right, #FFDDDA, #FFFFFF);
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1C8CB2, #FFFFFF);
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    transition: 0.5s;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item .serv-iconimg {
    transition: 0.5s;
}

.service-item:hover .serv-iconimg {
    filter: brightness(0) invert(1);
}

.service-item .serv-iconimg img {
    width: 100%;
} */

.serv-content {
    margin-left: 30px;
}

.serv-content h5 {
    line-height: 1.47;
    font-size: 22px;
    margin-bottom: 0;
}

.serv-content h5 a {
    color: #1f0039;
    font-weight: 700;
    transition: 0.5s;
}

.serv-content h5 a:hover {
    color: #ffffff;
}

.service-img {
    position: relative;
    z-index: 111;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    height: calc(100% - 50px);
    background-position: center;
    background-image: url('../images/service/service-img.jpg');
}

.service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, #1F0039, transparent 70%);
}

.service-details-btn {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
}


/****************************************************** */
/*****************  04. Partner Section *************** */
/****************************************************** */
.partners-group {
    padding: 0px;
    background: white;
    border-bottom: 5px solid #1C8CB2;
}

.partner-logo {
    text-align: center;
}

.partner-logo a {
    opacity: 0.5;
    transition: 0.5s;
    filter: invert(55%) sepia(67%) saturate(4744%) hue-rotate(334deg) brightness(100%) contrast(98%);
}

.partner-logo a:hover {
    opacity: 1;
}


/****************************************************** */
/****************  05. Choose Us Section ************** */
/****************************************************** */
.chooseus-left-content {
    position: relative;
}

.chooseus-img {
    padding-right: 170px;
}

.chooseus-left-content .experience-years {
    position: absolute;
    top: 95px;
    right: 10px;
    transform: rotate(90deg);
}

.experience-years h1 {
    font-size: 65px;
    color: #1C8CB2;
}

.experience-content {
    position: absolute;
    padding: 35px 30px 25px 45px;
    max-width: 370px;
    left: 140px;
    bottom: 40px;
    background: #ffefed;
    border-bottom: 5px solid #ffa8a0;
    border-right: 5px solid #ffa8a0;
    border-radius: 0px 50px 0px 50px;
    z-index: 1;
}

.experience-content blockquote {
    color: #1f0039;
    margin-bottom: 0;
}

.quotation-icon {
    position: absolute;
    top: -25px;
    left: 45px;
    max-width: 60px;
}

.chooseus-right-content {
    max-width: 520px;
    margin-left: auto;
}

.chooseus-right-content .section-title {
    margin: 0;
    margin-bottom: 55px;
}

.chooseus-list ul li {
    margin-bottom: 30px;
    color: #68616D;
    font-weight: 500;
}

.chooseus-list ul li i {
    padding: 6px 7px;
    background: #FFEFED;
    font-size: 20px;
    color: #1C8CB2;
    font-weight: 600;
    margin-right: 15px;
}

.chooseus-right-content blockquote,
.about-choose-us-left blockquote {
    color: #1F0039;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.chooseus-right-content p,
.about-choose-us-left p {
    margin-bottom: 0;
}


/****************************************************** */
/*****************  06. Project Section *************** */
/****************************************************** */
.project-section {
    background: linear-gradient(to bottom, #FFEFED, #FFFFFF);
}

.project-item {
    margin-bottom: 50px;
}

.project-right-item {
    position: relative;
    height: calc(100% - 50px);
    min-height: 400px;
    background: url(../images/project/project5.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
}

.project-right-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, #1F0039, transparent 70%);
}

.project-right-item .project-content {
    margin-top: 0;
}

.project-image img {
    width: 100%;
}

.project-content {
    position: relative;
    padding: 10px 30px;
    margin: 0 30px;
    margin-top: -35px;
    display: flex;
    align-items: center;
    z-index: 1;
    transition: all .3s;
    background: linear-gradient(to right, #FFDDDA, #FFFFFF);
}

.project-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    transition: all .3s;
    background: linear-gradient(to right, #1C8CB2, #FFFFFF);
}

.project-content:hover::after {
    opacity: 1;
}

.project-icon {
    padding: 9px 14px;
    background: #FFFFFF;
    border: 1px solid #FFCEC9;
}

.project-icon i {
    font-size: 18px;
    color: #1C8CB2;
}

.project-content h5 {
    line-height: 1.6;
    margin-left: 30px;
    margin-bottom: 0;
}

.project-content h5 a {
    color: #1F0039;
    transition: 0.5s;
}

.project-content h5 a:hover {
    color: #ffffff;
}

/****************************************************** */
/***************  07. Testimonial Section ************* */
/****************************************************** */
.testimonial-section {
    background: #FFFFFF;
}

.testimonial-section .section-title {
    max-width: 540px;
}

.testimonial-item {
    padding-top: 13px;
}

.testimonial-inner {
    position: relative;
    padding: 65px 40px 40px 50px;
    background: linear-gradient(to right, #FFDDDA, #FFFFFF);
    z-index: 11;
}

.testimonial-inner::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50px;
    bottom: -15px;
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
    border-top: 15px solid #FFDDDA;
    z-index: -1;
}

.quotation-img {
    position: absolute;
    top: -15px;
    left: 50px;
}

.testimonial-content p {
    color: #453f4a;
    font-size: 16px;
    margin-bottom: 0;
}

.testimonial-imgbox {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-left: 35px;
}

.testimonial-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.testimonial-imgdetails {
    margin-left: 25px;
}

.testimonial-imgdetails span {
    color: #453f4a;
    font-size: 15px;
    margin-top: 10px;
    font-weight: 500;
    display: block;
}

.testimonial-section .slick-dots {
    display: flex;
    margin-top: 60px;
    justify-content: center;
}

.testimonial-section .slick-dots li {
    margin: 0 10px;
}

.testimonial-section .slick-dots li button {
    width: 10px;
    height: 10px;
    z-index: 1;
    text-indent: 2000px;
    border-radius: 50%;
    position: relative;
}

.testimonial-section .slick-dots li button:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FFDDDA;
    transition: all .5s;
}

.testimonial-section .slick-dots li.slick-active button:before {
    background: #1C8CB2;
}

.testimonial-section .slick-dots li button:after {
    position: absolute;
    content: '';
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    z-index: -1;
    opacity: 0;
    border-radius: 50%;
    background: #FFDDDA;
    transition: all .5s;
}

.testimonial-section .slick-dots li.slick-active button:after {
    opacity: 1;
}


/****************************************************** */
/*****************  08. Call To Action **************** */
/****************************************************** */
.cta-section {
    background: linear-gradient(to top, #ffddda, #ffffff);
}

.cta-section.bg-white {
    background: #ffffff;
}

.contact-withus {
    position: relative;
    padding: 50px 100px;
    background: url(../images/cta-bg.jpg);
    background-position: center;
    background-size: cover;
    border-bottom: 5px solid #FF9F96;
    z-index: 1;
}

.contact-withus::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .95;
    background: #1F0039;
}

.contact-withus-content {
    max-width: 480px;
}

.contact-withus-content h3 {
    color: #FFFFFF;
    line-height: 1.43;
    margin-bottom: 0;
}

.contact-withus-num {
    text-align: right;
}

.contact-withus-num .contact-number {
    font-size: 25px;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    transition: all .3s;
}

.contact-withus-num .contact-number:hover {
    color: #1C8CB2;
}


/****************************************************** */
/******************  09. Blog Section ***************** */
/****************************************************** */
.blog-section .section-title {
    max-width: 480px;
}

.blog-item {
    display: flex;
    margin-bottom: 50px;
}

.blog-image {
    background-size: cover;
    background-position: center;
    flex: none;
    width: 195px;
}

.blog-content {
    margin-left: 5px;
    padding: 40px 40px 38px 50px;
    background: linear-gradient(to right, #FFDDDA, #FFFFFF);
}

.blog-content .date {
    color: #1C8CB2;
    font-weight: 600;
}

.blog-content h5 {
    margin: 10px 0;
    line-height: 1.6;
}

.blog-content h5 a {
    color: #1F0039;
    transition: 0.5s;
}

.blog-content h5 a:hover {
    color: #1C8CB2;
}

.blog-content p {
    margin-bottom: 0;
}


/****************************************************** */
/******************  10. Page Banner ****************** */
/****************************************************** */
.page-banner {
    height: 235px;
    display: flex;
    align-items: center;
    position: relative;
    /* margin-top: 100px; */
    margin-bottom: 25px;
    /* background: url(../images/banner-bg.jpg); */
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.page-banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.65;
    background-color: white;
}

.banner-content h2 {
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.page-breadcrumb .breadcrumb {
    max-width: 200px;
    background: #1C8CB2;
    border-radius: 5px;
    margin-bottom: 0;
    padding: 14px 25px;
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
}

.breadcrumb .breadcrumb-item {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb .breadcrumb-item a {
    color: #FFFFFF;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\ea7c";
    color: #FFFFFF;
    font-family: IcoFont;
    margin-right: 5px;
    margin-left: 5px;
}


/****************************************************** */
/********************  11. About Us ******************* */
/****************************************************** */
.about-left {
    position: relative;
    max-width: 535px;
    padding-bottom: 75px;
}

.about-left .experience-years {
    position: absolute;
    top: 55px;
    right: -15px;
    transform: rotate(90deg);
}

.about-image {
    position: relative;
    z-index: -2;
}

.about-image-two {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about-image-two:before {
    position: absolute;
    content: '';
    top: -25px;
    left: -25px;
    width: 100px;
    height: 100px;
    z-index: -1;
    background: #1C8CB2;
    clip-path: polygon(100% 0, 0 100%, 0 0);
}

.about-us-content {
    max-width: 540px;
    margin-left: auto;
}

.about-us-content .section-title {
    max-width: 100%;
    margin: 0;
    margin-bottom: 45px;
}

.about-us-content p {
    color: #68616D;
    margin-bottom: 20px;
}

.about-us-content p:last-child {
    margin-bottom: 0;
}

.about-us-content blockquote {
    color: #1F0039;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}


/****************************************************** */
/*************  12. About Page Choose Us ************** */
/****************************************************** */
.about-video-area {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: url(../images/about/about-chooseus-img.jpg); */
    background-position: center;
    background-size: cover;
    margin-bottom: 50px;
    z-index: 1;
}

.about-video-area::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.65;
    background: #1F0039;
}

.video-play {
    width: 90px;
    height: 90px;
    opacity: 0.75;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    background: #1C8CB2;
    display: inline-block;
}

.video-play i {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 90px;
}

.about-choose-us-left {
    max-width: 520px;
}

.about-choose-us-left .section-title {
    margin-left: 0;
}

.about-choose-us-right {
    max-width: 560px;
    margin-left: auto;
}

.about-choose-us-right h2 {
    line-height: 1.38;
    margin-bottom: 45px;
}

.about-choose-us-right h2 span {
    color: #1C8CB2;
}

.about-choose-us-right p {
    margin-bottom: 22px;
}

.about-choose-us-right .theme-btn {
    margin-top: 30px;
}


/****************************************************** */
/*****************  13. Team Section ****************** */
/****************************************************** */
.team-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.team-wrap:before,
.team-wrap:after {
    position: absolute;
    top: 0;
    left: 31.33%;
    content: '';
    width: 1px;
    height: 100%;
    background: #ECE7F1;
}

.team-wrap:after {
    left: 68.66%;
}

.border-shap {
    position: absolute;
    width: 100%;
    height: 100%;
}

.border-shap:before,
.border-shap:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 31.33%;
    width: 1px;
    height: 100px;
    background: #1C8CB2;
    transform: translateY(-50%);
}

.border-shap:after {
    left: 68.66%;
    z-index: 1;
}

.team-member {
    position: relative;
    max-width: 300px;
    width: 27%;
}

.member-image {
    position: relative;
}

.member-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, #1F0039, transparent 70%);
}

.member-desc {
    position: absolute;
    left: auto;
    bottom: 30px;
    margin: 0 27.5px;
    width: calc(100% - 55px);
    padding: 18px 30px 16px 35px;
    background: linear-gradient(to right, #FFDDDA, #FFFFFF);
}

.member-desc span {
    color: #1F0039;
    font-size: 14px;
    display: block;
}


/****************************************************** */
/****************  14. Service Details **************** */
/****************************************************** */
/* Service Sidebar */
.service-sidebar {
    max-width: 300px;
}

.sidebar-widget {
    margin-bottom: 60px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.service-widget {
    padding: 40px 30px 45px;
    background: #FFEFED;
}

.service-widget h4 {
    text-align: center;
    margin-bottom: 35px;
}

.service-widget ul li {
    margin-bottom: 17px;
}

.service-widget ul li:last-child {
    margin-bottom: 0;
}

.service-widget ul li a {
    display: block;
    font-size: 16px;
    color: #4C4254;
    padding: 14px 25px;
    background: #FFFFFF;
    transition: all .3s;
}

.service-widget ul li a:hover {
    color: #FFFFFF;
    background: #1C8CB2;
}

.service-video-widget {
    position: relative;
    padding: 190px 45px 25px;
    background: url(../images/service/video-widget-bg.jpg);
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.service-video-widget::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to top, #1F0039, transparent 70%);
}

.service-video-widget .video-play {
    margin-bottom: 82px;
}

.project-text h4 {
    color: #FFFFFF;
    line-height: 1.6;
}

.project-text a {
    color: #1C8CB2;
    font-weight: 700;
    font-size: 30px;
}

/* Service Right Content */
.service-details-content {
    margin-left: -30px;
}

.service-details-image {
    position: relative;
    margin-bottom: 95px;
}

.service-details-image .video-play {
    position: absolute;
    bottom: -35px;
    left: 50%;
    width: 75px;
    height: 75px;
    opacity: 1;
    border-radius: 0;
    line-height: 70px;
    border: 5px solid #FFFFFF;
    transform: translateX(-50%);
}

.service-details-image .video-play:before {
    position: absolute;
    content: '';
    left: -15px;
    top: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: transparent;
    border: 1px solid #1C8CB24D;
}

.service-details-image .video-play i {
    line-height: 70px;
}

.service-details-content h2 {
    margin-bottom: 28px;
}

.service-details-content p {
    margin-bottom: 28px;
}

.service-details-content p:last-child {
    margin-bottom: 0;
}

.service-details-content blockquote {
    color: #1F0039;
    font-size: 18px;
    font-weight: 700;
}

.work-part-content {
    margin: 45px 0;
}

.work-left {
    position: relative;
    max-width: 340px;
    padding-bottom: 90px;
}

.work-image {
    position: relative;
    z-index: -2;
}

.work-image-two {
    position: absolute;
    right: 0;
    bottom: 0;
}

.work-image-two:before {
    position: absolute;
    content: '';
    top: -15px;
    left: -15px;
    width: 75px;
    height: 75px;
    z-index: -1;
    background: #1C8CB2;
    clip-path: polygon(100% 0, 0 100%, 0 0);
}

.work-content {
    margin-left: -22px;
}

.work-content p:last-child {
    margin-bottom: 0;
}


/****************************************************** */
/****************  15. Project Details **************** */
/****************************************************** */
.project-details-content-inner {
    max-width: 1030px;
    margin: 0 auto;
}

.project-details-image {
    margin-bottom: 50px;
}

.project-info-box {
    padding: 20px 100px;
    background: #FFEFED;
    border: 4px solid #FEDDDA;
    margin-bottom: 50px;
}

.project-info-text {
    margin-left: 25px;
}

.project-info-text h4 {
    line-height: 1.8;
    margin-bottom: 0;
}

.client-content li {
    color: #4C4254;
    font-size: 15px;
    line-height: 2.35;
}

.client-content li span {
    color: #1C8CB2;
    font-weight: 700;
    width: 75px;
    margin-right: 5px;
    position: relative;
    display: inline-block;
}

.client-content li span:before {
    content: ':';
    position: absolute;
    top: 0;
    right: 0;
}

.client-content li a {
    color: #4C4254;
}

.project-details-content-inner h2 {
    margin-bottom: 30px;
}

.project-details-content-inner p {
    margin-bottom: 22px;
}

.project-details-content-inner blockquote {
    color: #1F0039;
    font-size: 18PX;
    font-weight: 500;
    margin-bottom: 22px;
}

.project-result-area {
    margin: 50px 0 40px;
}

.project-result-video {
    position: relative;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/project/project-result1.jpg);
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.project-result-video::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to top, #1F0039, transparent 70%);
}

.related-project {
    margin-top: 50px;
}

.related-project h2 {
    margin-bottom: 38px;
}

.related-project .project-item .project-content {
    margin: 0;
    margin-top: 10px;
}


/****************************************************** */
/******************  16. Blog Details ***************** */
/****************************************************** */
/* Blog Sidebar */
.search-box {
    padding: 20px 25px;
    background: #1C8CB2;
    border-radius: 5px;
}

.search-box .form-group {
    margin: 0;
    position: relative;
}

.search-box input {
    width: 100%;
    height: 55px;
    border: none;
    padding: 20px;
    color: #666666;
    font-size: 16px;
    border-radius: 5px;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: 20px;
    background: transparent;
    transform: translateY(-50%);
}

.search-box button i {
    color: #1C8CB2;
    font-size: 15px;
}

.blog-sidebar .sidebar-widget h4 {
    padding-bottom: 28px;
    margin-bottom: 50px;
    border-bottom: 1px dashed #fc5748;
}

.blog-catagory {
    padding: 40px 30px;
    background: #ffefed;
    border-radius: 5px;
}

.course-module ul li {
    margin-bottom: 14px;
}

.course-module ul li:last-child {
    margin-bottom: 0;
}

.course-module ul li i {
    color: #1C8CB2;
    font-size: 18px;
    font-weight: 600;
    margin-right: 15px;
    transition: all .3s;
}

.course-module ul li span {
    float: right;
}

.course-module ul li a {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    transition: all .3s;
}

.course-module ul li a:hover {
    color: #1C8CB2;
}

.course-module ul li a:hover i {
    margin-right: 17px;
}

.archive-post {
    padding: 40px 30px;
    background: #ffefed;
    border-radius: 5px;
}

.posting-content {
    margin-bottom: 25px;
}

.posting-content:last-child {
    margin-bottom: 0;
}

.posting-date p {
    color: #fc5f51;
    font-size: 16px;
    margin-bottom: 10px;
}

.posting-date p i {
    margin-right: 15px;
}

.posting-content h6 {
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
}

.posting-content h6 a {
    color: #1f0039;
    transition: 0.5s;
}

.posting-content h6 a:hover {
    color: #1C8CB2;
}

.blog-video-widget {
    position: relative;
    height: 545px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 1;
    background: url(../images/blog/video-widget-bg.jpg);
    background-position: center;
    background-size: cover;
}

.blog-video-widget::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to top, #1F0039, transparent 70%);
}

/* Blog Details Content */
.blog-details-content {
    max-width: 715px;
    margin-left: auto;
}

.blog-details-image {
    position: relative;
    margin-bottom: 45px;
}

.blog-publish-date {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 10px;
    line-height: 1.3;
    text-align: center;
    border-radius: 10px;
    background: #fc5f51;
}

.blog-publish-date span {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}

.blog-details-content h3 {
    font-size: 34px;
    margin-bottom: 33px;
}

.blog-details-content p {
    margin-bottom: 27px;
}

.blog-details-content blockquote {
    color: #1f0039;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 27px;
}

.blog-middle-image {
    margin-top: 45px;
    margin-bottom: 40px;
}

.tags {
    padding: 20px;
    background: #ffefed;
    text-align: center;
    margin: 55px 0 95px;
}

.tags ul li {
    color: #1C8CB2;
    font-size: 15PX;
    font-weight: 700;
    margin-right: 4px;
    display: inline-block;
}

.tags ul li a {
    color: #1f0039;
    font-weight: 500;
    transition: all .3s;
}

.tags ul li a:hover {
    color: #1C8CB2;
}

.comment-box h4 {
    font-size: 28px;
    margin-bottom: 55px;
}

.comment {
    display: flex;
    margin-bottom: 60px;
}

.comment:last-child {
    margin-bottom: 0;
}

.comment.style-two {
    margin-left: 130px;
}

.commenter-image {
    width: 100px;
    flex: none;
}

.commenter-info {
    margin-left: 40px;
}

.commenter-info-top {
    display: flex;
    margin-bottom: 17px;
    justify-content: space-between;
}

.commenter-info h5 {
    font-size: 22px;
    margin-bottom: 10px;
}

.commenter-info span {
    color: #1f0039;
    font-size: 15px;
    display: inline-block;
}

.commenter-info .comment-reply {
    color: #1C8CB2;
    font-weight: 600;
}

.commenter-info .comment-reply i {
    margin-right: 10px;
}

.commenter-info p {
    color: #706a75;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.blog-comment-form {
    margin-top: 65px;
}

.blog-comment-form h4 {
    font-size: 28px;
    margin-bottom: 55px;
}

/* Comment Form */
.custom-input {
    height: 60px;
}

.custom-input,
.custom-textarea {
    padding: 20px 30px;
    color: #454d5d;
    font-size: 16px;
    border-radius: 0;
    background: white;
    margin-bottom: 30px;
    transition: all .3s;
    border: 1px solid transparent;
}

.custom-input:focus,
.custom-textarea:focus {
    box-shadow: none;
    background: #ffefed;
    border: 1px solid #1C8CB2;
}

.custom-textarea {
    resize: none;
}

.submit {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    padding: 15px 25px;
    text-align: center;
    background: #1C8CB2;
    transition: all .3s;
}

.submit:hover {
    color: #1C8CB2;
    background: transparent;
    border: 1px solid #1C8CB2;
}

.submit:focus {
    box-shadow: none;
}

.submit i {
    padding-left: 10px;
}


/****************************************************** */
/*****************  17. Contact Section *************** */
/****************************************************** */
.get-touch-left {
    max-width: 400px;
    background: white;
    border-radius: 10px;
    padding: 90px 40px 45px;
}

.info-box {
    display: flex;
    margin-bottom: 22px;
}

.info-icon {
    margin-right: 25px;
}

.info-icon i {
    color: #1C8CB2;
    font-size: 19px;
}

.info-details p {
    color: #454049;
    font-size: 15px;
    margin-bottom: 0;
}

.info-details a {
    color: #454049;
    display: block;
    font-size: 15px;
    line-height: 1.9;
}

.info-details a:hover {
    color: #1C8CB2;
}

.get-touch-img {
    margin-top: 73px;
}

.get-touch-right h3 {
    margin-bottom: 50px;
}

.get-touch-right .custom-input,
.get-touch-right .custom-textarea {
    border-radius: 5px;
}

/* Contact Page Map */
.map-inner .map {
    height: 590px;
}

.leaflet-bottom.leaflet-right {
    display: none;
}


/****************************************************** */
/*******************  18. Main Footer ***************** */
/****************************************************** */
.footer-wrap {
    background: snow;
}

.footer-widget {
    margin-bottom: 50px;
}

.footer-widget h4 {
    margin-bottom: 35px;
}

.footer-widget.quick-links {
    max-width: 175px;
}

.quick-links ul li {
    line-height: 2.5;
    font-size: 16px;
}

.quick-links ul li i {
    padding-right: 25px;
}

.quick-links ul li a {
    color: #453F4A;
    transition: all .3s;
}

.quick-links ul li a:hover {
    color: #1C8CB2;
}

.footer-widget.latest-post {
    margin-right: -25px;
}

.footer-widget.latest-post h4 {
    margin-bottom: 42px;
}

.latest-post .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.post-item .post-image {
    width: 75px;
    flex: none;
}

.post-item .post-content {
    margin-left: 30px;
}

.post-item .post-content h6 {
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 1.55;
}

.post-item .post-content h6 a {
    color: #453F4A;
    font-weight: 400;
    transition: all .3s;
}

.post-item .post-content h6 a:hover {
    color: #1C8CB2;
}

.post-item .post-content span {
    color: #1C8CB2;
    font-size: 14px;
}

.footer-widget.support,
.footer-widget.company {
    margin-left: auto;
}

/** Copyright Area **/
.copy-right-area {
    padding: 30px 0px;
}

.copy-right-text p {
    color: #1F0039;
    margin-bottom: 0;
    font-size: 16px;
}

.copy-right-text p span {
    color: #1C8CB2;
}


/*** Scroll Top style ***/
.scroll-top {
    z-index: 99999;
    width: 50px;
    height: 50px;
    right: 25px;
    bottom: 25px;
    color: white;
    display: none;
    cursor: pointer;
    position: fixed;
    font-size: 18px;
    border-radius: 50%;
    background: #1C8CB2;
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
}




/*** New Partner Section style ***/


.partner-slider {
    display: flex;
    align-items: center;
}

.partner-slider .partner-logo {
    text-align: center;
    padding: 20px 15px;
}

.partner-slider .partner-logo img {
    width: 100%;
    max-width: 170px;
    height: auto;
    display: inline-block;
}

/*** New Section style ***/

.cta-mini-pro {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.cta-mini-headline {
    letter-spacing: -.5px;
}

.cta-mini-contact {
    transition: box-shadow .18s, background .22s, color .19s;
}

.cta-mini-contact:hover {
    background: #f3f8ff !important;
    color: #1090e2 !important;
    box-shadow: 0 6px 16px 0 #1976d233;
}

@media (max-width: 767px) {
    .cta-mini-pro .btn {
        margin-left: 0 !important;
        font-size: 0.93rem;
    }

    .cta-mini-headline {
        font-size: 1.09rem !important;
    }

    .cta-mini-caption {
        font-size: .94rem !important;
    }
}

.cta-beautiful-section {
    margin-bottom: -1px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    --cta-main-color: #1C8CB2;
}

.cta-beautiful-title {
    text-shadow: 0 1px 10px rgba(28, 140, 178, .12);
}

.cta-contact-box {
    transition: box-shadow .2s, transform .16s;
}

.cta-contact-box:hover {
    box-shadow: 0 8px 28px 0 rgba(19, 54, 95, 0.17);
    transform: translateY(-2px) scale(1.02);
}

.cta-phone-link:hover,
.cta-contact-box a.btn-light:hover {
    color: #1C8CB2 !important;
}

/* .btn-light:hover {
    background: var(--cta-main-color) !important;
    color: #1C8CB2 !important;
} */

@media (max-width: 767px) {
    .cta-contact-box {
        padding: 16px 8px 12px 8px;
    }

    .cta-beautiful-title {
        font-size: 1.18rem;
    }
}

.custom-section-title {
    letter-spacing: -1px;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.custom-service-card {
    transition: box-shadow .2s;
    border: 1px solid #eee;
}

.custom-service-card:hover {
    box-shadow: 0 6px 24px 0 rgba(46, 54, 80, 0.09);
}






/* ===============================
   HERO SECTION – UPDATED
================================ */

/* --- Cyber Industrial Section --- */
.hero-industrial {
    position: relative;
    min-height: calc(100vh);
    display: flex;
    align-items: center;
    background: #fff;
}

/* Giant Background Text */
.bg-text-giant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(28, 140, 178, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
}

/* Content Framing */
.main-content {
    position: relative;
    z-index: 10;
}

.industrial-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 80px;
}

.hero-tagline {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    line-height: 1;
    color: var(--dark);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title span {
    color: #1C8CB2;
    -webkit-text-stroke: 1px var(--primary);
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: #666;
    max-width: 550px;
    line-height: 1.8;
    border-left: 3px solid #eee;
    padding-left: 25px;
    /* margin-bottom: 45px; */
}

/* Tech Buttons */
.btn-tech-stack {
    display: flex;
    gap: 15px;
}

.btn-industrial {
    padding: 16px 32px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.btn-industrial:hover {
    background: #1C8CB2;
    color: #fff;
    padding-left: 42px;
}

/* --- The Terminal Visual --- */
.terminal-window {
    background: #111;
    border-radius: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
}

.terminal-header {
    background: #1C8CB2;
    padding: 12px 20px;
    display: flex;
    gap: 8px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 25px;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    min-height: 300px;
}

.t-line {
    margin-bottom: 8px;
}

.t-blue {
    color: #5ccfe6;
}

.t-purple {
    color: #c678dd;
}

.t-green {
    color: #98c379;
}

/* Floating Stats Bar */
.stats-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #1C8CB2;
    color: #fff;
    padding: 7px 25px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(28, 140, 178, 0.4);
    display: flex;
    gap: 30px;
    z-index: 15;
}

.stat-item h3 {
    margin: 0;
}

.stat-item p {
    margin: 0;
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .hero-industrial {
        text-align: center;
        padding: 60px 0;
    }

    .hero-desc {
        border: none;
        padding: 0;
        margin-inline: auto;
    }

    .btn-tech-stack {
        justify-content: center;
    }

    .terminal-window {
        margin-top: 80px;
    }

    .stats-float {
        position: static;
        margin-top: 20px;
        justify-content: center;
        width: 100%;
        border-radius: 12px;
    }

 
}

@keyframes serviceCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(.95);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vln-service-card.animated {
    animation: serviceCardFadeIn 1s cubic-bezier(0.2, 0.7, 0.4, 0.93) both;
}

.vln-service-card .vln-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.36s;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    background: #f3fafe;
}

.vln-service-card .vln-icon-box i {
    transition: transform .26s, box-shadow .21s;
    filter: drop-shadow(0 2px 8px rgba(60, 60, 60, 0.10));
}

/* Keep icon colors original, ALWAYS, never change on hover or animation */
.vln-service-card .vln-icon-box .fa-brain {
    color: #a259e6 !important;
}

.vln-service-card .vln-icon-box .fa-shopping-bag {
    color: #f9b233 !important;
}

.vln-service-card .vln-icon-box .fa-laptop-code {
    color: #1c8cb2 !important;
}

.vln-service-card .vln-icon-box .fa-vial {
    color: #ef5350 !important;
}

.vln-service-card .vln-icon-box .fa-sync-alt {
    color: #1090e2 !important;
}

.vln-service-card .vln-icon-box .fa-users-cog {
    color: #8db600 !important;
}

/* This ensures icons DO NOT inherit color on hover/animation */
.vln-service-card .vln-icon-box i,
.vln-service-card:hover .vln-icon-box i,
.vln-service-card.animated .vln-icon-box i {
    color: unset !important;
}

.vln-service-card .vln-icon-box:hover .fa-brain,
.vln-service-card .vln-icon-box:active .fa-brain,
.vln-service-card .vln-icon-box:focus .fa-brain,
.vln-service-card:hover .vln-icon-box .fa-brain,
.vln-service-card.animated .vln-icon-box .fa-brain {
    color: #a259e6 !important;
}

.vln-service-card .vln-icon-box:hover .fa-shopping-bag,
.vln-service-card .vln-icon-box:active .fa-shopping-bag,
.vln-service-card .vln-icon-box:focus .fa-shopping-bag,
.vln-service-card:hover .vln-icon-box .fa-shopping-bag,
.vln-service-card.animated .vln-icon-box .fa-shopping-bag {
    color: #f9b233 !important;
}

.vln-service-card .vln-icon-box:hover .fa-laptop-code,
.vln-service-card .vln-icon-box:active .fa-laptop-code,
.vln-service-card .vln-icon-box:focus .fa-laptop-code,
.vln-service-card:hover .vln-icon-box .fa-laptop-code,
.vln-service-card.animated .vln-icon-box .fa-laptop-code {
    color: #1c8cb2 !important;
}

.vln-service-card .vln-icon-box:hover .fa-vial,
.vln-service-card .vln-icon-box:active .fa-vial,
.vln-service-card .vln-icon-box:focus .fa-vial,
.vln-service-card:hover .vln-icon-box .fa-vial,
.vln-service-card.animated .vln-icon-box .fa-vial {
    color: #ef5350 !important;
}

.vln-service-card .vln-icon-box:hover .fa-sync-alt,
.vln-service-card .vln-icon-box:active .fa-sync-alt,
.vln-service-card .vln-icon-box:focus .fa-sync-alt,
.vln-service-card:hover .vln-icon-box .fa-sync-alt,
.vln-service-card.animated .vln-icon-box .fa-sync-alt {
    color: #1090e2 !important;
}

.vln-service-card .vln-icon-box:hover .fa-users-cog,
.vln-service-card .vln-icon-box:active .fa-users-cog,
.vln-service-card .vln-icon-box:focus .fa-users-cog,
.vln-service-card:hover .vln-icon-box .fa-users-cog,
.vln-service-card.animated .vln-icon-box .fa-users-cog {
    color: #8db600 !important;
}

/* Background changes on animation/hover, icon color never changes */
.vln-service-card.animated .vln-icon-box,
.vln-service-card:hover .vln-icon-box {
    background: #fff !important;
}

@media(max-width:767px) {
    .vln-service-card .vln-icon-box {
        width: 52px;
        height: 52px;
    }

    
}


.growth-feature-list .growth-feature-item {
    padding: 18px 12px !important;
    min-height: unset;
    border-radius: 16px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 3px 12px rgba(60, 72, 88, 0.06);
    transition:
        transform 0.21s cubic-bezier(.22, 1.06, .57, 1.02),
        box-shadow 0.20s cubic-bezier(.37, .56, .54, 1.05),
        background 0.15s;
    will-change: transform, box-shadow;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.growth-feature-item:hover,
.growth-feature-item:focus-visible {
    transform: scale(1.09);
    z-index: 2;
    animation: straightZoomIn 0.17s cubic-bezier(.29, 1.25, .66, 1) 1;
    box-shadow: 0 10px 28px 0 rgba(28, 140, 178, 0.14), 0 3px 8px -8px #1C8CB270;
    background: #f3fafd;
}

@keyframes straightZoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.09);
    }
}

.growth-feature-item .icon-box {
    transition:
        background 0.26s,
        box-shadow 0.25s,
        color 0.25s;
    width: 38px !important;
    height: 38px !important;
    border-radius: 9px !important;
}

.growth-feature-item:hover .icon-box,
.growth-feature-item:focus-visible .icon-box {
    background: #fff !important;
    color: #1C8CB2 !important;
    box-shadow: 0 4px 18px 0 rgba(28, 140, 178, 0.14), 0 3px 8px -8px #1C8CB245;
}

.growth-feature-item h5 {
    margin-bottom: 0.19em !important;
}

.growth-feature-item p {
    margin-bottom: 0 !important;
}

/* Responsive tweaks for grid: show 2/row at md, 1/row at sm */
@media (max-width: 991px) {
    .growth-feature-list .growth-feature-item {
        max-width: 370px;
    }
}

@media (max-width: 767px) {
    .growth-feature-list .growth-feature-item {
        max-width: 98vw;
    }
}

/* CTA button - #1C8CB2 only, with subtle scale on hover */
.btn-industrial.cta-growth-btn {
    background: #1C8CB2 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 6px 26px rgba(28, 140, 178, .13);
    border-radius: 44px;
    letter-spacing: 1.2px;
    padding: 15px 34px !important;
    transition: background 0.19s, box-shadow 0.23s, transform 0.16s;
}

.btn-industrial.cta-growth-btn:hover,
.btn-industrial.cta-growth-btn:focus-visible {
    background: #156885 !important;
    color: #fff !important;
    transform: scale(1.06);
    box-shadow: 0 14px 36px -6px #1C8CB245;
}

/* Update m-2 utility classes for proper margin adjustments as per request */
.mb-2,
.my-2 {
    margin-bottom: 1.5rem !important;
}

.my-2 {
    margin-top: 1.5rem !important;
}

.testimonial-section .testimonial-side-btn:hover,
.testimonial-section .testimonial-side-btn:focus {
    background: #1C8CB2 !important;
    border-color: #1C8CB2 !important;
    outline: none;
}

.testimonial-section .testimonial-side-btn:hover i,
.testimonial-section .testimonial-side-btn:focus i {
    color: #fff !important;
}

@media (max-width: 991.98px) {

    #testimonialPrevBtn,
    #testimonialNextBtn {
        left: 2px !important;
        right: 2px !important;
    }
}

@media (max-width: 767.98px) {

    #testimonialPrevBtn,
    #testimonialNextBtn {
        top: auto !important;
        bottom: -58px !important;
        left: 18% !important;
        right: 18% !important;
        transform: none !important;
    }

    #testimonialPrevBtn {
        left: 28%;
    }

    #testimonialNextBtn {
        right: 28%;
    }
}

.mini-feature-box {
    transition: box-shadow .22s, transform .16s;
}

.mini-feature-box:hover,
.mini-feature-box:focus-within {
    box-shadow: 0 7px 28px 0 rgba(28, 140, 178, 0.12);
    transform: translateY(-4px) scale(1.033);
    z-index: 3;
    border-color: #1c8cb2 !important;
}

@media (max-width: 1199px) {
    .mini-feature-box {
        min-height: 175px;
    }
}

@media (max-width: 991px) {
    .mini-feature-box {
        min-height: 0;
    }
}

.project-section {
    background: linear-gradient(100deg, #e8f9fd 0%, #f7f7fd 100%);
    overflow: hidden;
}

.project-header {
    color: #263849;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.project-header .text-primary {
    color: #188daa !important;
}

.project-desc {
    color: #35505a;
    max-width: 670px;
    margin: 0.9rem auto 0.6rem auto;
}

.custom-pro-carousel {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(90, 120, 180, 0.08), 0 2px 6px #1c8cb21a;
    padding: 36px 0px 0px 36px;
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1198px;
    margin: 0 auto;
    min-height: 370px;
    flex-direction: column;
}

.custom-pro-arrow-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    /* Allow clicks through except on buttons */
    z-index: 4;
    padding: 0 14px;
    height: 0;
}

.custom-pro-arrow {
    pointer-events: all;
    background: #fff;
    border: 2px solid #eaf6fb;
    color: #1799bb;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 14px #188daa11;
    transition: background .18s, border-color .18s, box-shadow .18s, color .12s, transform .16s;
    position: relative;
    outline: none;
    margin: 0;
}

.custom-pro-arrow:focus,
.custom-pro-arrow:hover {
    background: #e6f8fb;
    border-color: #188daa;
    color: #106985;
    box-shadow: 0 6px 21px #1c8cb224;
    transform: scale(1.08);
}


.custom-pro-slides {
    width: 100%;
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.custom-pro-card {
    display: none;
    width: 100%;
    height: auto;
    transition: opacity .35s cubic-bezier(.68, 0, .14, 1);
}

.custom-pro-card.active {
    display: block;
    animation: fadeInScaleUp .45s;
}

@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: scale(.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.custom-pro-info {
    padding-right: 10px;
    padding-left: 0;
}

.custom-pro-icon {
    width: 54px;
    height: 54px;
    background: #eaf7fe;
    border-radius: 50%;
    box-shadow: 0 2px 18px #1c8cb212;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c8cb2;
}

.custom-pro-title {
    color: #183c69;
    letter-spacing: -1px;
    margin-bottom: .44em;
}

.custom-pro-desc {
    color: #294354;
    line-height: 1.58;
    margin-bottom: .95em;
}

.custom-pro-img {
    border-radius: 14px;
    width: 300px;
    height: 270px;
    object-fit: cover;
    background: #f4fafb;
    box-shadow: 0 8px 25px #7ed8fc12;
    max-width: 100%;
}

.custom-pro-cta {
    background: linear-gradient(90deg, #188daa 60%, #29a7b6 100%);
    color: #fff;
    border-radius: 8px;
    padding: .7em 2em .7em 1.3em;
    border: none;
    box-shadow: 0 3px 16px #29a7b61c;
    letter-spacing: .04em;
    transition: background .14s, box-shadow .15s, transform .18s;
    display: inline-flex;
    align-items: center;
}

.custom-pro-cta:hover,
.custom-pro-cta:focus {
    background: linear-gradient(98deg, #12749a 60%, #159fad 100%);
    color: #fff;
    box-shadow: 0 6px 21px #30afb624;
    transform: translateY(-2px) scale(1.05);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .custom-pro-carousel {
        padding: 28px 6px;
    }

    .custom-pro-img {
        width: 140px;
        height: 140px;
    }

    .custom-pro-arrow-wrapper {
        padding: 0 2px;
    }

    .custom-pro-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .custom-pro-carousel {
        padding: 18px 1vw 18px 1vw;
        border-radius: 14px;
        min-height: 0;
        max-width: 100%;
    }

    .custom-pro-arrow-wrapper {
        top: unset;
        bottom: -21px;
        transform: none;
        left: 50%;
        width: 90vw;
        max-width: 425px;
        margin-left: -45vw;
        height: 0;
        z-index: 9;
        pointer-events: none;
        justify-content: space-between;
    }

    .custom-pro-arrow {
        width: 34px;
        height: 34px;
        box-shadow: 0 2px 10px #1c8cb214;
    }

    .custom-pro-img {
        border-radius: 9px;
        width: 30vw;
        max-width: 110px;
        height: 110px;
    }

    .custom-pro-info {
        padding: 0;
    }

    .custom-pro-card .row {
        flex-direction: column-reverse;
    }

    /* Hide default CTA button, show mobile CTA below image */
    .custom-pro-cta-mob {
        display: none !important;
    }

    .custom-pro-cta-mob-mobile {
        display: inline-flex !important;
        margin-top: 1.2em !important;
    }
}

@media (min-width: 768px) {
    .custom-pro-cta-mob-mobile {
        display: none !important;
    }

    .custom-pro-cta-mob {
        display: inline-flex !important;
    }
}

@media (max-width:500px) {
    .custom-pro-img {
        width: 65vw;
        max-width: 90vw;
    }

    .custom-pro-carousel {
        padding: 10px 0px 10px 10px;
    }

    .custom-pro-arrow-wrapper {
        max-width: 95vw;
        margin-left: -47.5vw;
    }
}

.modern-header {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    width: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* @media (max-width: 900px) {
    body { padding-top: 52px; }
}
@media (max-width: 700px) {
    body { padding-top: 44px; }
} */

.mh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mh-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    min-height: 50px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.mh-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.mh-logo {
    min-width: 120px;
}

.mh-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mh-nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mh-nav-list>li {
    position: relative;
}

.mh-nav-list>li>a,
.mh-dropbtn {
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: 42px;
    background: none;
    border: none;
    outline: none;
    color: #232323;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.mh-nav-list>li.active>a,
.mh-nav-list>li>a:hover,
.mh-dropbtn:hover,
.mh-nav-list>li.active .mh-dropbtn {
    color: #1C8CB2;
    background: #f1f6fd;
    border-radius: 30px;
}

.mh-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    background: #f5f8fc;
    border-radius: 50%;
}

.mh-dropdown .mh-dropbtn {
    gap: 6px;
}

.mh-dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 43px;
    left: 0;
    min-width: 250px;
    background: #fff;
    box-shadow: 0 6px 32px 0 rgba(44, 62, 80, .08);
    border-radius: 10px;
    padding: 8px 0 6px 0;
    z-index: 1030;
    animation: mhDropFade .17s;
}

.mh-dropdown.open>.mh-dropdown-menu,
.mh-dropdown:hover>.mh-dropdown-menu {
    display: flex;
}

.mh-dropdown-menu li>a,
.mh-dropbtn-sub {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 0px 5px 10px;
    background: none;
    color: #232323;
    border: none;
    outline: none;
    gap: 4px;
    text-align: left;
    text-decoration: none;
    border-radius: 6px;
}

.mh-dropdown-menu>li>a:hover,
.mh-dropdown-menu>li>.mh-dropbtn-sub:hover,
.mh-dropdown-menu-sub>li>a:hover {
    background: #f6f8fe;
    color: #1976d2;
}

.mh-dropdown-sub {
    position: relative;
}

.mh-dropbtn-sub {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
}

.mh-dropdown-menu-sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 2px;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 6px 32px 0 rgba(44, 62, 80, .07);
    border-radius: 8px;
    padding: 6px 0 4px 0;
    z-index: 2088;
}

.mh-dropdown-sub.mh-open>.mh-dropdown-menu-sub,
.mh-dropdown-menu>.mh-dropdown-sub:hover>.mh-dropdown-menu-sub {
    display: block;
}

.mh-nav-contact {
    margin-left: 12px;
}

.mh-btn {
    background: #1C8CB2;
    color: #fff;
    padding: 10px 18px;
    border-radius: 24px;
    border: none;
    transition: box-shadow .2s, background .13s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    box-shadow: 0 4px 16px 0 rgba(25, 118, 210, .08);
}

.mh-btn:hover {
    background: #1C8CB2;
    color: #fff;
    box-shadow: 0 8px 28px 0 rgba(25, 118, 210, .10);
}

.mh-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 8px;
}

.mh-bar {
    width: 22px;
    height: 3px;
    background: #222;
    margin: 3px 0;
    border-radius: 2px;
    display: block;
    transition: all .2s;
}

@media (max-width: 1024px) {
    .mh-container {
        padding: 0 10px;
    }
}

@media (max-width: 900px) {
    .mh-row {
        height: 52px;
    }

    .mh-logo img {
        height: 36px;
    }
}

@media (max-width: 700px) {
    .mh-row {
        height: 44px;
    }
}

@media (max-width: 800px) {
    .mh-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .mh-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -105vw;
        width: 74vw;
        max-width: 340px;
        height: 100vh;
        min-height: 100vh;
        background: #fff;
        box-shadow: 0 4px 36px 0 rgba(44, 44, 44, .17);
        overflow-y: auto;
        padding: 64px 0 6px 0;
        transition: left .24s cubic-bezier(.5, 0, .5, 1.1);
        z-index: 2004;
    }

    .mh-nav.open {
        left: 0;
    }

    .mh-nav-list>li>a,
    .mh-dropbtn {
        height: 38px;
        padding: 0 16px;
        border-radius: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .mh-nav-list>li.active>a,
    .mh-nav-list>li>a:hover,
    .mh-dropbtn:hover,
    .mh-nav-list>li.active .mh-dropbtn {
        background: #f1f5fd;
        color: #1976d2;
        border-radius: 0;
    }

    .mh-dropdown-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: unset;
        border-radius: 0;
        box-shadow: none;
        background: #f9fbfe;
        padding: 0;
        margin: 0;
        animation: none;
    }

    .mh-dropdown.open>.mh-dropdown-menu {
        display: flex;
    }

    .mh-dropdown-menu>li>a,
    .mh-dropbtn-sub {
        padding: 8px 18px 8px 34px;
        border-radius: 0;
    }

    .mh-nav-icon {
        margin-right: 10px;
        width: 24px;
        height: 24px;
        background: #f1f2fb;
    }

    .mh-dropdown-menu-sub {
        position: static;
        left: auto;
        top: auto;
        min-width: unset;
        background: #f5f8fc;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .mh-dropdown-sub.mh-open>.mh-dropdown-menu-sub {
        display: block;
    }

    .mh-dropbtn-sub {
        width: 100%;
        gap: 5px;
    }

    .mh-dropdown-menu-sub>li>a {
        padding: 8px 36px 8px 50px;
        border-radius: 0;
    }

    .mh-nav-contact {
        margin: 16px 10px 0 10px;
        padding: 0;
    }

    .mh-btn {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
        padding: 9px 0;
    }
}

@media (max-width: 540px) {
    .mh-nav {
        width: 100vw;
        max-width: unset;
        padding-top: 46px;
    }
}

.mh-nav.open::after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: -1;
}

.mh-hamburger {
    display: flex;
}

.mh-hamburger.active .mh-bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mh-hamburger.active .mh-bar:nth-child(2) {
    opacity: 0;
}

.mh-hamburger.active .mh-bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

@media (min-width: 801px) {
    .mh-nav {
        position: static !important;
        display: flex !important;
        height: auto;
        box-shadow: none;
        background: transparent;
        width: auto;
        max-width: unset;
        padding: 0;
    }

    .mh-nav.open {
        left: 0 !important;
    }

    .mh-hamburger {
        display: none !important;
    }

    .mh-nav-list {
        flex-direction: row;
    }

    .mh-nav-contact {
        margin: 0 0 0 10px;
    }
}

.mh-dropbtn i,
.mh-dropbtn-sub i {
    margin-left: 6px;
    color: #aaa;
}

.mh-dropdown.open>.mh-dropbtn>i,
.mh-dropdown-menu>.mh-dropdown-sub.mh-open>.mh-dropbtn-sub>i {
    color: #1976d2;
    transform: rotate(-180deg);
    transition: transform .14s;
}

@keyframes mhDropFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.about-section-beautiful {
    background: linear-gradient(115deg, #f7fafc 85%, #e3f2fd 100%);
    padding: 60px 0 80px 0;
}

.about-beautiful-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-beautiful-images {
    position: relative;
    max-width: 510px;
    margin: 0 auto;
    min-height: 340px;
    z-index: 1;
}

.about-beautiful-images .about-img1 {
    border-radius: 16px;
    box-shadow: 0 12px 36px 0 rgba(44, 62, 80, .08);
    width: 86%;
    min-width: 220px;
    display: block;
}

.about-beautiful-images .about-img2 {
    position: absolute;
    right: -28px;
    bottom: -30px;
    border-radius: 13px;
    border: 6px solid #fff;
    box-shadow: 0 16px 40px 0 rgba(44, 62, 80, .13);
    width: 58%;
    min-width: 120px;
    background: #fff;
    z-index: 2;
    opacity: 1;
    display: block;
    transition: box-shadow .18s, transform .17s;
}

.about-beautiful-images .about-img2:hover {
    box-shadow: 0 20px 56px 0 rgba(35, 108, 200, .18);
    transform: scale(1.04) rotate(2deg);
}

.about-beautiful-images .about-founded {
    position: absolute;
    top: 17px;
    left: 10px;
    background: #1976d2;
    color: #fff;
    border-radius: 13px;
    padding: 10px 25px 10px 18px;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.14);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.about-beautiful-images .about-founded span {
    margin-left: 6px;
}

.about-beautiful-content {
    padding-left: 45px;
    padding-right: 10px;
    margin-top: 10px;
}

.about-beautiful-content .section-title span {
    background: #e3f8ef;
    color: #43ba7f;
    padding: 4px 14px 4px 14px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 9px;
}

.about-beautiful-content .section-title h2 {
    color: #1976d2;
    margin-bottom: 21px;
    letter-spacing: -1px;
}

.about-beautiful-content p {
    color: #23243c;
    margin-bottom: 14px;
}

.about-beautiful-content blockquote {
    border-left: 4px solid #1976d2;
    background: #f3faff;
    color: #1976d2;
    border-radius: 9px;
    padding: 13px 28px 13px 18px;
    font-style: italic;
    margin-top: 18px;
}

@media (max-width: 992px) {
    .about-beautiful-row {
        flex-direction: column;
    }

    .about-beautiful-content {
        padding-left: 0;
        padding-top: 36px;
    }

    .about-beautiful-images {
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .about-beautiful-images {
        min-height: 180px;
    }

    .about-beautiful-images .about-img1 {
        min-width: 90px;
        width: 84%;
    }

    .about-beautiful-images .about-img2 {
        min-width: 59px;
        width: 56%;
        right: 0;
    }

    .about-beautiful-content {
        padding-left: 0;
    }
}

.zea-timeline-section {
    background: linear-gradient(115deg, #f7fafc 85%, #e3f2fd 100%);
    padding: 0;
    margin: 0;
}

.zea-timeline-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.zea-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.zea-timeline-electric-move {
    position: absolute;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    width: 44px;
    pointer-events: none;
    transition: top 0.75s cubic-bezier(.34, 1.56, .64, 1), left 0.4s;
    filter: drop-shadow(0 4px 12px #1C8CB220);
}

.zea-timeline-electric-svg {
    width: 42px;
    height: 38px;
    display: block;
}

.zea-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1C8CB2, #43ba7f 80%, #7e57c2 100%);
    border-radius: 9px;
    z-index: 1;
    transition: all 0.4s;
}

.zea-timeline-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    min-height: 130px;
    margin-bottom: 30px;
}

.zea-timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 4px solid #1C8CB2;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px #1C8CB210;
    transition: all 0.3s;
}

.zea-timeline-dot-inner {
    background: linear-gradient(120deg, #1C8CB2 70%, #43ba7f 120%);
    border-radius: 50%;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.zea-timeline-left,
.zea-timeline-right {
    flex: 1 1 48%;
    min-width: 0;
    padding: 0 18px;
    display: flex;
    align-items: center;
}

.zea-timeline-left {
    justify-content: flex-end;
}

.zea-timeline-right {
    justify-content: flex-start;
}

.zea-timeline-content {
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 4px 18px 0 #1C8CB214;
    padding: 13px 20px 13px 16px;
    min-width: 170px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(18px);
    transition: .38s all cubic-bezier(.39, 0, .77, .19);
    will-change: opacity, transform;
    border-left: 3px solid #1976d2;
    margin: 0;
}

.zea-timeline-item.visible .zea-timeline-content {
    opacity: 1;
    transform: translateY(0);
}

.zea-timeline-content-title {
    color: #1976d2;
    margin-bottom: 7px;
}

.zea-timeline-content-text {
    color: #23243c;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .zea-timeline {
        flex-direction: column;
    }

    .zea-timeline::before {
        display: none;
    }

    .zea-timeline-item {
        flex-direction: column;
        align-items: center !important;
        justify-content: flex-start !important;
        min-height: unset;
        margin-bottom: 50px;
        position: relative;
        padding-bottom: 43px;
        /* extra space for line/dot/electricity */
    }

    .zea-timeline-left,
    .zea-timeline-right {
        order: 1;
        justify-content: center !important;
        align-items: center !important;
        flex: none;
        width: 100%;
        padding: 0;
    }

    .zea-timeline-dot {
        position: relative;
        margin: 20px 0 0 0;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
    }

    /* Card covers full width, nicely readable */
    .zea-timeline-content {
        margin: 0 auto;
        text-align: left;
        padding: 14px 2vw 14px 14px;
        min-width: 0;
        max-width: 95vw;
        order: 1;
    }

    .zea-timeline-item>.zea-timeline-right:empty,
    .zea-timeline-item>.zea-timeline-left:empty {
        display: none !important;
    }

    /* Place the timeline line below the .zea-timeline-dot (not above card+dot) */
    .zea-timeline-item::after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100%;
        width: 5px;
        height: 35px;
        background: linear-gradient(180deg, #1C8CB2, #43ba7f 70%, #7e57c2 100%);
        z-index: 1;
        border-radius: 8px;
    }

    /* Remove last after line for last item */
    .zea-timeline-item:last-child::after {
        display: none;
    }

    /* Electric icon: mobile only - fixed to under the dot, matching the after line */
    #zea-electric-move {
        position: static !important;
        margin: 10px auto 0 auto;
        display: block;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 44px;
        pointer-events: none;
        transition: none !important;
    }
}

@media (max-width: 600px) {
    .zea-timeline-content {
        max-width: 98vw;
        padding: 13px 3vw 13px 12px;
        text-align: left;
    }

    .zea-timeline-dot {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    #zea-electric-move {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

.outsourcing2-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
}

.outsourcing2-img-wrap {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
}

.outsourcing2-col-1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
}

.outsourcing2-col-2 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
}

.outsourcing2-col-3 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 4;
}

.outsourcing2-col-4 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 3;
}

.outsourcing2-col-5 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 3;
}

.outsourcing2-col-6 {
    grid-column: span 4 / span 4;
    grid-column-start: 3;
    grid-row-start: 5;
}



@media (min-width: 768px) {
    

    .outsourcing2-card {
        min-height: 175px;
    }
}

@media (max-width: 991.98px) {
    .outsourcing2-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
    }

    .outsourcing2-grid .outsourcing2-img-wrap,
    .outsourcing2-grid .outsourcing2-col-1,
    .outsourcing2-grid .outsourcing2-col-2,
    .outsourcing2-grid .outsourcing2-col-3,
    .outsourcing2-grid .outsourcing2-col-4,
    .outsourcing2-grid .outsourcing2-col-5,
    .outsourcing2-grid .outsourcing2-col-6 {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .outsourcing2-grid .outsourcing2-img-wrap,
    .outsourcing2-grid .outsourcing2-col-1 {
        justify-content: center !important;
        padding-left: 0 !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 575.98px) {
    

    .outsourcing2-card {
        min-height: unset;
        padding: 1.1rem .7rem !important;
    }
}

.ps-animated-card {
    transition: transform 0.7s cubic-bezier(.73, 0, .34, 1.61), box-shadow 0.65s cubic-bezier(.43, 0, .34, 1.61);
    will-change: transform, box-shadow;
}

.ps-animated-card:hover {
    transform: translateY(-7px) scale(1.025) rotateZ(-0.3deg);
    box-shadow: 0 8px 32px 0 #1c8cb255;
    z-index: 2;
}

/* Consistent Zeabros logo color for CTAs */
.ps-btn-primary,
.ps-btn-primary:active,
.ps-btn-primary:focus,
.ps-btn-primary:hover {
    background: #1C8CB2 !important;
    border: none !important;
    color: #fff !important;
}

.ps-btn-outline-primary {
    color: #1C8CB2 !important;
    border: 2px solid #1C8CB2 !important;
    background: #fff !important;
    font-weight: 700;
}

.ps-btn-outline-primary:hover,
.ps-btn-outline-primary:focus {
    background: #1C8CB2 !important;
    color: #fff !important;
}

.ps-btn-light {
    border: 2px solid #e3f5fc !important;
    color: #1C8CB2 !important;
    background: #f7fbfd !important;
}

.ps-btn-light:hover,
.ps-btn-light:focus {
    background: #e3f5fc !important;
}

 /* Card & CTA Button Hover Upwards Animation with Smoother Effect */
 .pro-solution-card,
 .shadow-sm,
 .custom-cta-anim {
     transition: 
         transform 0.35s cubic-bezier(.19,1,.22,1), 
         box-shadow 0.32s cubic-bezier(.19,1,.22,1);
     will-change: transform, box-shadow;
     z-index: 1;
     position: relative;
 }
 .pro-solution-card:hover,
 .pro-solution-card:focus-within,
 .shadow-sm:hover,
 .shadow-sm:focus-within {
     transform: translateY(-10px) scale(1.02) translateZ(0);
     box-shadow: 0 14px 38px #1c8cb218, 0 2px 8px #1c8cb110;
     z-index: 11;
 }

 .custom-cta-anim {
     display: inline-block;
     background: #1C8CB2;
     color: #fff !important;
     font-weight: 800;
     border: none;
     border-radius: 12px;
     padding: 0.8em 2.1em;
     text-shadow: 0 2px 9px #1c8cb220;
     cursor: pointer;
     box-shadow: 0 3px 16px #1c8cb110;
     outline: none;
     transition: 
         transform 0.33s cubic-bezier(.19,1,.22,1), 
         box-shadow 0.33s cubic-bezier(.19,1,.22,1),
         background 0.25s;
     margin-top: 1.25rem;
     line-height: 1.18;
     font-family: inherit;
  
 }
 .custom-cta-anim i {
     margin-right: 7px;
     vertical-align: middle;
 }
 .custom-cta-anim:active,
 .custom-cta-anim:focus,
 .custom-cta-anim:hover {
     background: #1C8CB2;
     color: #fff !important;
     transform: translateY(-7px) scale(1.01);
     box-shadow: 0 10px 28px #1c8cb21e, 0 2px 8px #3ddc8422;
 }

 .service-card {
    transition: box-shadow .21s, transform .14s, border-color .17s;
    box-shadow: 0 2px 14px 0 rgba(28,140,178,.055), 0 2px 6px 0 rgba(28,140,178,.04);
    cursor: pointer;
    border: 1.8px solid #e1ecff;
    position: relative;
    overflow: visible;
    outline: none;
}
.service-card:hover:not(.ask-expert-card),
.service-card:focus:not(.ask-expert-card) {
    transform: translateY(-9px) scale(1.035);
    box-shadow: 0 13px 38px 0 rgba(56,140,200,.17), 0 4px 14px 0 rgba(40,170,180,.16);
    border-color: #24e0dc;
    z-index: 3;
}
.service-card:active:not(.ask-expert-card) {
    transform: scale(0.975);
    box-shadow:0 7px 22px 0 rgba(56,140,200,.07), 0 2px 6px 0 rgba(40,170,180,.06);
}
.service-card-bg {
    content: "";
    position: absolute;
    opacity: 0.085;
    background: linear-gradient(97deg,#32fadf 10%,#f6ceff 100%);
    z-index: 1;
    left: -8px; top: 22%; right: -8px; height:57%;
    border-radius: 36px;
    pointer-events: none;
}
.service-card .service-icon-bg {
    position: absolute;
    left: 49%; top: 21px; width: 54px; height: 54px;
    background: linear-gradient(123deg, #e7eefa 70%, #f8eefb 100%);
    filter: blur(10px);
    transform: translateX(-50%) scale(1.19);
    z-index: 1;
    opacity:.22;
    border-radius: 50%;
    pointer-events: none;
    display:none;
}
.service-icon-lg {
    width:60px; height:60px; box-shadow:0 3.5px 20px 0 rgba(33,150,243,0.06);
    border: 2.5px solid #f6fafb;
    position:relative;
    z-index: 2;
    transition: transform .18s cubic-bezier(.52,2.1,.62,1);
    will-change: transform;
}
.service-card:hover .service-icon-lg,
.service-card:focus .service-icon-lg {
    transform: rotate(-8deg) scale(1.19);
    box-shadow: 0 7px 27px 0 rgba(67,160,71,0.13);
}
.service-card h3, .service-card h4 {
    z-index: 3;
    position: relative;
}
.service-cta-btn {
    border-radius:8px !important;
    padding:8px 26px !important;
    font-size:1.05rem !important;
    font-weight:600;
    box-shadow: 0 2px 15px 0 rgba(40,150,243,0.08);
    background: linear-gradient(90deg,#43a047 2%,#3199c6 105%);
    border: none;
    color: #fff !important;
    transition: background .17s, box-shadow .2s;
}
.service-cta-btn:hover, .service-cta-btn:focus {
    background: linear-gradient(94deg,#1c8cb2 2%,#43a047 98%);
    box-shadow: 0 8px 22px 0 rgba(67,160,71,0.18);
    color: #fff !important;
}
.service-card.ask-expert-card {
    border-style: dashed !important;
    background: linear-gradient(120deg,#e9f7ff 72%,#e3f5fc 100%);
    box-shadow: 0 18px 60px 0 rgba(80, 36, 144, 0.13), 0 1.4px 6px 0 rgba(80, 36, 144, 0.07);
    cursor: auto;
}
.service-card.ask-expert-card:hover,
.service-card.ask-expert-card:focus {
    transform: none;
    box-shadow: 0 18px 48px 0 rgba(45,0,101,.16), 0 1.4px 6px 0 rgba(80,36,144,0.08);
}

/* Overlay styles removed (no quick contact anymore) */
/* .service-card-overlay etc... */

.service-card:focus-visible {
    outline: 3px solid #43a047;
    outline-offset: 3px;
}
/* Search bar style */
.service-search-bar input[type="text"]:focus {
    border-color: #43a047;
    box-shadow: 0px 2px 11px 0 #43a0470e;
}
/* Fade-out animation for cards filtered out */
.service-card-outer {
    transition: opacity .18s, transform .18s;
    will-change: opacity, transform;
}
.service-card-outer.hide-card {
    opacity: 0;
    transform: scale(.94) translateY(21px);
    pointer-events: none;
    position: absolute !important;
    z-index: 0;
    height: 0 !important;
}
/* No result state animation */
#serviceNoResults {
    animation: fadeIn .45s;
}
@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}
@media (max-width: 767.98px) {
    .services-list-section { padding-top: 40px !important; padding-bottom: 38px !important; }
    .service-card { margin-top: 13px !important; margin-bottom: 13px !important; }
    .service-card .service-icon-bg { display:none !important; }
}
@media (max-width: 576px) {
    .services-list-section { padding-top: 25px !important; padding-bottom: 20px !important; }
    .service-icon-lg { width:46px !important; height:46px !important; }
}

.android-essential-img-wrapper {
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.27s cubic-bezier(.4,2,.56,.99);
    height: 420px;
    width: 100%;
}
@media (min-width: 992px) {
    .android-essential-img-wrapper {
        min-height: 420px;
        max-width: 440px;
        margin: 0 auto;
    }
}
.android-essential-img {
    width: 100%;
    height: 650px;
    max-width: 420px;
    border-radius: 22px;
    border: 4px solid #fff;
    transition: box-shadow 0.3s cubic-bezier(.36,.67,.78,1.4), transform 0.2s cubic-bezier(.33,1.08,.57,1.13);
    box-shadow: 0 8px 38px #1c8cb238;
    background: transparent !important;
    object-fit: cover;
}
.android-essential-img-wrapper:hover .android-essential-img {
    box-shadow: 0 18px 48px #1c8cb256, 0 1.5px 8px #00bcd472;
    transform: scale(1.04) rotate(-1.5deg);
}


.our-services-section .row.gy-4 {
    /* Increase vertical gaps between cards (rows) */
    row-gap: 2.5rem !important;
}
.our-services-section .service-box {
    transition: 
        box-shadow 0.35s cubic-bezier(.4,2,.65,.80), 
        transform 0.32s cubic-bezier(.4,2,.65,.80),
        border-radius 0.35s cubic-bezier(.4,2,.65,.80);
    border-radius: 22px;
    margin-top: 18px;   /* add vertical margin above */
    margin-bottom: 18px;/* add vertical margin below */
}
.our-services-section .service-box:hover {
    box-shadow: 0 10px 32px 0 rgba(41,72,125,.18), 0 3px 12px 0 #fff;
    transform: translateY(-7px) scale(1.03) rotateZ(-0.2deg);
    border-radius: 35px;
    z-index: 3;
}
.our-services-section .service-box .icon-wrap {
    transition: 
        background 0.35s cubic-bezier(.4,2,.65,.80),
        border-radius 0.3s, 
        box-shadow 0.3s;
}
.our-services-section .service-box:hover .icon-wrap {
    background: linear-gradient(135deg, #fff 0%, #f4f8fb 100%);
    border-radius: 50%;
    box-shadow: 0 2px 12px 0 rgba(25,90,190,.10);
}
.our-services-section .service-box h4 {
    transition: color 0.3s;
}
.our-services-section .service-box:hover h4 {
    color: #1976d2 !important;
}
/* Optional: Animation for buttons in service boxes */
.our-services-section .service-box a.btn {
    transition: 
        background 0.25s, 
        color 0.25s, 
        box-shadow 0.25s,
        border-radius 0.25s;
}
.our-services-section .service-box:hover a.btn {
    border-radius: 19px !important;
    box-shadow: 0 3px 20px 0 rgba(40,80,150,.08);
    /* Some subtle lift-up */
    filter: brightness(1.05);
}

/* Responsive adjustment for vertical gaps on small screens */
@media (max-width: 767.98px) {
    .our-services-section .service-box {
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .our-services-section .row.gy-4 {
        row-gap: 1.5rem !important;
    }
}

@keyframes marqueeClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.happy-client-logo {
    background: transparent !important;
    max-height: 100px !important;
    padding: 8px;
    transition: transform .2s;
}
.happy-client-logo:hover {
    transform: scale(1.08);
}
@media (max-width: 600px) {
    .happy-clients-marquee img,
    .happy-client-logo {
        max-height:64px !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
        padding: 6px !important;
    }
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
/* Floating animation */
.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-shine:hover::after {
    left: 120%;
}
.btn-animate {
    position: relative;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59,130,246,0.35);
}

.btn-animate:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(59,130,246,0.5);
}

.btn-animate:active {
    transform: translateY(-1px);
}

@media (max-width: 550px) {
    #fixed-whatsapp-button {
      width:48px;height:48px;font-size:1.6rem;right:16px;bottom:13px;
    }
  }
  #fixed-whatsapp-button:hover {
    background: #1ebe5d;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(37,211,102,0.25);
    text-decoration: none;
  }