@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

body {
    font-family: "Montserrat", sans-serif;
    position: relative !important;
}
a {
    text-decoration: none !important;
    /* color: #ef7f1a !important; */
}
header {
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.796);
    position: fixed;
    width: 100%;
    top: 0;
    transition: all 0.5s;
    z-index: 997;
}
.header-main {
    width: 100%;
}
.header .logo {
    line-height: 1;
    /* background-color: white;
    padding: 10px; */
}
.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: black;
}
.header.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
  .page-two .header {
    background-color: #ffff;
  }
  .page-two .header a {
    color: rgb(0, 0, 0) !important;
    font-weight: 600;
  }
  .page-two .header.scrolled {
    background-color: white;
  }
  .page-two .header-main .scrolled {
    margin: 0 !important;
  }
  .page-two .header .logo .scrolled {
    display: flex !important;
  }
  .page-two .header.scrolled a {
    color: black !important;
  }



@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }
    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
    .header .navmenu {
        order: 3;
    }
}

/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    /* .navmenu li {
        
    } */

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 25px 10px;
    }
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: rgb(0, 0, 0) !important;
        font-size: 15px;
        padding:10px 10px;
        /* font-family: var(--nav-font); */
        font-weight: 600;
        display: flex;
        align-items: center;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
    }
    .navmenu .dropdown ul {
        margin: 0;
        background: white;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0%;
        top: 130%;
        width: 100%;
        opacity: 0;
        z-index: 99;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        display: block;
        text-align: left !important;
        color: black !important;
    }
    .navmenu .dropdown ul a img {
        padding-right: 20px;
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        margin: 0 40px;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */


@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #ffffff;
        background-color: #000000;
        padding: 0 5px;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 10px 10px 10px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navmenu a,
    .navmenu a:focus {
        color: black !important;
        padding: 10px 0px;
        /* font-family: var(--nav-font); */
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        /* background-color: #bddbfa; */
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        /* background-color: #005bbf; */
        /* color: white; */
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        /* background-color: #005bbf !important; */
        /* color: rgb(255, 255, 255); */
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 10px;
        background-color: #ff6600;
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: #0077ff10;
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #ffffff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgb(255, 255, 255);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }



    .item img {
        padding: 0 5px;
    }
    
}

.enq-btn {
    background-color: #ef7f1a;
    color: white;
    padding: 10px 14px !important;
    width: 160px;
    border-radius: 10px;
}
.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center{
    position: static !important;
}
.main-megamenu{
    background-color: #ffffff !important;
    border-top: 1px solid rgb(227, 227, 227);
}
.megamenu{
    align-items: center;
    justify-content: center;
}
.megamenu-item1 a {
    text-align: center !important;
}
.megamenu-item a {
    color: #000 !important;
}
.megamenu-item3 {
    height: 380px;
    width: 100%;
    background-color: #f1f1f1;
}
.megamenu-item3 p {
    font-size: 21px;
    font-weight: 600;
    padding: 30px 0px;
}
.one-height {
    padding:10px 20px;
}

/* banner start */

.carousel-cap {
    text-align: left !important;
    color: #000;
    margin-top: 65px;
    padding-bottom: 35px;
    /* border-bottom: 1px solid rgb(189, 187, 187); */
}
.carousel-cap h2 {
    font-size: 45px;
    font-weight: 600;
    color: #000;
}


.cap-part {
    text-align: left !important;
    color: #000;
    margin-top: 30px; 
    padding-bottom: 50px;
    /* border-bottom: 1px solid rgb(189, 187, 187);  */
    padding: 85px 0 65px;
    background: #fff4ed
}
.cap-part p {
    font-size: 17px;
    /* font-family: "Poppins", serif; */
    color: #000;
    text-align: justify;
    padding: 7px 0;
    margin-bottom: 0;
}
.cap-part h5 {
    padding: 20px 0 5px 0;
    font-size: 22px;
    font-weight: 700;
    color: #000000 !important;
}
.cap-part-1 {
    text-align: left !important;
    color: #000;
    /* margin-top: 50px;  */
    padding-bottom: 50px;
    /* border-bottom: 1px solid rgb(189, 187, 187);  */
    padding: 85px 0 65px;
    background: #fff4ed;
    border-radius: 50px;
}
.cap-part-1 p {
    font-size: 17px;
    /* font-family: "Poppins", serif; */
    color: #000;
    padding: 10px 0;
    text-align: justify;
}
.cap-part-1 h5 {
    padding: 20px 0 5px 0;
    font-size: 22px;
    font-weight: 700;
    color: #000000 !important;
}
.caro-part-1 {
    width: 100%; 
    background-color: white;
    padding: 30px 15px;
    margin-bottom: 20px;
    border-radius: 15px;
    height: 635px;
}
.caro-part-1:hover {
    box-shadow: 1px 0 11px grey;
    transition: 100ms all linear;
} 
/* .carousel-cap {
    /* text-align: left !important; */
    /* color: #000; */
    /* margin-top: 50px; 
    padding-bottom: 50px;
    /* border-bottom: 1px solid rgb(189, 187, 187); 
    padding: 70px 0;
    background: #fff4ed;
} */
/* .carousel-cap img {
    border-radius: 5px;
} */
.caro-text a:hover {
    color: #f68a1f !important;
    text-decoration: underline !important;
}
.caro-text a {
    color: #000 !important;
    text-decoration: underline !important;
}
.solution-text-1 a:hover {
    color: #f68a1f !important;
    text-decoration: underline !important;
}
.solution-text-1 a {
    color: #000 !important;
    text-decoration: underline !important;
}
.caro-text {
    width: 100%;
    margin-top: 20px;
}
.caro-part {
    width: 100%; 
    background-color: white;
    padding: 30px 15px;
    margin-bottom: 20px;
    border-radius: 15px;
    height: 610px;
}
.caro-part:hover {
    box-shadow: 1px 0 11px grey;
    transition: 100ms all linear;
} 
.caro-part-2 {
    width: 100%; 
    background-color: white;
    padding: 30px 15px;
    margin-bottom: 20px;
    border-radius: 15px;
    height: 575px;
}
.caro-part-2:hover {
    box-shadow: 1px 0 11px grey;
    transition: 100ms all linear;
} 
.caro-part-3 {
    width: 100%; 
    background-color: white;
    padding: 30px 15px;
    margin-bottom: 25px;
    border-radius: 15px;
    height: 470px;
}
.caro-part-3:hover {
    box-shadow: 1px 0 11px grey;
    transition: 100ms all linear;
} 
.caro-text h3 {
    font-weight: 700;
    color: #ef7f1a;
}
.caro-img img {
    height:500px !important; 
    width: 600px;
    object-fit: cover;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.profile-img {
    width: 75px;
    height: 76px;
    object-fit: cover;
}
.carousel-cap h1 {
    font-size: 60px;
    font-weight: 600;
    color: #000;
}
.carousel-cap h2 {
    font-size: 33px;
    font-weight: 600;
    color: #000;
}
.carousel-cap p {
    font-size: 17px;
    /* font-family: "Poppins", serif; */
    color: #000;
    padding: 10px 0;
    text-align: justify;
    margin-bottom: 0;
}
.carousel-cap h5 {
    padding: 15px 0 5px 0;
    font-size: 22px;
    font-weight: 700;
    color: #000000 !important;
}
.carousel-cap button {
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #ef7f1a;
    color: white;
}
/* .carousel-cap .slick-prev {
    left: -60px;
    background-image: url(../image1/arrow-icon-left.webp);
    display: block !important;
    position: absolute;
    top: 45%;
    z-index: 9;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    font-size: 0;
    border: 0;
    background-color: #ffffff00;
 }
.carousel-cap .slick-next {
    right: -60px;
    background-image: url(../image1/arrow-icon-right.webp);
    display: block !important;
    position: absolute;
    top: 45%;
    z-index: 9;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    font-size: 0;
    border: 0;
    background-color: #ffffff00;
 } */
.carousel-item img {
    object-fit:cover;
    animation: 4s start infinite linear;
}
.carousel {
    overflow: hidden;
    margin-top: 100px;
}
.carousel-caption {
    bottom: 36% !important;
    left: 10% !important;
    text-align: left !important;
    width: 60%;
    padding: 30px;
}
.arr-prev, .arr-next {
    background-color: #393838;
    border: none;
    padding:5px 10px;
}
.arr-prev, .arr-next i {
    color: white;
    font-size: 17px;
}
.carousel-caption-head {
    font-size: 48px;
    font-weight: 700;
    color: #ffcb05;
    line-height: 56px;
    /* font-family: "Poppins", serif; */
}
.carousel-control-next-icon i {
    font-size: 25px;
    background-color: #ef7f1a;
}
.carousel-control-prev-icon i {
    font-size: 25px;
    background-color: #ef7f1a;
}
.carousel-caption p {
    font-size: 17px;
    /* font-family: "Poppins", serif; */
}
.carousel-caption h1 {
    font-size: 55px;
    font-weight: 600;
}
.carousel-caption p {
    font-size: 18px;
    /* font-family: "Poppins", serif; */
    padding: 10px 0;
}
.carousel-caption button {
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #ef7f1a;
    color: white;
}
.carousel-item {
    overflow: hidden;
    border-radius: 50px;
}
.carousel-item img {
    height: 100vh !important;
    width: 100%;
    border-radius: 50px;
    object-fit:cover;
    animation: 4s start infinite linear;
    filter: brightness(0.6);
}

@keyframes start {
    0% {
        scale: 1.01;
    }

    20% {
        scale: 1.02;
    }

    40% {
        scale: 1.04;
    }

    60% {
        scale: 1.06;
    }

    80% {
        scale: 1.07;
    }

    100% {
        scale: 1.00;
    }
}
.caro-text-1 p {
    line-height: 28px;
    text-align: justify;
    margin-bottom: 0;
}
section.carousel-cap-1 {
    margin-top: 20px;
}




.cert-img-1 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* margin-bottom: 15px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
  
  .cert-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* scales image proportionally, cropping if needed */
    display: block;
    transition: transform 0.3s;
  }
  
  .cert-img-1 img:hover {
    transform: scale(1.05);
  }

  /* Product Engineering Life Cycle */

  .filter-main {
    padding: 50px 0;
  }
  
  /* Button container */
  .filter-buttons {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;

}
  
  /* Filter buttons */
  .filter-btn {
    position: relative;
    text-align: left;
    padding: 12px 40px 12px 0;
    font-size: 16px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    color: #222;
  }
  
  /* Right arrow */
  .filter-btn::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
  }
  
  /* ACTIVE ARROW */
  .filter-btn.active::after {
    color: #ff6600;
    transform: translateY(-50%) translateX(5px);
  }
  
  /* BOTTOM LINE */
  .filter-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 0;
    height: 3px;
    background-color: #ff6600;
    transition: width 0.3s ease;
  }
  
  /* ACTIVE BOTTOM LINE */
  .filter-btn.active::before {
    width: 100%;
  }
  .filter-btn:last-child::after {
    content: none;
  }
  
  .filter-btn:hover {
    color: #ff6600;
  }
  
  .filter-btn.active {
    color: #ff6600;
  }
  
  /* Active underline */
  /* .filter-btn.active::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0;
    top: 106px;
    width: 100%;
    height: 3px;
    background-color: #ff6600;
  } */
  
  /* Content box */
  .filter-content {
    display: none;
    padding: 10px 0;
  }
  
  .filter-content.active {
    display: block;
  }
  
  /* Heading */
  .filter-content h5 {
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 22px;    
  }
  .filter-content h6 {
    color: #000;
    font-weight: 700;
    font-size: 20px;
  }
  
  /* List styling */
  .filter-list ul {
    padding-left: 0;
    margin: 0;
  }
  
  .filter-list li {
    list-style: none;
    background-image: url("../images/ball-bearing.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px;
    padding: 6px 0 6px 36px;
    font-size: 16px;
    line-height: 1.6;
  }


/* count start */


#count {
    padding: 50px 0;
    text-align: center;
}
.count-head {
    font-size: 25px;
    color: #363435;
    font-weight: 700;
}
.count-head span {
    font-size: 35px;
    font-weight: 800;
}
.count-box {
    border-right: 2px solid grey;
}
#count p {
    font-size: 18px;
    font-weight: 500;
    font-weight: #000;
}


