/* CSS FOR BANNER AREA */
.banner-area .banner-section {
background: #333;
border-radius: 20px;
color: #fff;
padding: 2rem 3rem;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: nowrap;
min-height: 45vh;
position: relative;
overflow: visible;
}
.banner-area .banner-section .banner-text {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
text-align: right;
}
.banner-area .banner-section .banner-text p {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.8rem;
color: #fff;
}
.banner-area .banner-section .banner-text h2 {
font-size: 1.8rem;
font-weight: 800;
line-height: 1.3;
color: #fff;
}
.banner-area .banner-section .banner-image {
position: relative;
flex: 1;
display: flex;
justify-content: flex-end;
align-items: flex-end;
overflow: visible;
}
.banner-area .banner-section .banner-image img {
max-width: 250px;
height: auto;
position: absolute;
bottom: -215px;
right: -40px;
z-index: 1;
}
.banner-area .banner-section .banner-image .play-btn {
position: absolute;
right: 10px;
bottom: -10px;
width: 80px;
height: 80px;
background: red;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 2rem;
cursor: pointer;
z-index: 2;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease, box-shadow 0.3s;
}
.banner-area .banner-section .banner-image .play-btn:hover {
transform: scale(1.1);
box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
}
@media (max-width: 992px) {
.banner-area .banner-section {
flex-direction: column-reverse;
text-align: center;
min-height: auto;
padding: 2rem;
}
.banner-area .banner-section .banner-text {
margin-top: 2rem;
text-align: center;
}
.banner-area .banner-section .banner-image {
justify-content: center;
align-items: center;
position: relative;
margin-bottom: 2rem;
}
.banner-area .banner-section .banner-image img {
position: static;
max-width: 280px;
margin: 0;
}
.banner-area .banner-section .banner-image .play-btn {
position: absolute;
right: 35%;
bottom: 100px;
transform: translateX(50%);
}
}
@media (max-width: 576px) {
.banner-area .banner-section .banner-text h2 {
font-size: 1.6rem;
}
.banner-area .banner-section .banner-text p {
font-size: 1rem;
}
.banner-area .banner-section .banner-image img {
max-width: 200px;
}
.banner-area .banner-section .banner-image .play-btn {
width: 60px;
height: 60px;
font-size: 1.5rem;
position: absolute;
bottom: 60px;
right: 70px;
}
}

