/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Yantramanav:wght@100;300;400;500;700;900&display=swap'); */

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0;
	text-decoration: none;
	list-style: none;
	font-weight: normal;
}
body{
    font-size: 16px;
    /* font-family: "Roboto", sans-serif; */
    color: rgb(51, 51, 51);
          font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
          font-weight: 500;
          
	

}






:root{
    --primary-color:#27AAE1;
    --secondary-color:#4D4D4D;




}
h1,h2,h3,h4,h5,h6{
    margin: 0px;
    padding: 0px;
    color: var(--primary-color);
     /* font-family: "Yantramanav", sans-serif; */
            font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
ul{
    margin: 0px !important;
    padding: 0px !important;
    list-style: none;
}
a{
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    color: inherit;
}
img{
    max-width: 100%;
}
p{
    margin: 0px;
    line-height: 25px;
     color: rgb(51, 51, 51);
     font-weight: 500;
}

h1{
    font-size: 50px;
    line-height: 50px;
}
h2{
    font-size: 40px;
    line-height: 40px;
}
h3{
    font-size: 36px;
    line-height: 35px;
}
h4{
    font-size: 28px;
    line-height: 30px;
}
h5{
    font-size: 20px;
    line-height: 22px;
}
h6{
    font-size: 18px;
    line-height: 20px;
}
.img_fluid{
    max-width: 100%;
    height: auto;
}

.primary-btn {
    padding: 15px 26px;
    background: var(--primary-color);
    color: white;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0px;
    transition: 0.8s;
}
.primary-btn:hover{
    background-color: white;
    color: var(--primary-color);
}
/* top-header-css-start */
.website-menu {
    text-align: right;
}
.website-menu ul li {
    display: inline-block;
    padding: 10px 25px;
}
.top-header {
    background: var(--secondary-color);
    padding: 10px 0px;
}
.website-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}
/* .main-header {
    background: white;
    box-shadow: 0 0 10px #ddd;
} */

.main-header {
    background: transparent;
 
    position: absolute;
    
    z-index: 9;
    width: 100%;
}


.main-header{
    position: sticky;
    width: 100%;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    top: 0px;
    z-index: 26;
    transition: 0.5s linear;

    
}
.header-logo img {
    width: 250px;
    height: 97px;
}
.main-header.sticky .header-logo img{
    width: 200px;
    height: 65px;

}
li.nav-item.dropdown {
    display: inline-block;
    padding: 35px 20px;
}
.main-header.sticky li.nav-item.dropdown{
    display: inline-block;
    padding: 19px 20px;

}
li.nav-item.dropdown a {
    font-size: 16px;
    font-weight: 500;
    color:white;
}
li.nav-item.dropdown > a {
    color:var(--primary-color);
    font-size: 18px;
    transition: 0.8s;
}
li.nav-item.dropdown > a:hover{
    color: var(--secondary-color);
}
.main-header.sticky li.nav-item.dropdown > a {
    color: var(--primary-color);
}
   
   
    
   
 
 
  




/* top-header-css-end */

.menu > ul > li{
    position: static;
}
/* .main-header{
    position: relative;
} */
ul.new-dropdown {
    position: absolute;
    width: 100%;
    left: 0;
    top: 96px;
    background: var(--primary-color);
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
    text-align: center;
    z-index: 1;
    max-height: 500px;
    overflow-y: auto;
}

ul.new-dropdown li {
    width: 33%;
    float: left;
    padding: 20px;
}

.menu > ul > li.active ul.new-dropdown {
     visibility: visible;
    opacity: 1;
}
li.search-btn a i {
    color: var(--primary-color);
}
.header-menu {
    display: flex;
    justify-content: end;
    align-items: center;
}
/* banner-css-start */

.banner video{
    object-fit: cover;
}
.banner {
    position: relative;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-30%, -50%);
    text-align: center;
    background: #ffffffb5;
    padding: 30px;
    border-radius: 20px;
}
.banner-text h1 {
    font-size: 55px;
    line-height: 65px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
}



/* banner-css-end */
/* about-css-start */

