.font18{
    font-size: 18px!important;
}
.font20{
    font-size: 20px!important;
}
.font21{
    font-size: 21px!important;
}
.font22{
    font-size: 22px!important;
}
.font24{
    font-size: 24px!important;
}
.font30{
    font-size: 30px!important;
}
.font35{
    font-size: 35px!important;
}

.font40{
    font-size: 40px!important;
}
.font45{
    font-size: 45px!important;
}
.font50{
    font-size: 50px!important;
}
.font60{
    font-size: 60px!important;
}

.font70{
    font-size: 70px!important;
}

.font100{
    font-size: 100px!important;
}

.font200{
    font-weight: 200!important;
}
.font300{
    font-weight: 300!important;
}
.font400{
    font-weight: 400!important;
}

.font600{
    font-weight: 600!important;
}
.font700{
    font-weight: 700!important;
}


.min-vh-45 {
    min-height: 45vh !important;
}

.home-bg{
    background: #f8fbf6;
}

.pull-right{
    float: right!important;
}

.pull-left{
    float: left!important;
}



/*Contact Form*/
.contact-form-input, input.form-control.bg-transparent.contact-form-input:focus{
    border: 1px solid #00BBD1;
    border-radius: 50px;
    height: 3em;
    color: #fff!important;
    box-shadow: 0 0 0 .25rem #01122C0a;
}


.contact-form-text-area, .contact-form-text-area:focus{
    border: 1px solid #00BBD1;
    border-radius: 50px;
    color: #fff!important;
    box-shadow: 0 0 0 .25rem #01122C0a;
}


#loader {
    display: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    /* Add more styling as needed */
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.home-head{
    color: #00BBD1!important;
}

.home-section{
    padding: 0% 0 0px 0;
}

.pt-3per{
    padding-top: 3% !important;
}

/*Probelm Statement*/
.problem-box1 {
    position: relative;
    display: inline-block;
    /*margin-top: 10%;*/
    /*margin-left: 10%;*/
    overflow: visible; /* Ensure the animated border doesn't overflow */
}
.problem-box1 img {
    display: block;
    width: 100%;
    height: auto;
}
.problem-box1::before {
    content: '';
    position: absolute;
    top: -3%;
    left: -2%;
    width: 100%;
    height: 100%;
    border: 2px solid #00BFFF;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    transition: all 0.5s ease; /* Smooth transition */
}

.problem-box1:hover::before {
    top: 0%;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-width: 4px;
    background-color: rgba(0, 191, 255, 0.2);
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
}

.problem-box2 {
    position: relative;
    display: inline-block;
    /*margin-top: 10%;*/
    /*margin-left: 10%;*/
}
.problem-box2 img {
    display: block;
    width: 100%;
    height: auto;
}
.problem-box2::before {
    content: '';
    position: absolute;
    top: -2%;
    left: 2%;
    width: 100%;
    height: 100%;
    border: 2px solid #00BFFF;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    transition: all 0.5s ease; /* Smooth transition */
}

.problem-box2:hover::before {
    top: 0%;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-width: 4px;
    background-color: rgba(0, 191, 255, 0.2);
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
}



/*Why Choose*/
.polygon {
    width: 30px;
    height: 30px;
    background-color: #00BFFF;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.pb-5per{
    padding-bottom: 5%;
}
.pb-10per{
    padding-bottom: 10%;
}

.livecom-row-bg{
    background: #0000003d;
    padding: 2%;
}

/* Add this CSS to your stylesheet */
.polycon-box {
    transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}

.polycon-box:hover {
    transform: scale(1.1); /* Scale up the element on hover */
}


/*Tech Section*/

.tech-box {
    display: flex;
    padding: 20px;
    border-radius: 5px;
    color: white;
    position: relative; /* Required for absolute positioning inside */
}

.tech-icon-container {
    position: relative;
    margin-right: 15px;
    height: 60px; /* Set height to ensure the line is visible */
    display: flex;
    align-items: center;
}

.line {
    width: 3px;
    height: 165%;
    background-color: #00c0e5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tech-polygon {
    width: 25px;
    height: 25px;
    background-color: #00c0e5;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: absolute; /* Absolute positioning to keep within the line */
    top: 65%; /* Start at the top */
    left: 50%;
    transform: translateX(-50%);
    transition: none; /* Disable default transition */
}

@keyframes up-down {
    0% {
        transform: translateY(0%) translateX(-50%);
    }
    50% {
        transform: translateY(100%) translateX(-50%);
    }
    100% {
        transform: translateY(0%) translateX(-50%);
    }
}

.tech-box:hover .tech-polygon {
    animation: up-down 1s infinite;
}

.content {
    display: flex;
    flex-direction: column;
    padding-left: 5%;
}



.tech-section{
    padding: 2% 0 0px 0;
}