/* CSS FOR ABOUT AREA */
.about-area p{
text-align: justify;
}
.about-area .btn-slide {
position: relative;
padding: 10px 20px;
background-color: #1b273d;
color: white;
border: 2px solid transparent;
border-radius: 50px;
font-size: 1rem;
text-transform: capitalize;
font-weight: 700;
overflow: hidden;
transition: color 0.4s ease, background-color 0.4s ease;
z-index: 1;
}
.about-area .btn-slide span i {
transition: transform 0.4s ease;
}
.about-area .btn-slide::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background-color: #04a2e5;
z-index: -1;
transition: all 0.4s ease;
}
.about-area .btn-slide > * {
position: relative;
z-index: 2;
}
.about-area .btn-slide:hover {
color: #ffffff;
background-color: #04a2e5;
}
.about-area .btn-slide:hover::before {
left: 0;
}
.about-area .btn-slide:hover span i {
transform: translateX(5px);
}
.about-area .section-title {
color: #00d1f9;
font-weight: bold;
}
.about-area .section-underline {
width: 50px;
height: 2px;
background-color: #00d1f9;
margin: 0.5rem 0;
}
.about-area .icon-style {
font-size: 2rem;
margin-bottom: 1rem;
}
.about-area .section-bg {
background: linear-gradient(to bottom, #fff, #d0e7ed);
padding: 4rem 2rem;
}
.about-area .list-unstyled li::before {
font-weight: 900;
margin-right: 10px;
color: black;
}
@media (max-width: 768px) {
.about-area .btn-slide {
font-size: 1rem;
padding: 8px 16px;
}
}
@media (max-width: 440px) {
.about-area .about-arealine {
display: none;
}
}
/* CSS FOR FEATURE AREA */
.feature-area .design-card {
background-color: #2e2e2e;
border-radius: 1.5rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
color: #e0e0e0;
overflow: hidden; 
}
.feature-area .design-card .icon-row {
display: flex;
justify-content: space-between;
gap: 1rem;
margin-bottom: 2rem;
}
.feature-area .design-card .icon-row  .icon-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
flex-grow: 1;
min-width: 100px;
}
.feature-area .design-card .icon-row  .icon-item img {
height: 40px;
width: 40px;
filter: invert(100%);
}
.feature-area .design-card .icon-row  .icon-item span {
font-size: 0.8rem;
margin-top: 0.5rem;
line-height: 1.2;
}
.feature-area .design-card .patent-text {
font-size: 0.9rem;
line-height: 1.4;
}
.feature-area .design-card .product-images-container {
position: relative;
padding-bottom: 120px;
padding-right: 50px;
}
.feature-area .design-card .product-image {
position: absolute;
bottom: -20px;
right: -50px;
width:350px;
max-width: none;
height: auto;
}
@media (max-width: 440px){
.feature-area .design-card .icon-row  {
flex-wrap: wrap;
}
}
@media (max-width: 991.98px) {
.feature-area .design-card .row {
flex-direction: column;
}
.feature-area .design-card .product-images-container {
padding-bottom: 0;
padding-right: 0;
text-align: center;
margin-top: 2rem;
}
.feature-area .design-card .product-image {
position: static;
width: 90%;
max-width: 300px;
margin: 0 auto;
}
.feature-area .design-card .icon-row {
justify-content: center;
gap: 2rem;
}
}
.feature-area p{
text-align: justify;
}
.feature-area .btn-slide {
position: relative;
padding: 10px 20px;
background-color: #1b273d;
color: white;
border: 2px solid transparent;
border-radius: 50px;
font-size: 1rem;
text-transform: capitalize;
font-weight: 700;
overflow: hidden;
transition: color 0.4s ease, background-color 0.4s ease;
z-index: 1;
}
.feature-area .btn-slide span i {
transition: transform 0.4s ease;
}
.feature-area .btn-slide::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background-color: #04a2e5;
z-index: -1;
transition: all 0.4s ease;
}
.feature-area .btn-slide > * {
position: relative;
z-index: 2;
}
.feature-area .btn-slide:hover {
color: #ffffff;
background-color: #04a2e5;
}
.feature-area .btn-slide:hover::before {
left: 0;
}
.feature-area .btn-slide:hover span i {
transform: translateX(5px);
}
@media (max-width: 440px) {
.feature-area .feature-arealine {
display: none;
}
.feature-area  .text-cntr{
text-align: center;
}
}
/* CSS FOR SERVICES AREA */
.services-area .section-bg{
background-color: #f0f0f0;
}
.services-area .btn-slide {
position: relative;
padding: 10px 20px;
background-color: #1b273d;
color: white;
border: 2px solid transparent;
border-radius: 50px;
font-size: 1rem;
text-transform: capitalize;
font-weight: 700;
overflow: hidden;
transition: color 0.4s ease, background-color 0.4s ease;
z-index: 1;
}
.services-area .btn-slide span i {
transition: transform 0.4s ease;
}
.services-area .btn-slide::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background-color: #04a2e5;
z-index: -1;
transition: all 0.4s ease;
}
.services-area .btn-slide > * {
position: relative;
z-index: 2;
}
.services-area .btn-slide:hover {
color: #ffffff;
background-color: #04a2e5;
}
.services-area .btn-slide:hover::before {
left: 0;
}
.services-area .btn-slide:hover span i {
transform: translateX(5px);
}
.services-area .service-carousel{
max-width: 1200px;
margin:0 auto;
}
.services-area .services-item{
background:#ffffff;
border-radius:20px;
}
.services-area .services-item:hover{
border:1px solid #04a2e5;
}
/* CSS FOR CONTACT AREA */
.contact-area .btn-slide {
position: relative;
padding: 10px 20px;
background-color: #1b273d;
color: white;
border: 2px solid transparent;
border-radius: 50px;
font-size: 1rem;
text-transform: capitalize;
font-weight: 700;
overflow: hidden;
transition: color 0.4s ease, background-color 0.4s ease;
z-index: 1;
}
.contact-area .btn-slide span i {
transition: transform 0.4s ease;
}
.contact-area .btn-slide::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background-color: #04a2e5;
z-index: -1;
transition: all 0.4s ease;
}
.contact-area .btn-slide > * {
position: relative;
z-index: 2;
}
.contact-area .btn-slide:hover {
color: #ffffff;
background-color: #04a2e5;
}
.contact-area .btn-slide:hover::before {
left: 0;
}
.contact-area .btn-slide:hover span i {
transform: translateX(5px);
}