.about-sec {
    padding: 50px 0px;
}
.about-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.about-title h3 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 20px;
}
.about-text H2 {
    font-size: 35px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.about-text p {
    margin-bottom: 30px;
}
.about-us-images img {
    border-radius: 10px;
}
/* about-css-end */
/* future-css-start */
.future-sec {
    background: #e8f4fd;
    padding: 50px 0px;
}

.meet-icon-box {
    display: flex;
}
.meet-icon-box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.meet-icon-box .meet-icon {
    font-size: 80px;
    color: white;
}
.meet-boxes {
    background: var(--primary-color);
    padding: 20px;
    
    overflow: hidden;
    height: 240px;
    
    position: relative;
    transform: scale(1);
    transition: 0.7s;
}
.meet-boxes:hover{
    transform: scale(1.03);
    background-color: #27aae1c9;
}
h5.catgoryname {
    color: white;
}
.meet-icon-text h4 {
    color: white;
}
.trade-inner-box {
    background: var(--primary-color);
}
.trade-inner-text h5 {
    color: white;
    font-size: 25px;
}
.trade-inner-box {
    background: var(--primary-color);
   
    height: 100px !important;
}
.trade-inner-text h5 {
    color: white;
    font-size: 25px;
    align-items: center;
    line-height: 100px;
    text-align: center;
}
.trade-boxes {
    border: 1px solid #ddd;
   
   
}
.online-box .online-text h5 {
    color: white;
    font-size: 25px;
 
}
.online-box {
    background: var(--primary-color);
    height: 130px;
    position: relative;
}
.online-text {
    padding: 19px 53px 19px 30px;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
}
.online-shop {
    position: relative;
    overflow: hidden;
    transition: 0.7s;
    transform: scale(1);
}
.online-shop:hover{
    transform: scale(1.03);
}
.category-name {
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    padding: 0 30px;
}
.category-name h6 {
    color: white;
}
.icon-plus {
    position: absolute;
    right: 30px;
    bottom: 20px;
}
.online-shop .icon-plus i {
    color: white;
}
.online-text .date span {
    color: white;
}
.categoryname h5 {
    color: white;
}
.date span {
    color: white;
}
.meet-boxes h5 {
    color: white;
}
.meet-height{
    height: 207px;
}
/* future-css-end */
/* service-css-start */
.service-sec {
    padding: 50px 0px;
}
.service-title h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.service-title h2 span{
    font-weight: 600;
    color: var(--secondary-color);
}

.single_service {
    background: #fff;
    box-shadow: 1px 10px 8px #ddd;
    border: 1px solid #ddd;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.single_service:before {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: #f7f7f7;
   
    transform: scale(0.9, 0.9);
   
    opacity: 0;
    z-index: -1;
 
    transition: all 0.3s ease;
}
.single_service:hover:before{
    opacity: 1;
    transform: scale(1, 1);
}
.single_service_info {
    padding: 20px;
}
.single_service .single_service_info h4 {
    margin: 10px 0px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}
.single_service .single_service_info p{
    margin-top: 10px;
}
.serv_read_btn {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 20px 0 25px;
    padding: 8px 35px;
    border: 1px solid #ddd;
    background: transparent;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.serv_read_btn:hover{
    background-color: var(--primary-color);
    color: white;
}
/* service-css-end */
/* counter-css-start */
.counter-sec{
    background-image: url(../images/choose-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 70px 0px;
    position: relative;
   
}
.counter-sec:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .50);
    z-index: 1;
}
/* .counter-box span {
    font-size: 40px;
    color: white;
    font-weight: bold;
    padding-top: 20px;
} */
.counter-box p {
    color: white;
    font-weight: normal;
        margin: 5px 0 0;
 
}
.counter-box {
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-box i {
    font-size: 50px;
    margin: 0 0 15px;
    color:white;
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 28px;
    color: white;

}




/* counter-css-end */

/* solution-css-start */

.solution-sec {
    background: #e8f4fd;
    padding: 50px 0px;
}
.solution-text {
    background: var(--primary-color);
    padding: 10px;
}
.solution-text h6 {
    color: white;
}
.solution-boxes {
    padding: 0px 5px;
}
.solution-sec .slick-prev.slick-arrow {
    background: var(--primary-color);
    height: 30px;
    width: 30px;
    text-align: center;
    left: -35px;
    padding-left: 5px;
    font-weight: bold;
}
.solution-sec .slick-next.slick-arrow {
    background: var(--primary-color);
    height: 30px;
    width: 30px;
    text-align: center;
    right: -37px;

    font-weight: bold;
}
/* solution-css-end */

/* footer-css-start */

/* responsive-css-start */
.toogle-btn {
    float: right;
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 24px;
    line-height: 24px;
    color: white;
    margin-top: 20px;
    display: none;
}

/* responsive-css-end */

/* mvk-fusion-css-start */

.banner_sec {
    position: relative;
}
.banner_text {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-30%, -50%);
}
.banner_text h1 {
    color: white;
}
.banner_text p {
    color: white;
    margin-top: 10px;
}

.mvk_moduls_sec {
    padding: 50px 0px;
}
p.mvk_body_text {
    margin-bottom: 15px;
}
ul.mvk_cloud_list li {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 600;
    padding-left: 35px;
}
ul.mvk_cloud_list li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    left: 5px;
    top: 14px;
    display: block;
}