/* what we do */

.work-flex {
    display: flex;
    justify-content: space-between;
    background-color:#363435;
    border-radius: 10px;
    padding: 30px 80px 50px;
    color: white;
}
.work-item img {
    animation: 10s updown infinite;
}
@keyframes updown {
    0%{}
    50%{
        transform: translateY(40px);
    }
    100%{
        transform: translateY(0px);
    }
}
@keyframes sidewaves{
    0%{}
    50%{
        transform: translateX(50px);
    }
    100%{
        transform: translateX(0px);
    }
}
.work-item h2 {
    padding-top: 60px;
    font-size: 45px;
}
.work-item p {
    padding-right: 40px;
}
.work-item a {
    color: #ffffff !important;
    text-decoration: underline !important;
}
.work-item a:hover {
    color: #f68a1f !important;
    text-decoration: underline !important;
}
.work-item p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.inwork-flex {
    align-items: center;
}
.service {
    padding: 70px 0 60px 0;
    border-bottom: 1px solid rgb(197, 197, 197);
}
.service-1 {
    padding: 70px 0 75px 0;
    /* border-bottom: 1px solid rgb(197, 197, 197); */
}
.service-text {
    font-size: 25px;
    color: #000000;
    font-weight: 700;
    padding: 15px 0 8px 0;
}
.service-box {
    padding-bottom: 30px;
}
.service-box p {
    font-size: 16px;
}
.service-box a {
    color: #000;
    font-weight: 600;
}
.view-service { 
    font-weight: 600;
    color: #0f1943;
}
section#what-do {
    background: #fff4ed;
    border-radius: 50px;
}
.service-box-1 {
    background-color: #fff;
    padding: 25px 0px 0px;
    border-radius: 20px;
    /* height: 500px; */
}
.service-box-1:hover {
    box-shadow: 1px 0 11px grey;
    transition: 100ms all linear;
}
.service-box-1 p {
    font-size: 17px;
    margin-bottom: 0;
    padding-top: 10px;
    text-align: justify;
}
.service-box-1 img {
    padding:  0 15px;
}
.img-box {
    padding: 0px 15px;
        height: 420px;
}




