@font-face {
  font-family: 'Conv_Sansation_Regular';
  src: url('../fonts/Sansation_Regular.eot');
  src: url('../fonts/Sansation_Regular.woff') format('woff'), 
  url('../fonts/Sansation_Regular.ttf') format('truetype'), 
  url('../fonts/Sansation_Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

body{margin:0; padding:0; font-size:16px; font-family: 'Conv_Sansation_Regular'}
h1,h2,h3,h4,h5,h6{margin:0;}
ul{margin:0; padding:0;}
a{color:#000; }
.inner-wraper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.container { max-width: 1250px; width:100%;}
.menu-first li {margin-left: 64px;}
.menu-first li a{ font-style: normal; font-weight: bold; font-size: 18px; line-height: 27px;}
.menu-first li a:hover{color: #EC1C24; text-decoration: none;}
.menu-first li.active a {color: #EC1C24;}
.banner-row img {width: 100%;}

@media screen and (max-width: 420px){
    .banner-row img {
        width: 100%;
        height: 350px;
    }
    }

div#navbarNav {
    float: right;
    width: 100%;
}
.navbar-expand-lg .navbar-nav{flex-direction: row-reverse;}
div#navbarNav ul.navbar-nav {float: right; width: 100%;}

/* Slider home page  */

  .banner-section {
    position: relative;
    overflow: hidden;
}

.banner-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.banner-row {
    min-width: 100%;
    position: relative;
}

.banner-txt {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #212529;
    /* background: rgba(0, 0, 0, 0.5); Optional: add background for better text visibility */
    padding: 20px;
    border-radius: 8px;
}


.banner-section {
    position: relative;
}



.banner-txt { top: 0; bottom: 0; justify-content: center; display: flex; flex-direction: column; 
  height: 100%;}
.banner-txt h3{
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 0em;
    text-align: left;
    margin: 50px 0;
    position: relative;
}
.banner-txt h3:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: -25px;
    border-bottom: 5px solid #FF000A;
    width: 100%;
    max-width: 300px;
    left: 0;
}
.banner-txt p{
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: left;
}



/* Ensure the banner images are responsive */
.banner-image {
    width: 100%;  /* Full width */
    height: auto; /* Maintain aspect ratio */
}


/* Minimal arrow styles */
.minimal-arrow {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.5); /* Light background */
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

.minimal-arrow i {
    font-size: 18px; /* Simple arrow icon */
}

.minimal-arrow:hover {
    background-color: rgba(255, 255, 255, 0.8); /* Slightly brighter on hover */
    transform: scale(1.1); /* Slight scaling effect on hover */
}

.slick-prev {
    left: 10px; /* Adjust position */
}

.slick-next {
    right: 10px; /* Adjust position */
}

/* Slick dots below the slider */
.slick-dots {
    bottom: 10px;
    text-align: center;
    margin-top: 15px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: #ff000a; /* Red color for active dot */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .minimal-arrow {
        display: none; /* Hide arrows on smaller screens */
    }
}





/* ----------- New AI services section-------------- */

/* <!-- -----------------Services section ------------------------- --> */

.our-services-ai {
    margin-bottom: 46px;
}
.our-services-ai h4{
    margin-top: 30px;
    position: relative;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: center;
}
.our-services-ai h4:after {
    content: "";
    top: 0;
    bottom: -25px;
    border-bottom: 5px solid #FF000A;
    width: 108px;
    left: 0;
    right: 0;
    margin:10px auto; 
    position: absolute;
}

 .services-section-ai {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.container-ai {
    width: 90%;
    margin: 0 auto;
}

.services-container-ai {
    /* padding:30px 60px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-box-ai {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px); /* 2 boxes per row */
    margin: 10px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.service-box-ai:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-image-ai {
    width: 100%; /* Full width of the box */
    height: 256px; /* Maintain aspect ratio */
    border-radius: 12px 12px 0 0; /* Rounded corners only at the top */
    object-fit: cover;
    /* object-position: 0ch; */
}

.service-title-ai {
    margin: 15px 0 10px;
    font-size: 1.5em;
}

.service-description-ai {
    font-size: 16px;
    color: #555; /* Lighter text color for description */
}

@media (max-width: 768px) {
    .service-box-ai {
        width: calc(100% - 20px); /* Full width on smaller screens */
    }
}

/* ---------------End of AI services section --------------- */

.overview-section{background:url(../image/Overview-bk.jpg) no-repeat; background-size: cover;     
  padding: 78px 0;}
.overview-head {
    margin-bottom: 86px;
}
.overview-head h4 {
    position: relative;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: left;
}
.overview-head h4:after {
    content: "";
    top: 0;
    bottom: -25px;
    border-bottom: 5px solid #FF000A;
    width: 108px;
    left: 0;
    position: absolute;
}
.service-box {
    border: 1px solid #fff;
    height: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #fff;
    box-shadow: 1px 0px 14px 1px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 378px;
    margin:0 auto;
}
.service-box img {
    height: 120px;
    width: 120px;
}
.service-box p {
    float: left;
    width: 100%;
    margin-top: 55px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: center;
    font-style: italic;
}
.service-box p span{color: #FF000A; font-style: normal;}
.team-head {
    margin-bottom: 86px;
}
.team-head h4 {
    position: relative;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: center;
}
.team-head h4:after {
    content: "";
    top: 0;
    bottom: -25px;
    border-bottom: 5px solid #FF000A;
    width: 108px;
    left: 0;
    right: 0;
    margin:0 auto; 
    position: absolute;
}
section#CoreTeam {
    float: left;
    width: 100%;
    position: relative;
    padding: 50px 0;
}
section#CoreTeam:before {
    content: "";
    position: absolute;
    background: url(../image/team-banner-1.jpg) no-repeat;
    height: 470px;
    width: 100%;
    background-position: left bottom;
    bottom: 0;
    background-size: cover;
}
.slick-dotted.slick-slider{margin-bottom: 37px;}
.team-card {
    position: relative;
    padding: 0 15px; 
}
.team-img {
    position: relative;
    z-index: 9;
}
.team-img img {
    width: 100%;
    margin: auto;
    max-width: 130px;
}
.team-info {
    bottom: 0;
    background: #fff;
    height: 440px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    padding: 100px 30px 0;
    position: relative;
    top: -73px;
    float: left;
    width: 100%;
}
.team-info h4{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    height: 40px;
}
.team-info span{
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    width: 100%;
    color: #FF000A;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.team-info span:before {
    content: "";
    position: absolute;
    bottom: -15px;
    border-bottom: 3px solid #000;
    width: 100%;
    max-width: 148px;
    left: 0;
    right: 0;
    margin: auto;
}
.team-info p{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
}
.problem-statement-bk {
    background: url(../image/staement-bk-banner.jpg) no-repeat;
    background-size: cover;
    padding: 50px 0;
}
section#octacore-solution {
    padding: 50px 0;
    /*background: url(../image/image4.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;*/
}
/*.octacore-bkColor {
    background: #27272794;
    padding: 50px 0;
}*/
.P-Statement-info h4{
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 50px;
    position: relative;
}
.P-Statement-info h4:before {
    content: "";
    position: absolute;
    width: 272px;
    border: 3px solid #FF0000;
    bottom: -22px;
}
.P-Statement-info ul li{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 20px;
}
ul.sub-statement {
    margin-left: 30px;

}
ul.sub-statement li {
    list-style: none;
    margin-bottom: 20px;
}
.octacore-head h4 {
    width: 100%;
    float: left;
    margin-bottom: 50px;
    position: relative;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: left;
}
.octacore-head h4:before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 162px;
    border: 3px solid #FF0000;
    bottom: -22px;
}
.octacore-img a {
    float: left;
    width: 100%;
    margin-bottom: 15%;
    box-shadow: 0px 4px 15px rgb(21 18 18 / 26%);
}
.octacore-img {
    border-radius: 50%;
    width: 100%;
    max-width: 100%;
}
.octacore-img:first-child {
    margin-top: 2%;
}
.octacore-img:nth-child(2) {
    margin: 8% 0;
    float: left;
}
.octacore-img:last-child {
    margin-top: 15%;
}
.octacore-img img {
    width: 100%;
    height: 100%;
}
/*.octacore-img:last-child img {
    width: 100%;
    height: 100%;
    object-fit: none;
    object-position: -360px -170px;
}*/
.octacore-img img {
    width: 100%;
}
.octacore-head p{width: 100%; float: left;}
.octacore-icon {
    padding-left: 0;
}
.octacore-icon ul {
    /*text-align: center;*/
    margin: 0;
}
.octacore-icon ul li {
    list-style: none;
    display: inline-block;
    float: left;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(130, 130, 130, 0.25);
    width: 100%;
    max-width: calc(50% - 32px);
    margin: 0 15px;
    padding: 15px;
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    margin-top: 6px;
}
.octacore-icon ul li img {
    float: left;
}
.octacore-icon ul li h4 {
    float: left;
    width: 100%;
    max-width: 68%;
    font-size: 24px;
    text-align: left;
    margin-left: 15px;
}
.octacore-icon ul li a {
    text-align: right;
    float: right;
    color: #000;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.octacore-icon ul li a:hover{text-decoration: none;}
.octacore-icon ul li div {
    float: left;
    width: 100%;
    text-align: left;
    margin-top: 20px;
}
.octacore-icon ul li div div {
    margin: 0 20px 0;
}
.octacore-icon ul li p {
    width: 100%;
    text-align: left;
    float: left;
    padding-right: 15px;
}
.octacore-icon ul li div p {
    position: relative;
    left: 15px;
}
.octacore-icon ul li div p:after {
    content: "";
    background: #000;
    width: 8px;
    height: 8px;
    position: absolute;
    left: -15px;
    border-radius: 50%;
    top: 7px;
}
.octacore-icon ul li:nth-child(4) {
    position: relative;
    top: -193px;
}
.octacore-icon ul li:nth-child(6) {
    left: -210px;
    position: relative;
    top: 8px;
}
section#cargo-dimens {
    background: #272727;
    padding: 106px 0;
}
.cargoD-head {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.cargoD-head h4 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}
.cargoD-head h4:before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 162px;
    border: 3px solid #FF0000;
    bottom: -22px;
}
.cargoD-head h4:after {
    content: "";
    position: absolute;
    width: 234px;
    border: 3px solid #FFF;
    bottom: -22px;
    left: 120px;
}
.cargoD-img img {
    width: 100%;
}
section#contact-form {
    background: linear-gradient(to right, #F5F5F5 33.33%, #fff 30%);
    padding: 84px 0;
}
.cont-head h4{
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: left;
    position: relative;
    margin-bottom: 50px;
}
.cont-head h4::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 162px;
    border: 3px solid #FF0000;
    bottom: -22px;
}
.cont-address p {
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
}
.form-head h4{
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    text-align: left;
    position: relative;
    margin-bottom: 50px;
}
.form-head h4::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 162px;
    border: 3px solid #FF0000;
    bottom: -22px;
}
.ContForm form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #E5E5E5;
    padding: 10px 0;
}
.ContForm form .elem-group textarea#message {
    width: 100%;
    height: 90px;
    border: none;
    border-bottom: 1px solid #E5E5E5;
}