.mvk_modul_img img {
    border-radius: 10px;
    transition: 0.5s;
    transform: scale(1);
}
.mvk_modul_img img:hover{
transform: scale(1.1);
}
.mvk_modul_left{
    overflow: hidden;
}
.mvk_categories_sec {
    padding: 50px 0px;
}
/* mvk-fusion-css-end */

/* mvk_range_css_start */
.mvk_range_sec {
    background: #e8f4fd;
    padding: 50px 0px;
}
/* mvk_range_css_end */
/* mvk_testimonial_css_start */
.mvk_testimonial-sec {
    padding: 50px 0px;
    background: var(--primary-color);
}
.mvk_quate-text {
    padding-left: 50px;
}
.mvk_testimonial_image {
    width: 130px;
}
.mvk_quate-text {
    width: calc(100% - 130px);
}
.mvk_quate-text p {
    font-size: 20px;
    color: white;
    margin-top: 10px;
}
h6.manager-name {
    color: white;
    margin-top: 15px;
} 

.mvk_download-_sec {
    padding: 50px 0px;
}
.download_btn {
    border: 2px solid var(--primary-color);
}
.download_btn:hover {
    border: 2px solid var(--primary-color);
}
/* mvk_testimonial_css_end */

/* network_technology_css_start */
.network_technology_sec {
    padding: 50px 0px;
}
.network_technology_content h2 {
    margin-top: 30px;
    margin-bottom: 30px;
}
/* network_technology_css_end */
/* network_technology_item_css_start */
.network_technology_item_sec {
    padding: 50px 0px;
}
.network_technology_item_box {
    background: white;
    box-shadow: 0 0 10px #ddd;
}
.network_technology_item_content {
    background: var(--primary-color);
    position: relative;
    height: 123px;
}
.network_technology_inner_text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 19px 53px 19px 30px;
    background: var(--primary-color);
}
.network_technology_inner_text p {
    color: white;
    font-size: 25px;
}
.network_technology_item_plus {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 20px;
    color: white;
}
.network_technology_item {
    overflow: hidden;
    transform: scale(1);
    transition: 0.5s;
}
.network_technology_item:hover{
    transform: scale(1.02);
}
/* network_technology_item_css_end */
/* network_topology_css_start */
.network_topology_sec {
    padding: 50px 0px;
    background: #e9ecef;
}
.network_topology_bg {
    
    background:none !important;
}
/* network_topology_css_end */
/* network_technology_form_css_start */
.network_technology_form_sec{
    padding: 50px 0px;
    background: #e9ecef;
}
.network_technology_form_sec .form-control:focus {
    box-shadow: none;
    border: none;
}
/* network_technology_form_css_end */
/* Digitization_css_start */