#solution {
    margin-top: 40px;
    background: #fff4ed;
    padding: 70px 0;;
    border-radius: 20px;
}
.product-head h3 {
    font-weight: 800;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    width: 250px;
    /* color: #fff; */
}
.solution-box {
    background-color: white;
    padding: 30px 015px;
    margin-bottom: 30px;
    border-radius: 15px;
    height: 360px;
}
.solution-box:hover {
    box-shadow: 1px 0 11px grey;
    transition: 100ms all linear;
}
.solution-box-1 {
    background-color: white;
    padding: 30px 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    height: 659px;
}
.solution-text-1 {
    text-align: justify;
    font-size: 17px;
}
.solution-box-1:hover {
    box-shadow: 1px 0 11px grey;
    transition: 100ms all linear;
}
.solution-box a {
    color: #000;
    font-weight: 600;
}
.solution-box h3 {
    padding: 20px 0 5px 0;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}
.solution-text {
    text-align: justify;
}
.solution-box-1 h3 {
    padding: 20px 0 5px 0;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}
.solution-btn button {
    background-color: #ef7f1a;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 20px;
}

#projects {
    padding: 70px 0;
    position: relative;
}
.col-lg-12 {
    z-index: 20 !important;
}
.pp {
    position: sticky;
    top: 100px;
    z-index: -3;
    /* background-color: #f2f2fb; */
    border-radius: 60px;
    /* background: linear-gradient(135deg, #ef7f1a, #b9b9b9, #363435); */
    background-color: #fe7b2d;
}
.pp1 {
    position: sticky;
    top: 120px;
    z-index: -2;
    background-color: #2b2a29;
    border-radius: 60px;
}
.pp2 {
    position: sticky;
    top: 140px;
    z-index: -1;
    background-color: #fe7b2d;
    border-radius: 60px;
}
.pp3 {
    position: sticky;
    top: 160px;
    z-index: -1;
    background-color: #2b2a29;
    border-radius: 60px;
}
.pp4 {
    position: sticky;
    top: 180px;
    z-index: -1;
    background-color: #fe7b2d;
    border-radius: 60px;
}
.pp5 {
    position: sticky;
    top: 200px;
    z-index: -1;
    background-color: #2b2a29;
    border-radius: 60px;
}
.pp6{
    position: sticky;
    top: 220px;
    z-index: -1;
    background-color: #fe7b2d;
    border-radius: 60px;
}
.pp7{
    position: sticky;
    top: 240px;
    z-index: -1;
    background-color: #2b2a29;
    border-radius: 60px;
}
.projects-box{
    height: 400px;
    border-radius: 60px;
    margin-bottom: 20px;
    gap: 30px;
    padding: 20px 40px;
    align-items: center;
    justify-content: space-between;
   
}
.project-img img{
   width: 450px;
}
.project-head{
    width: 50%;
}
.project-head h4{
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}
.project-head p{
    color: #fff;
    font-weight: 500;
}

/* testimonial */
.testi-main-head{
    width: 70% !important;
    margin: 0 auto !important;
}
.testi-head{
    background-color: rgba(209, 209, 209, 0.346);
    padding: 4px;
    font-size: 13px;
    width: 220px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 1px 0 11px rgba(236, 236, 236, 0.414);
}
.cap-head{
    background-color: rgba(209, 209, 209, 0.346);
    padding: 4px;
    font-size: 13px;
    width: 120px;
    text-align: center;
    box-shadow: 1px 0 11px rgba(236, 236, 236, 0.414);
}
#testimonial{
    padding: 70px 0;
}

.testimonial-pra{
    width: 70% !important;
    margin: 0 auto !important;
    font-size: 27px;
    line-height: 38px;
}
.testimonial-pra img{
    border-radius: 50%;
}
.testimonial-name{
    gap: 30px;
    padding: 10px 0;
}
.testi-text p{
    font-size: 14px;
}
.testi-text h5{
    margin-bottom: 0;
}

/* news  */

#news {
    padding: 30px 0 70px 0;
}
.news-info {
    /* box-shadow: 1px 0 11px rgb(231 228 228); */
    box-shadow: 1px 0 11px rgb(196, 195, 195);
    border-radius: 50px;
    padding: 40px;
    margin-bottom: 20px;
    height: 545px;
}
.news-info img {
    border-radius: 10px;
}
.news-text {
    padding: 20px 0 0 0;
}
.news-text h6 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    color: rgb(140, 136, 136);
}
.news-text h5 {
    font-size: 26px;
    padding: 30px 0;
    font-weight: 700;
}
.news-text a {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #000;
}

/* footer start */

#footer {
    background-color: #2b2a29;
    padding: 40px 0 20px 0;
    /* background: linear-gradient(135deg, #ef7f1a, #949494, #363435); */
    /* border-radius: 40px 40px 0 0; */
}
.footer-add {
    padding: 10px 0;
}
.footer-logo {
    width: 230px;
    margin: 0 auto;
    /* background-color: white; */
    padding: 10px 20px;
    border-radius: 10px;
}
ul {
    padding: 0 !important;
}
#footer h3 {
    padding-bottom: 20px;
    font-weight: 700;
    color: #fff;
}
.list {
    padding: 40px 0;
}
#footer li {
    list-style: none;
    padding: 4px 0;
    color: #fff;
    font-weight: 500;
}
.footer-info {
    border-right: 2px solid #000000;
}
.footer-phone {
    border-left: 2px solid #000000;
}
hr{
    border-top: 1px solid #fff !important;
}
.footer-phone p {
    text-align: left !important;
    padding-left: 40px;
    margin-bottom: 7px !important;
    font-weight: 500;
    color: #000000;
}
.footer-info h5 {
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 22px;
    color: #000000;
}
.footer-info p {
    font-weight: 500;
    color: #000000;
}
section.footer-part {
    /* background-color: #ed882c85; */
    background-color: #fff4ed;
    border-radius: 40px 40px 0 0;
    padding: 20px 0;
}
.footer-phone a {
    color: #000000 !important;
}
.item a:hover {
    color: #ef7f1a;
}
.about-button button {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-radius: 30px;
    background-color: #ef7f1a;
    transition: all 0.3s ease-in-out;
}

.about-button button::before {
    content: "";
    position: absolute;
    background: #000000;
    border-radius: 30px;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: width 0.3s ease-in-out;
}

.about-button button:hover {
    color: #ffffff;
}

.about-button button:hover::before {
    width: 100%;
}

.about-button button:hover {
    z-index: 1;
}
#short-links {
    margin-top: 112px;
    padding: 200px 0 100px 0;
    color: white;
    background-image: url(../image1/breadcrumb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    border-radius: 50px !important;
}
#short-links::before {
    position: absolute;
    content: "";
    background-color: #000;
    border-radius: 50px !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    border-radius: 0 0 20px 20px;
}
#short-links h1 {
    position: relative;
}
#short-links p {
    position: relative;
    margin-bottom: 0;
}