.submit-btn button {
    background: rgba(255, 0, 0, 0.74);
    border: 1px solid rgba(255, 0, 0, 0.64);
    box-sizing: border-box;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 28px;
    margin: auto;
    text-align: center;
    display: inherit;
    padding: 10px 60px;
    color: #fff;
    font-size: 32px;
}
.slick-next {
    z-index: 9999;
    right: 15px;
}
.slick-prev {
    z-index: 9999;
    left: 0;
}
/* .slick-prev:before{
    content: "";
    background: url(../image/arrow-left.png) no-repeat;
    background-size: contain;
    width: 35px;
    float: left;
    height: 50px;
    left: 10px !important;
    opacity: unset !important;
}
.slick-next:before {
    content: "";
    background: url(../image/arrow-right.png) no-repeat;
    background-size: contain;
    width: 35px;
    float: left;
    height: 50px;
    left: 10px !important;
    opacity: unset !important;
} */

/* For the previous (left) arrow */
.slick-prev:before {
    content: "\f104";  
    font-family: "Font Awesome 6 Free";  
    font-weight: 600;  
    color: #333;  
    font-size: 40px;  
    display: inline-block;
    width: 35px;
    height: 50px;
    line-height: 50px;  
    text-align: center;
}

/* For the next (right) arrow */
.slick-next:before {
    content: "\f105";  
    font-family: "Font Awesome 6 Free";  
    font-weight: 600; 
    color: #333;
    font-size: 40px;
    display: inline-block;
    width: 35px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: #ff000a;  
}