.primary_color{
    color: var(--primary-color) !important;
}
.digitization_callaut_box {
    display: flex;
    margin-top: 60px;
    margin-bottom: 60px;
}
.callout_icon_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    background: var(--primary-color);
}
.callout_icon_box span i {
    color: white;
    font-size: 36px;
}
.digitization_text_content {
    background: #27aae138;
    padding: 20px;
    width: 100%;
}
.digitization_portfolio_sec {
    padding: 50px 0px;
       background: #e9ecef;
}
.dizitization_product_sec {
    padding: 50px 0px;
}
.spacer {
    border-bottom: 1px solid #ddd;
    padding-top: 60px;
    margin-bottom: 60px;
}
.dizitization_digital_sec {
    padding: 50px 0px;
     background: #e9ecef;
}
.dizitization_installation_sec {
    padding: 50px 0px;
   
}
.dizitization_installation_content span i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
/* Digitization_css_end */

/* io_link_css_start */
.io_link_meet_sec {
    padding: 50px 0px;
    background: #e9ecef;
}
.b-description_readmore_button {
    padding: 5px 10px;
    background: var(--primary-color);
    width: 100px;
    border-radius: 5px;
    color: white;
    margin-top: 10px;
}
.io_link_meet_sec h2{
    margin-bottom: 50px;
}
/* io_link_css_end */
/* marine-css-start */

.banner-images img {
    width: 100%;
}
.marine_product_sec {
    padding: 60px;
 
}


.products{
  padding: 20px;
  padding-top: 20px;
  text-align: center;

}

.products .product {
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 400px;
  text-align: left;
  display: inline-block;
  background-color: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  margin: 20px;
  padding: 20px;
}

.products .product img {
  position: relative;
  top: -5px;
  margin: auto;
  transition: all .2s ease;
  width: 100%;
  height: 125px;
  
}
.products .product img:hover {
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.products .product h1 {
  line-height: 20px;
  font-size: 20px;
  margin-top: 15px;
  
}

  
.products .product .price {
  text-align: center;
  font-size: 20px;
  margin-top: 25px;
  color: darkblue;
  background: lightblue;
  border: 1px solid blue;
  border-radius: 10px;
  padding: 10px;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}


/* marine-css-end */
/* contact-css-start */
.contact-ugf {
    background: #fff;
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.05);
    padding: 60px ;
    border-radius: 15px;
    margin-top: -130px;
    z-index: 1;
    position: relative;
}
.contact-ugf h4 {
    font-size: 24px;
    color: #1c2437;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-ugf form .form-group {
    margin-bottom: 25px;
    position: relative;
}
.contact-ugf form label {
    font-size: 12px;
    font-weight: 700;
    color: #1c2437;
   
    text-transform: uppercase;
}

.contact-ugf form .form-group .form-control {
    height: 60px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 20px;
    font-size: 15px;
    color: var(--primary-color);
}
.contact-ugf form .form-group textarea.form-control {
    height: 120px;
    padding-top: 14px;
}
.contact-ugf form .btn {
    background: var(--primary-color);
    color: #ffffff;
    height: 60px;
    width: 200px;
    text-align: center;
    line-height: 60px;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
}

.contact-right-box .contact-title-right h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 50px;
    padding: 0 0 10px;
    color: #1c2437;
}
.contact_box_inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: #fff;
    border: 1px solid #e4e7ee;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
}
.contact_box_inner:hover{
    background-color: #fff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
}
.contact_content {
    margin-left: 55px;
}

.contact_box_content_style .contact_box_inner .contact_content h3{
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 5px;
}
.contact_box_content_style .contact_box_inner .icon_box {
    position: absolute;
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    border-radius: 50px;
    margin: auto;
    line-height: 40px;
    top: 0;
    bottom: 0;
    left: 24px;
    text-align: center;
}
.contact_box_content_style .contact_box_inner .icon_box i{
    color: white;
    font-size: 16px;
}
.contact-title-right {
    margin-bottom: 20px;
}
.pd_bottom_15{
    padding-bottom: 15px;
}

.contact-ugf .contact-info h5 {
    font-size: 12px;
    font-weight: 700;
    color: #1c2437;
    
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 2.2;
}
.contact-ugf .contact-info{
    margin-top: 15px;
}
.contact-ugf .contact-info .social-links a.facebook {
    color: #3b5998;
}
.contact-ugf .contact-info .social-links a.twitter {
    color: #1da1f2;
}
.contact-ugf .contact-info .social-links a.instagram {
    color: #c13584;
}
.contact-ugf .contact-info .social-links a.linkedin {
    color: #0077b5;
}
.contact-ugf .contact-info .social-links a.youtube {
    color: #ff0000;
}
.contact-ugf .contact-info .social-links a {
    font-size: 20px;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
   
    display: inline-block;
}
/* contact-css-end */