/* Product Engineering Page */

.product-page{
    padding: 50px 0;
}
.pro-page-det h2{
    font-size: 22px;
    font-style: italic;
    line-height: 32px;
}
.pro-img img{
    border-radius: 10px;
}
.pro-page-det p{
    font-size: 17px;
    color: #000;
    padding: 10px 20px 0 0;
    margin-bottom: 0;
}
.big-det {
    background-color: #f5f6f7;
    padding: 50px 0;
    /* background: linear-gradient(135deg, #ef7f1a, #949494, #363435); */
    background-color: #8b8b8b;
}
/* .accordion {
    padding: 20px;
} */

.accordion-item {
    
    /* margin-bottom: 5px; */
    overflow: hidden;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    /* border-bottom: 1px solid #eaeaea; */
}

.accordion-header {
    padding: 10px 20px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

/* .accordion-header:hover {
    background-color: #e9ecef;
} */

.accordion-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
}
.accordion-header .icon {
    font-size: 28px;
    color: #2c3e50;
    transition: transform 0.3s;
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}
.accordion-content-inner {
    padding: 15px 20px 20px 20px;
    color: #000000;
    font-size: 17px;
    line-height: 26px;
}
.accordion-content-inner p {
    margin-bottom: 0px;
    padding-bottom: 10px;
}
.accordion-content-inner p:last-child{
    padding-bottom: 0;
}
.accordion-content-inner ul{
    list-style: none;
}
.accordion-content-inner ul li{
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}
.accordion-content-inner ul li::before{
    position: absolute;
    content: "\F280";
    font-family: "bootstrap-icons";
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: 600;
}
.accordion-content-inner .highlight {
    background-color: #f0f7ff;
    border-left: 4px solid #4a6491;
    padding: 15px;
    margin: 15px 0;
    font-style: italic;
}

.accordion-item.active .accordion-header {
    background-color: #fff;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(135deg);
}

.mess {
    background-color: #fe7b2d;
    position: relative;
    padding: 15px 0;
    border-radius: 10px;
}
.ashok img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    top: -50px;
    left: -25px;
    border-radius: 10px;
  }
  .asohk-mes p {
    color: #fff;
    padding-right: 30px;
    margin-bottom: 0;
    padding-bottom: 8px;
    position: relative;
    padding-left: 25px;
  }
  .asohk-mes p::before {
    position: absolute;
    content: "\F280";
    font-family: "bootstrap-icons";
    top: 0;
    left: 0;
  }
  .asohk-mess p {
    margin-left: 25px;
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 8px;
    position: relative;
    padding-left: 25px;
  }
  .asohk-mess p::before {
    position: absolute;
    content: "\F280";
    font-family: "bootstrap-icons";
    top: 0;
    left: 0;
  }
  .ashoks img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    top: -35px;
    right: -25px;
    border-radius: 10px;
  }
  .news-ashok img {
    top: -35px;
  }
  .story-time {
    padding: 50px 0;
  }
  .story-time h2 {
    padding-bottom: 40px;
    text-align: center;
  }
  .mes-bl {
    background-color: #363435;
  }

.company-info {
    text-align: center;
}
.company-head {
    background-color: #e0e0e0;
    font-size: 13px;
    text-transform: uppercase;
    width: 70px;
    padding: 3px 0;
    font-weight: 500;
    margin: 0 auto;
}
.company-info h2 {
    font-size: 40px;
    padding: 10px 0 0 0;
}
.company-info p {
    font-size: 19px;
    font-weight: 500;
}
.about-left {
    padding-right: 50px !important;
    border-right: 1px solid rgb(215, 215, 215);
    height: 380px;
}
.about-right {
    padding-left: 50px !important; height: 380px;
}
.about-right a {
    color: #000 !important;
    text-decoration: underline !important;
}
.about-right a:hover {
    color: #f68a1f !important;
    text-decoration: underline !important;
}
.com-text{
    padding: 80px 0 0 0;
    color: #ef7f1a;
}
.com-text p {
    color: #2b2a29;
}
.com-img {
    position: relative;
}
.com-img img {
    border-radius: 15px;
}
.circle-img {
    position: absolute;
    right: -12px;
    bottom: 50%;
}

.big-det {
    padding: 120px 0;
    color: white;
    border-radius: 20px;
}
.big-det h2 {
    font-size: 55px;
}
.big-det p {
    width: 80%;
    margin: 20px auto;
}

#contact-form {
    padding:80px 0;
}
.form-info {
    color: rgb(0, 0, 0);
    /* background-color: #f0822267; */
    background-color: #fff4ed;
    border-radius: 90px;
}
.form-info-text {
    padding: 50px 40px;
}
.form-info-text h2 {
    font-size: 56px;
    font-weight: 700;
}
.form-group {
    margin: 15px 0;
    border-radius: 4px !important;
}
.form-control {
   border: 1px solid grey !important;
    border-radius: 10px !important;
    padding: 8px !important;
}
.form-sec{
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 1px 0 4px grey;
}
.Submit-box{
    background-color: #000;
    border: none;
    color: white;
    padding: 6px 9px;
    border-radius: 10px;
}


/* product pages */
#product-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8f6 100%);
}
.product-showcase .product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e3ece8;
    color: #0a7f6f;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}