footer.footer {
    background: #272727;
    float: left;
    width: 100%;
    padding: 50px 0;
}
.footer-link ul {
    text-align: center;
    margin: 0;
    padding: 0;
}
.footer-link ul li {
    display: inline-block;
}
.footer-link ul li a {
    color: #fff;
    margin: 0 20px;
}
.P-Statement-info {
    overflow-x: hidden;
    height: 520px;
}
@media screen and (max-width: 1246px) {
   .octacore-icon ul li:nth-child(4){top: -210px;}
}
@media screen and (max-width: 1200px) {
  .banner-txt h3{font-size: 50px;}
  .banner-txt p{font-size: 40px; }
  .octacore-icon ul li h4{max-width: 60%;}
  .octacore-icon ul li:nth-child(4){top: -180px;}
  .octacore-icon ul li:nth-child(6){left: 0; top: 0;}
}
@media screen and (max-width: 1196px) {
    .octacore-icon ul li:nth-child(4){top: -140px;}
}
@media screen and (max-width: 1186px) {
    .octacore-icon ul li:nth-child(4){top: -115px;}
}
@media screen and (max-width: 1080px) {
    .octacore-section .MFUll {width: 100%; max-width: 100%; flex: 0 0 100%; text-align: center; }
    .octacore-img{display: inline-block; text-align: center; margin: 0 20px;}
    .octacore-img:nth-child(1){margin: 2% 0;}
    .octacore-img:nth-child(2){margin:5% 0; }
    .octacore-img:last-child{margin:5% 0; }
    .octacore-img a{margin-bottom: 0;}
    .octacore-head h4 {text-align: center;}
    .octacore-head h4:before {left: 0; right: 0; margin: auto;}
    .octacore-head p {text-align: center;}
    .octacore-icon{margin: 50px 0;}
}
@media screen and (max-width: 1020px) {
  .octacore-icon ul li h4 {max-width: 55%; font-size: 18px; margin-top: 10px;}
}
@media screen and (max-width: 992px) {
  .banner-txt h3{font-size: 40px;}
  .banner-txt p{font-size: 32px; }
  .team-info p{font-size: 14px;}
  .navbar-expand-lg .navbar-nav {flex-direction: column;}
  .menu-first li{margin-left: 0; padding:10px 0; }
  div#navbarNav {position: absolute; top: 112px; z-index: 999; background: #fff;}
  .octacore-icon ul li:nth-child(4){top: -135px;}
  .team-info h4{font-size: 18px;}
}
@media screen and (max-width: 972px) {
    .octacore-icon ul li:nth-child(6){top: 0;}
}
@media screen and (max-width: 955px) {
    .octacore-icon ul li:nth-child(4){top: -160px;}
}
@media screen and (max-width: 941px) {
  .octacore-icon ul li h4{max-width: 47%;}
}
@media screen and (max-width: 923px) {
    .team-info h4{font-size: 20px;}
    .P-Statement-info {
    overflow-x: hidden;
    height: 560px;
        }
}
@media screen and (max-width: 910px) {
  .octacore-section .MFUll{width: 100%; max-width: 100%; flex: 0 100%;}
  .octacore-icon{padding-left: 0;}
  .octacore-img {text-align: center;margin-bottom: 50px;}
  .octacore-icon ul li:nth-child(4){top: -190px;}  
  .octacore-icon ul li:nth-child(6){top: 0;}
}
@media screen and (max-width: 830px) {
    .octacore-icon ul li:nth-child(4){top: -210px;}
}
@media screen and (max-width: 808px) {
    .octacore-icon ul li:nth-child(4){top: -190px;}
}
@media screen and (max-width: 797px) {
    .octacore-icon ul li:nth-child(4){top: -170px;}
}
@media screen and (max-width: 790px) {
    .octacore-icon ul li:nth-child(4){top: -120px;}
}