/* faq-css-start */


.faq-sec {
    padding: 50px 0px;
}
.section-title {
    padding: 40px 0px;
}
.section-title h1{
    margin: 0;
 
    font-weight: 600;
    font-size: 1.63rem;
    line-height: 26px;
    color: var(--primary-color)
}


/* Tab Accordian */

h3 {
 
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary-color);
    margin: 0;
}

.tab-accordian p{
    margin-top: 10px;
}

.tab-accordian{
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-radius: 10px;
    border: 1px solid #cecece;
    background: transparent;
    margin-bottom: 20px;
    overflow: hidden;
}

.titleWrapper{
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    -webkit-user-select: none;
    user-select: none;
    transition: background-color .8s linear;
}
/* .titleWrapper.active{
    background: #fff;
} */
.desWrapper{
    background: #fff;
    max-height: 500px;
    display: none;
    padding: 20px;
    transition: max-height 1s ease-in;
}

/* Collapse Icon */

.collapse-icon{
    position: relative;
}
.collapse-icon .acc-close{
    height: 20px;
    border-left: 2px solid var(--primary-color);
    transition: all .5s ease-in-out;
    transform: rotate(-90deg);
    opacity: 1;
}

.collapse-icon .acc-open {
	width: 19px;
	position: absolute;
	border-top: 2px solid var(--primary-color);
	transition: all .5s ease-in-out;
	transform: rotate(90deg);
	top: 43%;
	right: -8px;
}

.titleWrapper.active .collapse-icon{
    transition: all .5s ease-in-out;
	transform: rotate(180deg);
}

.titleWrapper.inactive .collapse-icon{
    transition: all .5s ease-in-out;
	transform: rotate(-180deg);
}

.titleWrapper.active .collapse-icon .acc-open{ 
    opacity: 0;
}


/* faq-css-end */

/* intro-css-start */
.intro-sec{
    padding-top: 50px;
}

/* why-choose-section-css-start */
    .why-choose{
        padding: 50px 0px;
    }
.why_choose_icon img {
    width: 100px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Box Design */
.box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Icon */
.icon {
    font-size: 40px;
}

/* Text */
.box h3 {
    font-size: 20px;
    margin-bottom: 8px;
  
}



/* Responsive */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}
/* why-choose-section-end */

/* services_inner_css_start */
.service_banner {
    position: relative;
}
.service_banner_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.service_banner_text {

    background: #113166ba;
    padding: 20px;
    text-align: center;
}
.service_banner_text h4 {
    font-size: 50px;
    font-weight: 700;
    color: white;
    line-height: 60px;
}
.marine_maintenance_images img {
    border-radius: 20px;
    transition: 0.5s;
    transform: scale(1);
}
.marine_maintenance_images img:hover{
    transform: scale(1.1);
}
.marine_maintenance_images{
    overflow: hidden;
}
.service_banner_text p {
    color: white;
    font-size: 18px;
    padding-top: 10px;
}
.marine_maintenance_sec {
    padding: 50px 0px;
    background: #e8f4fd;
}
.marine_maintenance_text h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
}
.service_we_offer_sec {
    padding: 50px 0px;
}
.marine_maintenance_text{
    margin-bottom: 40px;
}

.Marine.Engineering_text h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.Marine_Engineering_list li i {
    font-size: 12px;
    margin-right: 5px;
    vertical-align: middle;
}
.Marine_Engineering_list li {
    padding: 5px 0px;
}
.Marine.Engineering_images {
    overflow: hidden;
}
.Marine.Engineering_images img {
    border-radius: 20px;
    position: relative;
    transition: 0.5s;
    transform: scale(1);
}
.Marine.Engineering_images:hover img{
    transform: scale(1.1);
    border-radius: 20px;
}
.service_advantage_sec{
    padding: 50px 0px;
    background: #e8f4fd;
}

.adv-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
    position: relative;
}

.adv-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Icon */
.icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* Heading */
.adv-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}