.product-showcase h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 16px 0 12px;
}
.product-showcase p {
    color: #364741;
}
.product-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 24px;
}
.product-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e8efec;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    color: #0d1b1e;
}
.product-highlights .highlight i {
    color: #ef7f1a;
    font-size: 18px;
}
.product-cta {
    background: #ef7f1a;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 22px;
    border: none;
}
.product-cta:hover {
    background: #d76d10;
    color: #ffffff;
}
@media (max-width: 991px) {
    #product-showcase {
        padding: 60px 0;
    }
    .product-showcase h2 {
        font-size: 32px;
    }
}
.tech-note-img {
    width: 70%;
    margin: 0 auto;
}
.tech-note-img img {
    width: 100%;
}
.product-page h3 {
    font-size: 40px;
}
.left {
    background-color: white;
    position: sticky;
    top: 0;
}
#scroll-info {
    padding: 70px 0;
    background: #fff4ed;
    /* border-radius: 50px; */
}
#scroll-info-1 {
    padding: 70px 0;
    background: #fff4ed;
    border-radius: 50px; 
}
div.sticky {
    position: sticky;
    top: 100px;
    padding: 260px 50px;
    background-color: #ffffff00;
    height: 600px;
    width: 50%;
}
  .sticky h2 {
    font-weight: 700;
    font-size: 45px;
    color: #000;
  }
  .product-info {
    float: right; 
    width: 50%; 
    padding: 30px;
    padding-left: 70px;
    padding-top: 200px;
  }
  .arrow-right {
    position: absolute;
    top: 80px;
    right: 0;
    animation: 10s sidewaves infinite;
  }
  .product-text {
    padding: 30px 0;
  }
  .product-text a {
    color: #000000 !important;
    text-decoration: underline !important;
}
.product-text a:hover {
    color: #f68a1f !important;
    text-decoration: underline !important;
}
  .product-text h4 {
    font-size: 30px;
    font-weight: 700;
    color: #ef7f1a;
  }
  .product-text img {
    width: 100%;
    padding-bottom: 15px;
  }
  .product-text ul {
    list-style: none;
}
.product-text ul li {
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    padding-left: 25px;
}
.product-text ul li::before {
    position: absolute;
    content: "\F280";
    font-family: "bootstrap-icons";
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ef7f1a;
    margin-top: 6px;
}
.project-head {
    color: white;
}
.project-head ul {
    list-style: none;
}
.project-head ul li {
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    padding-left: 25px;
}
.project-head ul li::before {
    position: absolute;
    content: "\F280";
    font-family: "bootstrap-icons";
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 0;
    color: rgb(255, 255, 255);
}
.projects-box1 {
    height:100%;
    border-radius: 60px;
    margin-bottom: 20px;
    gap: 30px;
    padding: 30px 40px;
    align-items: center;
    justify-content: space-between;
}
.story-img img {
    border-radius: 30px;
}
.algorithm-info {
    height: 570px;
}
.service-box1 {
    background-color: #f4f4f4;
    padding: 20px;
    box-shadow: 1px 0 6px grey;
    height: 96%;
    border-radius: 15px; 
}
.service-box1 img {
    width: 80%;
    margin: 0 auto;
}
.about-list-info ul {
    list-style: none;
}
.about-list-info ul li {
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    display: flex;
}
.about-list-info ul li::before {
    position: absolute;
    content: "\F280";
    font-family: "bootstrap-icons";
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 0;
    color: #ef7f1a;
}
.expertise p {
padding: 0;
text-align: justify;
margin-bottom: 10px;
line-height: 30px;
padding-top: 7px;
}
.expertise h5{
    color: #ff6600 !important;
    font-weight: 700;
}
.expertise h6 {
    font-weight: 700;
}
.read-more {
    margin-bottom: 10px;
    text-decoration: underline;
}
.link-button button {
    background-color: transparent !important;
    color: #ef7f1a;
    font-weight: 600;
    padding: 0;
    border: none;
    text-decoration: underline;
    margin-bottom: 30px;
}
.flex-product{
    display: flex;
}
.news-box {
    margin-top: 20px;
    padding: 25px 15px 0 15px;
    border-radius: 10px;
    height: 385px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    box-shadow: 1px 0 11px rgb(196, 195, 195);
}
.news-box-1 {
    border-bottom: 1px solid rgb(208, 208, 208);
    margin-bottom: 20px;
    box-shadow: 1px 0 5px grey;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    margin-top: 20px;
}
.extra-pages{
    margin-top: 40PX;
}
.extra-pages a {
    padding: 10px 20px;
    margin: 0 4px;
    background-color: #000;
    color: white !important;
    font-weight: 600;
}
.extra-one{
    background-color: #ef7f1a !important;
}
.post-links{
    padding: 5px 0 20px 0;
    margin-bottom: 20px;
    border-radius: 15px;
}
.post-links li{
    list-style: none;
    padding: 10px;
    border-bottom: 1px solid rgb(204, 204, 204);
}
.post-links a{
    color: #000 !important;
    font-weight: 500;
}
.post-links a:hover{
    color: #ef7f1a;
}
#policy{
    box-shadow: 1px 0 11px grey;
    color: #ffffff;
    background-color: #000;
}
#policy a{
    color: white !important;
}
.policy-links{
    padding-top: 14px;
}
.career-btn{
    display: flex;
    gap: 20px;
}
.career-btn1 {
    background-color: rgb(228, 228, 228);
    padding: 20px 30px;
    text-align: center;
    color: #000;
    margin: 10px 0 20px 0;
}
.career-btn1 a{
    color: black;
    font-size: 19px;
    font-weight: 700;
}
.black-btn{
    background-color: #ef7f1a;
}
.accordion-header {
    width: 780px;
}
.accordion-body{
    width: 780px;
}
.accordion-button{
    width: 780px !important;
}
.footer-phone a img{
    background-color: #000;
    padding: 4px;
    border-radius: 5px;
}
.footer-phone a img:hover {
    background-color: #ef7f1a;
}
#footer a {
    color: white !important;
}
.machine-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.contact-page {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
    gap: 20px;
}
.contact-box {
    width: 50%;
}
.contact-box h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background-color: #ef7f1a;
    padding: 10px 0;
    border-radius: 10px 10px  0 0;
    margin: 0;
    color: #fff;
}
  .contact-box p {
    padding: 20px;
    text-align: center;
    border: 1px solid #d8d8d8;
    background-color: #0066000d;
    box-shadow: 1px 0 5px rgb(168, 167, 167)y;
    height: 180px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    color: #101010;
  }
  .table-main thead {
    background: linear-gradient(90deg, #ef7f1a, #fc7600);
    color: white;
    text-align: left;
    font-size: 16px;
}

.table-main th, .table-main td {
    padding: 14px 18px;
}

.table-main tbody tr {
    background: #ffffff;
    transition: 0.3s ease;
}

.table-main tbody tr:nth-child(even) {
    background: #f5f8ff;
}

.table-main tbody tr:hover {
    background: #e9f2ff;
    cursor: pointer;
}

.job-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Segoe UI", sans-serif;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.job-table thead {
    background: linear-gradient(90deg, #ef7f1a, #fc7600);
    color: white;
    text-align: left;
    font-size: 16px;
}
.job-table th, .job-table td {
    padding: 14px 18px;
}
.job-table tbody tr {
    background: #ffffff;
    transition: 0.3s ease;
}
.job-table tbody tr:nth-child(even) {
    background: #f5f8ff;
}
.job-table tbody tr:hover {
    background: #e9f2ff;
    cursor: pointer;
}
.apply-btn {
    background: #ef7f1a;
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s ease;
}
.apply-btn:hover {
    background: #fc7600;
}



/* ===== Inquiry Form Styling ===== */

.counselling form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    text-align: left;
    margin-top: 20px;
}

.counselling form label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