@media screen and (max-width: 768px) {
/*  .banner-txt{width: 100%; max-width: 100%;}*/
  .banner-txt h3{font-size: 32px;}
  .banner-txt p { font-size: 22px; line-height: 32px;}
  .overview-services .MFUll { width: 100%; max-width: 100%; flex: 0 100%;}
  .team-info{margin:0; }
  .problem-statement-bk {padding: 0;}
  .problem-statement-bkC {background: #00000082; padding: 50px 0;}
  .P-Statement-info h4{color: #fff;}
  .P-Statement-info ul li{color: #fff;}
  .MFull{width: 100%; max-width: 100%; flex: 0 100%;}
  section#contact-form{background: linear-gradient(to bottom, #F5F5F5 49.33%, #fff 30%);}
  .ContForm {padding-top: 70px;}
  .cargoD-img {margin-top: 50px;}
  .cargoD-img img{width: 100%;}
  .octacore-icon ul li{max-width: 100%; margin:0 0 30px; }
  .octacore-icon ul li:nth-child(4){position: unset;}
  .octacore-icon ul li:nth-child(6){position: unset;}
  .P-Statement-info {padding: 0 15px;}
  .P-Statement-info {
    overflow-x: hidden;
    height: 100%;
}

}
@media screen and (max-width: 715px) {
    .team-info h4{font-size: 16px;}
    .team-info span{font-size: 16px;}
}
@media screen and (max-width: 576px) {
  .team-info{max-width: 100%; width: 100%;}
  .form-head h4 {margin-top: 20px;}
  .octacore-icon ul li{max-width: 100%;}
  .banner-txt{max-width: 80%; width: 100%;}
}
@media screen and (max-width: 480px) {
  .cargoD-head h4{font-size: 30px;}
  .octacore-icon ul li{max-width: 100%; margin: 0 6px 12px;}
}
@media screen and (max-width: 420px) {
    .banner-txt h3 {font-size: 50px; margin:0 0 18px; }
    .banner-txt h3:after{bottom: 0;}
    .banner-txt p{font-size: 16px;}
    .overview-services .MFUll{margin:0 5px; }
}
@media screen and (max-width: 360px) {
    .octacore-img:nth-child(2){float: none;}
    .octacore-img a{margin-bottom: 5%;}
}