.service_why_choose_sec{
    padding: 50px 0px;
}
.service_why_choose_accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.service_why_choose_accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid var(--primary-color);
}

.service_why_choose_accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: 0.5s;
}

.service_why_choose_accordion button:hover,
.service_why_choose_accordion button:focus {
  cursor: pointer;
  color: rgb(51, 51, 51);
}

.service_why_choose_accordion button:hover::after,
.service_why_choose_accordion button:focus::after {
  cursor: pointer;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.service_why_choose_accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.service_why_choose_accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.service_why_choose_accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.service_why_choose_accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.service_why_choose_accordion button[aria-expanded='true'] {
  color: var(--primary-color);
}
.service_why_choose_accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.service_why_choose_accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.service_why_choose_accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.service_why_choose_accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}


.service_faq-sec{
    padding: 50px 0px;
    background-color: #e8f4fd;
}





/* services_inner_css_end */

/* product_pages_css_start */
.product_inner_sec {
    padding: 50px 0px;
    background: #e8f4fd;
}
.product_inner_text h2 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 25px;
}
.marine_banner {
    position: relative;
}
.banner_images_overlay {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2f5e 60%, #1565c0 100%);
    height: 100%;
    width: 100%;
    opacity: 0.8;
}
.product_banner_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero_brand {
    display: inline-block;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    color: #90caf9;
    margin-bottom: 10px;
}
.hero_dec p{
    font-size: 15px;
    color: #b0c4de;
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.product_banner_text h1 {
    font-size: 44px;
    font-weight: 700;
    color: white;
    line-height: 51px;
    letter-spacing: 0.448px;
    margin-bottom: 12px;
}
.product_banner_text h1 span {
    color: #64b5f6;
    font-weight: 700;
}
  .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }
    .product-card {
      background: white;
      border: 1px solid gray;
      border-radius: 12px;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(21, 101, 192, .14);
      border-color: var(--primary-color);
    }
    .product-img-wrap {
      background: #f0f5fc;
      padding: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 160px;
      border-bottom: 1px solid gray;
    }
    .product-img-wrap img {
      max-height: 120px;
      object-fit: cover;
      width: 100%;
    }
    .product-body { padding: 1rem 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
    .product-part {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary-color);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }


.btn-request {
    display: block;
    width: 100%;
    text-align: center;
    padding: 9px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 7px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
}
.btn-request:hover {
    background: #0a1628;
    color: white;
    text-decoration: none;
}
.product-body h3 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 7px;
    margin-top: 7px;
}

p.product-desc {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.pill {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    color: #cde;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 11px 24px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .02em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.btn-outline {
    background: transparent;
    color: white;
    padding: 11px 24px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(255,255,255,.4);
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}
.product_inner_images img {
    border-radius: 20px;
}
/* product_pages_css_end */





/* 
footer-css-start */


.footer-sec {
 background-color: white;
 box-shadow: 0 0 10px #ddd;
    padding: 50px 0px;
}

.footer-logo img {
    width: 240px;
    height: 100px;
}
.footer-menu {
  
    margin-top: 20px;
}
.footer-menu h6 {
    font-size: 18px;
    font-weight: 700;
    color: black;
}
.footer-menu ul li {
    margin: 8px 0px;
   
}
.footer-m30{
    margin-left: 30px;
}
.footer-menu ul li a {
    transition: 0.5s;
}
.footer-menu ul li a:hover {
  color: var(--primary-color);
}
.footer-social ul li {
    display: inline-block;
    margin: 0px 10px;
}
.footer-social {
    text-align: right;
}
.footer-social ul li a i {
    font-size: 30px;
    color: var(--primary-color);
    transition: 0.5s;
}
.whatsapp {
    background: #25d366;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 45px;
    color: #fff;
    border-radius: 50%;
    right: 40px;
    position: fixed;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shadow-pulse 1.3s infinite;
    animation-timing-function: ease-in-out;
}
@keyframes shadow-pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 38, 61, 0.562);
    }
    90%{
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
} 
.back-btn{
      display: none;
  position: fixed;
  bottom: 130px;
  right: 45px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 20px;
  border-radius: 50px;
}
footer-css-end */