.counselling form input,
.counselling form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fafafa;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Input focus effect */
.counselling form input:focus,
.counselling form textarea:focus {
    border-color: #007bff;
    background: #fff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* Submit Button */
.counselling form button {
    width: 200px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #ef7f1a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counselling form button:hover {
    background: #000000;
}

/* Titles */
.get {
    font-size: 22px;
    color: #333;
}

.fill {
    font-size: 16px;
    color: #555;
}
.form-info-text a{
    color: #000;
    font-weight: 500;
}




/* Form container on mobile */
@media (max-width: 768px) {

    .counselling form {
        padding: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px){

    .contact-page {
        flex-wrap: wrap;
        gap: 10px;
    }
    .contact-box {
        width: 100%;
    }
    .table-main {
        overflow-x: scroll !important;
    }
    .megamenu-item3 {
        display: none;
    }
    .megamenu-item {
        display: none;
    }
    .one-height {
        padding: 0px;
    }
    .item img {
        padding-right: 6px;
    }
    .caro-img img {
        height: 400px !important;
        margin-top: 20px;
    }
    .enq-btn {
        display: none;
    }
    .carousel-caption h1 {
        font-size: 24px;
    }
    .carousel-caption {
        width: 95%;
        bottom: 15% !important;
        left: 5% !important;
    }
    .work-flex {
        flex-wrap: wrap;
        padding: 20px 20px 49px 20px;
        justify-content: center;
    }
    .work-item h2 { 
        font-size: 28px;
        padding-top: 20px;
    }
    .work-item img {
        width: 100%;
    }
    .service{
        padding: 50px 0 0 0;
    }
    .service-box {
        padding-bottom: 30px;
    }
    #solution {
        padding: 30px 0 45px;
    }
      #projects {
        padding: 40px 0 0;
    }
    .projects-box {
        height: 100%;
        padding: 30px 10px;
        gap: 0;
        flex-wrap: wrap;
    }
    .project-head {
        width: 100%;
    }
    .pp {
        top: 100px;
        position: static;
        margin-bottom: 20px;
    }
    .pp1 {
        top: 100px;
        position: static;
        margin-bottom: 20px;
    }
    .pp2 {
        top: 100px;
        position: static;
        margin-bottom: 20px;
    }
    #testimonial {
        padding: 10px 0 10px 0;
    }
    .testimonial-pra {
        width: 93% !important;
        font-size: 20px;
        line-height: 29px;
    }
    .list {
        padding: 10px 0;
    }
    #count {
        padding: 40px 0 10px 0;
    }
    #count p {
        margin-bottom: 34px;
    }
      #news {
        padding: 10px 0 35px;
    }
    .news-text h5 {
    padding: 25px 0;
}
    .footer-logo {
        padding: 40px 0;
    }
    .footer-info {
        border: none;
    }
    .footer-phone {
        border: none;
    }
    .footer-phone p {
        padding: 0 20px;
    }
    .carousel-control-prev-icon {
        display: none !important;
    }
    .carousel-control-next-icon {
    display: none !important;
   }
   .project-head h4 {
    font-size: 26px;
}
    .caro-part-2 {
        height: auto !important;
    }
    .cap-part p {
    padding: 0px 0;
}
section.carousel-cap-1 {
    margin-top: 0px;
}
    #scroll-info {
        padding: 50px 0 40px;
    }

 /* inner-pages */
 
 .caro-text h3 {
    font-size: 18px;
 }
 .caro-text{
    margin: 0;
 }
 .carousel-cap {
    margin-top: 40px;
    padding-bottom: 40px;
 }
 .flex-product {
    display: block;
 }
 div.sticky {
    height: auto;
    width: 100%;
    padding: 0;
    position: relative;
    top: 0;
}
 .product-info {
    padding: 20px 0 0;
    float: none;
    width: 100%;
 }
 .sticky h2 {
    font-size: 28px;
 }
 .product-text {
    padding: 0;
 }
 .arrow-right {
    top: -100px;
    right: 190px;
 }
 .arrow-right img {
    display: none;
 }
 .projects-box1 {
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0px;
    gap: 10px;
    margin-bottom: 20px;
 }
 .pp {
    position: static;
    border-radius: 40px;
 }
 .pp1 {
    position: static;
    border-radius: 40px;
 }
 .pp2 {
    position: static;
    border-radius: 40px;
 }
 .pp3 {
    position: static;
    margin-bottom: 20px;
    border-radius:  40px;
 }
 .pp4 {
    position: static;
    margin-bottom: 20px;
    border-radius:  40px;
 }
 .pp5 {
    position: static;
    border-radius: 20px;
    margin-bottom: 20px;
 }
 .algorithm-info {
    height: 100%;
 }
 .company-info h2 {
    font-size: 23px;
 }
 .company-info p {
    font-size: 16px;
 }
 .about-left {
    height: 100%;
    padding: 0 20px !important;
 }
 .about-right {
    height: 100%;
    padding: 20px !important;
 }
 .work-item p {
    padding: 0;
 }
 .circle-img {
    position: static;
    display: none;
}
 .header-main {
    padding: 10px 0;
 }
 .career-btn {
    display: block;
 }
.table-main {
    overflow-x: scroll;
}
.accordion-header {
    width: 100%;
}
.accordion-body {
    width: 100%;
}
.accordion-button {
    width: 100% !important;
}
.form-info-text h2 {
    font-size: 35px;
}
.form-info {
    border-radius: 40px;
}
.form-info-text {
    padding: 35px 25px;
}    
#contact-form {
      padding: 40px 0 60px !important;
}
.product-text h4 {
    font-size: 21px;
}
.caro-part-3 {
    padding: 25px 15px;
    height: auto !important;
}
.cap-part {
    padding: 80px 0 55px;
    margin-top: 20px;
}
.caro-part {
    height: auto !important;
}
.link-button button {
    margin-bottom: 10px;
}
.service-box-1 {
        /* padding: 20px 15px; */
        height: auto !important;
        margin-bottom: 20px;
    }
.solution-box-1 {
    height: auto;
}
.footer-info p {
    margin-bottom: 0;
}
.footer-logo {
    padding: 35px 0;
}
.big-det h2 {
    font-size: 37px;
}
.big-det p {
    width: 100%;
    margin: 15px 0 30px;
}
#short-links {
    margin-top: 87px;
    padding: 145px 0 140px 0;
}
.img-box {
    padding: 5px 15px 20px;
    height: auto;
}
.service-text {
    font-size: 27px;
}
    .caro-part-1 {
        height: auto !important;
    }
    .cap-part-1 p {
    margin-bottom: 0;
    padding: 0;
}
#scroll-info-1 {
    padding: 60px 0;
}
.carousel-cap h2 {
        font-size: 29px;
    }
        section.footer-part {
        padding: 35px 0 30px !important;
    }
    .filter-btn {
    padding: 6px 35px 7px 0;
}
    .filter-buttons {
        gap: 20px !important;
    }
.page-partcontact h4 {
    margin-top: 10px !important;
}
}

@media only screen and (min-width: 768px) and (max-width: 1200px){

    .contact-page {
        flex-wrap: wrap;
        gap: 10px;
    }
    .contact-box {
        width: 100%;
    }
    .enq-btn {
        display: none;
    }
    .carousel-caption h1 {
        font-size: 50px;
    }
    .carousel-caption {
        width: 95%;
        bottom: 15% !important;
        left: 7% !important;
    }
    .work-flex {
        flex-wrap: wrap;
        padding: 20px 20px 45px 20px;
        justify-content: center;
    }
    .work-item h2 {
        font-size: 30px;
        padding-top: 20px;
    }
    .work-item img {
        width: 100%;
    }
    .service {
        padding: 50px 0 0 0;
    }
    .service-box {
        padding-bottom: 30px;
    }
    #solution {
        padding: 30px 0;
    }
    #projects {
        padding: 30px 0px 20px;
    }
    .projects-box {
        height: 100%;
        padding: 30px 20px;
        gap: 0;
        justify-content: center;
    }
    .project-head {
        width: 100%;
    }
    .pp {
        top: 100px;
        position: static;
        margin-bottom: 20px;
    }
    .pp1 {
        top: 100px;
        position: static;
        margin-bottom: 20px;
    }
    .pp2 {
        top: 100px;
        position: static;
        margin-bottom: 20px;
    }
    #testimonial {
        padding: 10px 0 30px 0;
    }
    .testimonial-pra {
        width: 93% !important;
        font-size: 20px;
        line-height: 29px;
    }
    .list {
        padding: 10px 0;
    }
    #count {
        padding: 40px 0 10px 0;
    }
    #count p {
        margin-bottom: 34px;
    }
    #news {
        padding: 30px 0;
    }
    .footer-logo {
        padding: 40px 0;
    }
     /* inner-pages */
 .caro-text h3 {
    font-size: 18px;
 }
 .caro-text {
    margin: 0;
 }
 .carousel-cap {
    margin-top: 40px;
    padding-bottom: 30px;
 }
 #scroll-info {
    padding: 60px 0;
}
     #contact-form {
        padding: 60px 0 70px;
    }
.footer-info p {
   padding: 0 8px 0 0;
   margin-bottom: 0;
}
 .flex-product {
    display: block;
 }
 div.sticky {
    height: auto;
    width: 100%;
    padding: 0;
    position: relative;
    top: 0px;
}
 .product-info {
    float: none;
    width: 100%;
    padding: 20px 0 0;
 }
 .sticky h2 {
    font-size: 35px;
 }
 .product-text {
    padding: 0;
 }
 .arrow-right {
    top: -100px;
    right: 190px;
    width: 100px;
 }
 .arrow-right img {
    width: 100px;
    display: none;
 }
 .projects-box1 {
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0px;
    gap: 10px;
    margin-bottom: 20px;
 }
 .pp{
    position: static;
 }
 .pp1{
    position: static;
 }
 .pp2 {
    position: static;
 }
 .pp3 {
    position: static;
    margin-bottom: 20px;
 }
 .pp4 {
    position: static;
    margin-bottom: 20px;
 }
 .pp5 {
    position: static;
    margin-bottom: 20px;
 }
 .algorithm-info {
    height: 100%;
 }
.carousel-cap p {
    padding: 10px 0 15px;
}
 .company-info h2 {
    font-size: 23px;
 }
 .company-info p{
    font-size: 16px;
 }
 .about-left{
    height: 100%;
    padding: 0 20px !important;
 }
 .about-right{
    height: 100%;
    padding: 20px  !important;
 }
 .work-item p {
    padding: 0;
 }
 .circle-img{
    position: static;
    display: none;
 }
 .table-main {
   overflow-x: scroll;
}
.accordion-header{
    width: 100%;
}
.accordion-body {
    width: 100%;
}
.accordion-button{
    width: 100% !important;
}
.header.scrolled {
    padding: 8px 0;
}
.service-box-1 {
    height: 605px;
    margin-bottom: 20px;
}
.big-det h2 {
    font-size: 47px;
}
.big-det {
    padding: 85px 0;
}
.form-info-text h2 {
    font-size: 45px;
}
.form-info-text {
    padding: 50px 30px;
}
.footer-phone p {
    padding-left: 21px;
}
header {
    padding: 10px 0 0 0;
}
#short-links {
    margin-top: 85px;
    padding: 135px 0 130px 0;
}
.carousel-cap h5 {
    padding: 10px 0 5px 0;
    font-size: 20px;
}
.post-links {
    margin-bottom: 0px;
}
.caro-part-3 {
    height: 570px;
}
.com-img img {
    width: 100%;
}
.megamenu-item3 p {
    font-size: 20px !important;
    padding: 15px 15px;
    margin-bottom: 0;
}
.one-height {
    padding: 10px 0px !important;
}
#footer h3 {
    font-size: 26px;
    padding-bottom: 5px;
}
.carousel-cap h2 {
    font-size: 30px;
}
.solution-box-1 {
    padding: 30px 15px;
    height: 795px;
}
.project-head h4 {
    font-size: 33px;
}
.caro-part-1 {
    height: 650px;
}
.caro-part {
    height: 735px;
}
.caro-part-2 {
    height: 630px;
}
.product-text h4 {
    font-size: 27px;
}
.filter-btn {
    padding: 12px 32px 12px 0;
}
.news-box {
    height: 415px;
}
.megamenu-item3 {
    height: 315px;
}
.contactborder {
    height: 400px !important;
}


}


@media (max-width: 768px) {

    .job-table thead {
        display: none; /* Hide table header */
    }
    .job-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 6px;
    }
    .job-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 5px;
        border: none;
        border-bottom: 1px dashed #ccc;
    }
    .job-table td:last-child {
        border-bottom: none;
    }
    .job-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #444;
        margin-right: 10px;
    }
    .news-box-1 {
    padding: 10px 10px 10px 10px;
}

    /* Accordion inside responsive card */
    .accordion-button {
        font-size: 16px;
        padding: 10px 0;
    }
    .caro-img {
    margin-top: 40px;
}
.solution-box {
    height: 372px;
}
    .solution-box-1 {
        padding: 30px 15px;
        height: 695px;
    }
    .footer-logo {
    width: 235px;
}
section.footer-part {
    padding: 35px 0;
}
    .list {
        padding: 10px 0 0;
    }
    .footer-info h5 {
    font-size: 24px;
}
    .caro-part-1 {
        height: 608px;
    }
    .caro-part-3 {
        height: 500px;
    }
    .cap-part h5 {
    font-size: 20px;
}
    .caro-part {
        height: 630px;
    }
    .caro-text-1 p {
    margin-top: 10px;
}
.caro-part-2 {
        height: 578px;
    }
        .news-box {
        height: auto;
    }
        .carousel-cap h5 {
        padding: 28px 0 5px 0;
    }
    .contactborder {
    height: auto !important;
    margin-bottom: 20px;
}
    .service-box-1 {
        height: 440px;
    }

   
}



@media only screen and (max-width: 991px) {

    .filter-buttons {
        gap: 20px;
        flex-wrap: wrap;
    }

}




@media only screen and (max-width: 767px) {

    .solution-box {
        height: auto;
    }
    .news-info {
    height: auto;
    padding: 40px 25px;
}
    #footer h3 {
        font-size: 27px;
        padding-bottom: 5px;
    }
    .com-text p {
    margin-bottom: 0;
}
.big-det {
    padding: 75px 0;
}
 #contact-form {
        padding: 50px 0 70px;
    }
        .solution-box-1 {
        padding: 30px 15px;
        height: auto;
    }

}




/* -------- Mobile Screens -------- */
@media (max-width: 480px) {

    .apply-btn {
        width: 100%;
        text-align: center;
    }
    .job-details th {
        width: 120px;
        font-size: 13px;
    }
    .job-details td {
        font-size: 13px;
    }
    #short-links {
    margin-top: 88px;
    padding: 140px 0 140px 0;
    } 
    .big-det {
    padding: 75px 0;
    }
    .big-det h2 {
    font-size: 28px;
    line-height: 30px;
    }
    .big-det p {
    width: 100%;
    margin: 20px auto;
    }
    .service-box-1 {
        height: auto;
        margin-bottom: 20px;
    }
    .service-1 {
    padding: 70px 0 60px 0;
    }
   #footer h3 {
    padding-bottom: 5px;
   }
   .carousel-cap h2 {
        font-size: 29px;
    }
    .about-button {
    padding-top: 10px;
}
    .caro-img {
        margin-top: 30px;
    }
        #count {
        padding: 20px 0 10px 0;
    }
        .service-text {
        font-size: 23px;
    }
    .product-head h3 {
    padding-bottom: 5px;
    width: 240px;
    font-size: 25px;
}
.carousel-cap h5 {
    font-size: 23px;
}
    .carousel-cap {
        margin-top: 30px;
        padding-bottom: 40px;
    }
    .news-box {
    padding: 25px 15px 10px 15px;
}
.post-links {
    padding: 5px 0 10px 0;
    margin-bottom: 15px;
}
    

}
@media only screen and (min-width: 1201px) and (max-width: 1400px){
    
    .contact-box {
        width: 40%;
    }
    .contact-page {
        flex-wrap: wrap;
    }
}


/* footer */
footer .container {
    max-width: 1340px;
}

footer {
    /* background-image: url(../images/footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-attachment: fixed; */
    position: relative;
    padding-top: 50px;
    background-color: #00173c
}

/* footer::before{
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.85;
} */
footer h2 {
    color: #fff;
    font-size: 30px;
    position: relative;
}

.line-shape {
    padding-top: 50px;
    position: relative;
}

.foot-logo {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
    margin: 0 auto;
}

.first-foot p {
    color: #fff;
    font-size: 16px;
    padding-top: 20px;
    text-align: justify;
    line-height: 28px;
    position: relative;
}

.second-foot h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 28px;
    /* font-family: "Teko", serif; */
    position: relative;
}

/* .second-foot{
    padding-left: 30px;
} */
.brand-foot {
    padding-left: 10px;
}

.second-foot ul>li>a {
    color: #fff;
    transition: 0.3s all ease;
    font-size: 14px;
}

.second-foot ul>li {
    padding-bottom: 10px;
    position: relative;
}

.second-foot ul>li>a>i {
    color: #fff;
    font-size: 14px;
    transition: 0.3s all ease;
}

.second-foot ul>li:hover>a {
    color: #005B8A;
    padding-left: 3px;
}

.second-foot ul>li:hover>a>i {
    color: #005B8A;
}

.third-foot h3 {
    color: #f9f9f9;
    margin: 0 0 28px;
    position: relative;
    font-size: 24px;
    font-weight: 500;
    /* font-family: "Teko", serif; */
    position: relative;
}

.third-foot address {
    margin-bottom: 0;
    color: #fff;
    line-height: 32px;
    font-size: 14px;
    position: relative;
}

.final-contact {
    display: flex;
    padding-bottom: 10px;
    position: relative;
}

.location-time {
    padding-right: 15px;
}

.location-time i {
    position: relative;
    top: 2px;
    color: #fff;
    font-size: 14px;
}

.final-contact a {
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.final-contact a:hover {
    color: #005B8A;
}

.final-contact h6 {
    color: #fff;
    font-size: 22px;
}

.social a {
    background-color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 5px;
    margin-top: 10px;
    transition: 0.5s ease;
}

.social a i {
    color: #00173c;
}

.social a:hover {
    background-color: #005B8A;
}

.social a:hover i {
    color: #fff;
}

.jay {
    color: #fff;
}

.third-f {
    padding-left: 0px;
    position: relative;
}

.copy {
    margin-top: 35px;
    padding-top: 20px;
    /* border-top: 1px solid #e5e5e5; */
    padding-bottom: 20px;
    position: relative;
    background-color: #0d2342;
    box-shadow: rgba(187, 187, 187, 0.35) 0px 5px 15px;
}

.copyt {
    color: #fff;
    font-size: 15px;
}

.vinayak {
    text-align: right;
    color: #fff;
    font-size: 15px;
}

.vinayak a {
    color: #fff;
    transition: 0.3s all ease;
}

.vinayak a:hover {
    color: #005B8A;
}

/* footer>.container {
    max-width: 1260px;
} */
.first-foot {
    padding-right: 15px;
}

/* .copy>.container {
    max-width: 1260px;
} */
.enq {
    margin-top: 0;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 25px;
    display: inline-block;
    font-size: 16px;
    transition: 0.3s ease;
    position: relative;
}

.enq:hover {
    background-color: #005B8A;
    border: 1px solid #005B8A;
}

.recent-post {
    display: flex;
    align-items: center;
    padding-top: 5px;
    /* border-bottom: 1px solid #fff; */
    padding-bottom: 30px;
}

.post-img {
    width: 85px;
}

.post-det {
    width: calc(100% - 85px);
    padding-left: 20px;
}

.post-det h6 {
    color: #fff;
    font-size: 15px;
    font-weight: normal;
}

.post-det h5 {
    color: #fff;
    font-size: 14px;
    padding-top: 7px;
    line-height: 26px;
}

.client-time h2 {
    color: #fff;
    padding-bottom: 40px;
    /* font-family: "Teko", serif; */
    font-size: 38px;
    text-align: center;
}

.comp-nav {
    width: 240px;
}
.comp-navs{
    width: 170px;
}

.drop-down-nav-sub-1 {
    padding-top: 8px;
}   





.single-contact{margin-bottom:20px;border-radius:8px;position:relative;padding-left:60px}
.contact-content h4{color:#030202;margin-top:0;font-size:17px;font-weight:bold;margin-bottom:5px}
.contact-content h4 span{font-weight:500;}
.contact-content p{color:#030202;margin-top:0;font-size:17px}
.contact-content{color:#222}
.contact-content a{color:#222}
.contact-content a:hover{color:#ef7f1a; font-weight:bold; }

.contact-icon {
    background: #ef7f1a ;
    color: #fff;
    height: 38px;
    line-height: 32px;
    text-align: center;
    width: 37px;
    font-size: 18px;
    margin-top: 9px;
    position: absolute;
    left: 10px;
    top: -10px;
}

.iconfas{color:#ef7f1a;padding-right:10px;}
.iconfascc{color:#016C01;}
.page-partcontact h3{color:#ef7f1a;font-weight:600;font-size:35px; padding-bottom:15px;
margin-top: 55px;}
.page-partcontact h4{color:#ef7f1a;font-weight:600;font-size:35px; padding-bottom:15px;
margin-top: 30px;}
.page-partcontact h3 span{color:#ef7f1a;font-weight:600;}
.contactborder {
    border: 1px solid #ccc;
    padding: 22px;
    /* margin: 15px; */
    border-radius: 10px;
    height: 360px;
}
.contact-content iframe{width:100%;height:450px;border-radius:15px}
.get-touch-bg{background-color:#f3f3f3;background-image:url(../images/world-contact.png);background-repeat:no-repeat;background-position:left bottom;padding:70px 0 60px 0}

.sales{font-size:22px;color:#ef7f1a;display:inline-block; padding-bottom:15px;}

.message-box02{background-color:#fee2e4; padding:40px; border-radius:30px;}
.marker{background: #ef7f1a;
    color: #fff;
    height: 32px;
    line-height: 32px;
    text-align: center;
    width: 32px;
    font-size: 18px;
	 display:inline-block;margin-right:5px;
	 
}