
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*{
    margin: 0;
    padding: 4;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    font-family: "Open Sans", sans-serif;

}
body {
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
    font-size: 17px;
    font-family: "Open Sans", sans-serif;
    top: 0;
}
html{
    scroll-behavior: smooth;
}
ul {
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
   font-family: "Bai Jamjuree", sans-serif;
}
p {
    margin: 0;
    padding: 0;
    color: #000;
    
}

.topbar {
    position: relative;
    z-index: 100;
    padding: 15px 0
}

.topbar-contact-info {
    padding-left: 60px
}

.topbar-contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.topbar-contact-info ul li {
    display: inline-block;
    margin-right: 20px;
    color: #fff;
    font-size: 14px
}

.topbar-contact-info ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

.topbar-contact-info ul li i {
    color: #7398ff;
    margin-right: 6px
}

.topbar-contact-info ul li:last-child {
    margin-right: 0
}

.topbar-contact-info ul li {
    display: inline-block;
    margin-right: 20px;
    color: #fff;
    font-size: 14px
}

/* Header Menu */

header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
    width: 100%;
        padding: 9px 0;
}

/* header .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
} */

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 0 0 auto;
    width: 250px;
}

.logo img {
    width: 100%;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: block;
    padding: 40px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
}

.menu-link::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 1px;
    background: #003954;
    bottom: calc(0.3rem * -1);
    left: 0px;
    transition: width 0.3s;
    top: 73px;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link i {
    font-size: 17px;
}

.menu-link:hover {
    color: #003954;
}

.has-megamenu {
    position: static;
}

.megamenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid #003954;
    height: calc(100vh - 80px); /* navbar ni height minus karo */
    overflow-y: auto;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.product-column {
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 8px;
}

.product-list {
    list-style: none;
}

.product-item {
    margin-bottom: 12px;
    position: relative;
}

.product-link {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 17px;    
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: transparent;
    font-weight: 500;
}

.product-link:hover {
    background-color: #003954;
    color: #ffffff;
    transform: translateX(5px);
}

.image-column {
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
}

.product-image:hover {
    transform: scale(1.05);
}
.read-button {
    text-align: center;
    /* border: 1px solid; */
    margin-top: 18px;
    margin-bottom: 11px;
}
.read-button a {
    color: #003f88;
    font-size: 17px;
    font-weight: 600;
    padding: 6px;
    border: 2px solid;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 29px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #003954;
}



.hamburger-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 22px;
    display: none
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 5px;
    position: relative;
    z-index: 9;
    cursor: pointer;
    height: 100%;
    width: 30px
}

.bar {
    width: 30px;
    height: 2px;
    position: relative;
    background-color: #000;
    transition: 0.3s
}

.bar:nth-child(2) {
    width: 15px
}

.header-contact .bar:nth-child(2) {
    transform: translateX(-40px);
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    background-color: #000
}

.header-contact .bar:nth-child(1) {
    transform: rotate(135deg);
    top: 8px;
    position: relative;
    background-color: #000
}

.header-contact .bar:nth-child(3) {
    transform: rotate(225deg);
    top: -6px;
    background-color: #000;
    position: relative
}

.sticky header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: 0 0 40px #000;
    animation: sticky-header 1s;
    width: 100%;
    background-color: #fff
}

@keyframes sticky-header {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}









/* Banner */

#banner {
    display: block;
    overflow: hidden;
    width: 100%
}

.banner-slides {
    position: relative;
    overflow: hidden
}

.banner-slides .banner-slide-img {
    width: 100%;
    height: auto;
}

.banner-slides::before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgb(0 57 92) 0%, rgb(0, 0, 0) 117.71%);
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    opacity: .85;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    z-index: 999
}

.banner-content-main {
    position: relative;
    z-index: 9;
    width: 100%
}

.banner-text {
    color: #fff;
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 25px
}

.banner-text h5 {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s;
    font-size: 41px;
    color: #fff;
    z-index: 999;
    position: relative;
    text-align: left
}

.banner-text h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
    color: #fff;
    position: relative;
    z-index: 999;
    font-size: 80px;
    font-weight: 500;
    text-align: left
}

.banner-text h1 {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
    color: #fff;
    position: relative;
    z-index: 999;
    font-size: 80px;
    font-weight: 500;
    text-align: left
}

.banner-text p {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
    color: #fff;
    position: relative;
    z-index: 999;
    font-size: 24px;
    text-align: left;
    /* padding: 0 108px */
}

.banner-main .slick-active .banner-text h5 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s
}

.banner-main .slick-active .banner-text h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s
}

.banner-main .slick-active .banner-text h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s
}

.banner-main .slick-active .banner-text p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.3s
}

.banner-main .slick-active .banner-content-main::before {
    transform: translate(-50%,-50%) scale(1.1);
    opacity: .8;
    transition-delay: 0.8s
}

.banner-main .slick-initialized .slick-slide {
    overflow: hidden
}

.slick-active .banner-slide-img {
    animation: zoom-in-out 12s linear infinite alternate
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
        transform-origin: center
    }

    100% {
        transform: scale(1.2);
        transform-origin: center
    }
}

.banner-main .slick-active .banner-home-logo img {
    transition-delay: 0.3s
}

.banner-home-logo {
    width: 184px;
    padding-bottom: 20px;
    margin-left: 25px;
    position: relative;
    top: 89px;
    left: 629px
}

.banner-home-logo img {
    width: 100%;
    transition: 1s
}

.content .sub-title {
    position: relative;
    display: inline-block;
    font-size: 22px;
    border: 3px solid #d7d6d6;
    margin-bottom: 14px;
    margin-top: 7px;
    padding: 6px 24px;
    text-align: center;
    line-height: 30px;
    color: #000;
    font-weight: 600;
}

.content h2 {
    font-size: 33px;
    line-height: 1.2em;
    font-weight: 600;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #df1119
}

.content h2 span {
    color: #21305a
}

.content h5 {
    color: #002440;
    font-size: 23px;
    padding-bottom: 6px
}

.content p {
    line-height: 28px;
    color: #444;
    font-size: 17px;
    padding-bottom: 5px;
    text-align: justify;
    position: relative
}





/* about-us */

.about-part h1 {
    font-size: 43px;
    padding: 6px 0 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 14%);
    color: #96562d;
    font-family: "Rajdhani", sans-serif;
    font-weight: bold;
    /* text-align: center; */
}
.content h2 span {
    color: #660b08;
}
.content h2 {
    font-size: 57px;
    line-height: 37px;
    font-weight: 700;
    padding-top: 9px;
    padding-bottom: 12px;
    color: #175075;
    background-image: linear-gradient(#122b66, #117abb);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 10%);
    font-family: "Bai Jamjuree", sans-serif; 
    /* font-family: "Open Sans", sans-serif; */
}
.about-part h3 {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 31px;
    position: relative;
    text-align: justify;
    color: #727272;
    font-weight: 600;
}
.about-part h3:before {
    position: absolute;
    content: '';
    width: 12%;
    height: 2px;
    left: 33%;
    top: 72%;
    background-color: #747474;
}
section.about-part {
    /* margin-top: 70px; */
    padding-bottom: 120px;
    background-attachment: fixed;
    background-image: url(../images/choose-us-background.webp);
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 70px;
    top: -9px;
}
.content p {
    text-align: justify;
    line-height: 33px;
    color: #000;
}
.about-sec {
    padding-top: 50px;
}
.read {
    text-align: justify;
    /* display: flex; */
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}
.read a {
    position: relative;
    padding: 14px 16px;
    font-weight: 700;
    text-decoration: none;
    font-size: 17px;
    transition: 0.25s;
    box-shadow: 0 4px 10px #001b3ac2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #6a6a6a;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 1;
    margin-top: 14px;
    background-color: #6a6a6a;
    color: #fff;
}
.read a::before {
    position: absolute;
    content: "";
    background-color: #b07333;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: top right;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}  
.read a:hover::before {
    transform: scale(1, 1);
    transform-origin: bottom left;
}    
.read a:hover {
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.read a i {
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 7px 0;
    color: #004666;
}
.sub-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    border: 3px solid #d5d5d5;
    margin-bottom: 14px;
    margin-top: 7px;
    padding: 6px 24px;
    text-align: center;
    line-height: 30px;
    color: #6e6d6d;
    font-weight: 500;
      font-family: "Nunito Sans", sans-serif;
}
.sub-title::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 19px;
    height: 14px;
    background-image: url(../images/arrow-about.png);
    transform: translateX(-50%);
}
.image-2 {
    position: absolute;
    /* left: -80px; */
    overflow: hidden;
    max-width: 293px;
    margin-bottom: 0;
    animation: bounce 6s linear infinite;
    right: 0%;
    top: -10%;
}
  
@keyframes bounce {
  
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-30px);
    }
  
    100% {
      transform: translateY(0);
    }
}
.image-3 {
    position: absolute;
    bottom: -788px;
    /* left: 22px; */
    overflow: hidden;
    max-width: 247px;
    margin-bottom: 0;
    animation: bounce 6s linear infinite;
    right: 1%;
    top: 83%;
}
  
@keyframes bounce {
  
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-30px);
    }
  
    100% {
      transform: translateY(0);
    }
}
.about-img img {
    width: 100%;
    /* border-radius: 3rem 1rem 3rem 1rem;
    box-shadow: 0 25px 30px -12px #002856;
    animation: 6s ease-in-out infinite float; */
}
@keyframes float{
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Scrollbar track (background) */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Scrollbar thumb (jo move hota hai) */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #001b3a);
    border-radius: 10px;
  }
section.about-text {
    margin: 70px 0;
}
.about-us {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 25px;background-color: #bb783247;
}
.about-us h2 {
    text-align: center;
    font-size: 43px;
    font-weight: bold;
    padding-bottom: 23px;
    color: #a25f2c;
    font-family: "Bai Jamjuree", sans-serif;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 10%);
    position: relative;
    padding-top: 17px;
}
.about-us p {
    text-align: justify;
    line-height: 35px;
    margin-bottom: 10px;
}
section.about-sec-1 {
    margin: 75px 0;
}
.about-text img {
    width: 100%;
}
.about-sec-1 p {
    text-align: justify;
    line-height: 30px;
    margin-bottom: 6px;
}
.about-text {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}


/* our Products */


/* .product {
    background-image: url(../images/service-background-1.webp);
    padding: 75px 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    top: -8px
}

.product-part::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.8;
}

.product h2 {
    text-align: center;
    font-size: 42px;
    color: #fff;
    position: relative;
    margin-bottom: 60px
}

.product h2::before {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 150px;
    height: 3px;
    top: 110%
}

.product h4 {
    color: #fff;
    font-size: 35px;
    line-height: 36px;
    font-weight: 600;
    position: relative!important;
    text-align: center;
    padding-top: 10px
}

.service-part {
    padding-top: 75px
}

section.service-sec {
    padding-bottom: 40px
}

.sub-title-1 {
    color: #878787;
    position: relative;
    text-align: center;
    font-size: 25px;
    font-weight: 500
}

.service-block {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
    box-shadow: 0 4px 12px rgb(0 0 0 / .05);
    overflow: hidden;
    transition: transform 0.3s ease,box-shadow 0.3s ease
}

.service-block .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding-bottom: 20px
}

.service-block .image {
    position: relative;
    margin-bottom: 20px;
    padding-right: 22px;
    padding-top: 30px;
    padding-bottom: 30px
}

figure {
    margin: 0 0 1rem
}

.service-block .image:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 270px;
    background-color: #efe7dd;
    clip-path: polygon(44% 0,100% 0,100% 100%,0 100%);
    content: ""
}

.inner-box a {
    color: #000;
    text-decoration: none;
    font-weight: var(--body-font-weight);
    cursor: pointer;
    transition: all 0.3s ease
}

.service-block .image img {
    position: relative;
    width: 100%
}

.service-block .content-box {
    position: absolute;
    left: 34px;
    right: 45px;
    bottom: 22px;
    padding: 32px 10px 30px 53px;
    margin-left: 12px;
    background-color: #fff;
    box-shadow: 0 15px 30px rgb(0 0 0 / .08)
}

.service-block .content-box .fa-solid {
    position: absolute;
    left: -27px;
    top: 0;
    background-color: #182754;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 70px;
    color: #fff;
    font-size: 38px;
    line-height: 1em;
    z-index: 2;
    transition: all 200ms ease
}

.service-block .content-box .fa-solid:after {
    position: absolute;
    left: 0;
    bottom: -14px;
    border-left: 27px solid #fff0;
    border-top: 14px solid #182754;
    content: "";
    transition: all 300ms ease
}

.service-block .inner-box:hover .fa-solid {
    background-color: #febe42;
    color: #000
}

.service-block .inner-box:hover .fa-solid:after {
    border-top: 14px solid #db9f29
}

.service-block .title {
    position: relative;
    font-weight: 700;
    z-index: 2;
    font-size: 17px
}

.service-block .title:hover {
    color: #ca1f26
}

.title a {
    color: black
}

.service-block .content-box .inner {
    position: relative;
    display: none;
    overflow: hidden
}

.service-block .text {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    z-index: 2;
    transition: all 300ms ease;
    text-align: justify
}

.service-block .read-more {
    position: relative;
    display: inline-flex;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    z-index: 2;
    margin-bottom: 0;
    transition: all 300ms ease
}

.service-block .read-more i {
    font-size: 14px;
    margin-left: 10px;
    transform: rotate(45deg)
}

.service-block .inner-box:hover .content-box .inner {
    height: auto!important
}

.content-box:hover .inner {
    display: block!important;
    height: auto!important;
    padding-top: 5px;
    margin-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out
}

.read-1 a {
    position: relative;
    font-size: 17px;
    padding: 15px 40px;
    background-color: #21305a;
    color: #f8f5f0;
    font-weight: 500;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 1;
    margin-top: 15px
}

.read-1 a::before {
    position: absolute;
    content: "";
    background-color: #fff;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0,1);
    transform-origin: top right;
    transition: transform 500ms cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
    z-index: -1
}

.read-1 a:hover::before {
    transform: scale(1,1);
    transform-origin: bottom left
}

.read-1 a:hover {
    color: #000;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1)
}

.read-1 {
    text-align: center;
    padding-top: 15px
} */




/* product-part */

.servic-pro {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}
.servic-box-img {
    position: relative;
    overflow: hidden;
    /* background-color: #fff; */
    /* padding: 5px 5px 5px 5px; */
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #9b9a9a;
    border-radius: 10px 10px 0px 0px;
}
.servic-box-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all ease-in-out;
    /* border-radius: 10px; */
}
.servic-box-img:hover::before {
    opacity: 1;
    visibility: visible;
}
.servic-box-img {
    width: 100%;
    aspect-ratio: 415 / 370;
   position: relative;
    overflow: hidden;
    /* background-color: #fff; */
    padding: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #9b9a9a;
    border-radius: 10px 10px 10px 10px;
    margin-bottom: 70px;
}

.servic-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
.servic-pro {
    position: relative;
}

.servic-pro .service-box_content {
   position: absolute;
    top: auto;
    bottom: -33px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
    border-style: solid;
    border-color: #727171;
    border-width: 0px 0px 5px 0px;
    padding: 10px 20px 10px 18px;
    z-index: 9999;
    transition: 0.4s all ease-in-out;
    width: 81%;
    transform: translate(8.5%);
    background-color: #0000005c;
    background-image: linear-gradient(180deg, rgb(255 255 255 / 83%) 0%, #F5F5F5 70%);
    left: 10px;
}
.servic-pro .service-box_content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    background-color: #fff;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.4s all ease-in-out;
}
.box-title {
   font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    transition: 0.4s all ease-in-out;
    text-align: center;
}
.box-title a {
    color: #000; /* Keeps same color as h3 (black usually) */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Smooth hover transition */
    transition: 0.4s all ease-in-out;
}
.service-box_text {
    /* max-width: 262px; */
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    color: #666666;
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
    padding-bottom: 18px;
    margin-bottom: 18px;
    transition: 0.4s all ease-in-out;
    position: relative;
    text-align: justify;
}
/* .line-btn a{
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    line-height: 26px;
    position: relative;
    padding-bottom: 0;
    margin-bottom: -1px;
    color: #005C8A;
    text-align: center;
    margin: 0 auto;
} */
.line-btu {
    text-align: center;
}
.line-btu a {
    display: inline-block;
    padding: 8px 8px;
    background: linear-gradient(45deg, #e1004d, #e5b500);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.line-btu a:hover {
    background-color: #0056b3; /* Darker on hover */
}
.servic-pro:hover .service-box_content::before {
    height: 100%;
    background-color: #9a9a9a;
}
.servic-pro:hover .service-box_content .box-title a {
    color: #fff;
}
.servic-pro:hover .service-box_content .service-box_text {
    color: #fff;
    border-color: #fff;
}
.servic-pro:hover .service-box_content .line-btn {
    color: #fff;
    border-color: #fff;
}
.servic-pro .service-box_icon {
    position: absolute;
    right: 15px;
    top: -50px;
    background-color: #005C8A;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: 0.4s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.servic-pro .service-box_icon img {
    width: 40px;
    transition: 0.4s all ease-in-out;
}
.servic-pro:hover .service-box_icon {
    background-color: #fff;
}
.servic-pro:hover .service-box_icon img {
    filter: brightness(0);
    transform: rotateY(180deg);
}
.service-box_icon i {
    font-size: 45px;
    color: #fff;
}
.servic-pro:hover .service-box_icon i {
    color: #fe0000b5;
    transition: color 0.3s ease;
}
.product-sec {
    padding-top: 90px;
}
.product-part {
    position: relative; /* 👈 must */
    background-image: url("../images/product-background-1.png");  
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 90px 0 90px;
    z-index: 1;
    top: -9px;
    overflow: hidden; /* optional but safe */
}
.product-part::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #02375e;
    opacity: .92;
}
   

.product-part h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 14%);
}
 .product-part h2:before {
    position: absolute;
    content: '';
    width: 19%;
    height: 4px;
    left: 40%;
    top: 100%;
    background-color: #ffffff;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 14%);
}
/* .product-part h2:after {
    position: absolute;
    content: '';
    width: 8%;
    height: 5px;
    left: 46%;
    top: 105%;
    background-color: #023d81;
    border-radius: 10px;
} */
.product-part p {
    text-align: center;
    padding-top: 7px;
    font-size: 19px;
    font-weight: 600;
    color: #600a07;
    position: relative;
}
.read-1 a {
    position: relative;
    font-size: 18px;
    /* line-height: 1.4; */
    padding: 15px 38px;
    background-color: #838484;
    color: #f8f5f0;
    font-weight: 600;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 1;
    margin-top: 50px;
    box-shadow: 0 4px 10px #707171c2;
}
.read-1 a::before {
    position: absolute;
    content: "";
    background-color: #21305a;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: top right;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}
.read-1 a:hover::before {
    transform: scale(1, 1);
    transform-origin: bottom left;
}
.read-1 a:hover {
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.read-1 {
    text-align: center;
    /* padding-top: 75px; */
} 
.read-1 a i {
    display: flex;
    align-items: center;
    padding-left: 10px;
}


/* Stats Section */

.stats {
    background: #f8f9fa;
    position: relative;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #1568a6;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f1f59, #147dba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    position: relative;
    z-index: 1;
}


/* Why Choose Us */

.choose-part {
    position: relative;
    top: -9px;
}
.why-choose {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding-bottom: 30px;
}
.why-us {
    background-color: #fff;
    border-radius: 7px;
    padding: 40px 0px 50px 0px;
}
.why-us h2 {
    text-align: center;
    font-size: 41px;
    font-weight: bold;
    padding-bottom: 92px;
    color: #166196;
    font-family: "Bai Jamjuree", sans-serif;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 10%);
    position: relative;
}
.why-us h2::before {
    position: absolute;
    content: '';
    /* background: linear-gradient(to right, #ffffff, #1212126e); */
    width: 36%;
    height: 3px;
    top: 38%;
    left: 31%;
    background-color: #166196;
}
.mid-img{
    text-align: center;
}
.mid-img img {
    animation: round-01 7s linear infinite;
}
@keyframes round-01{

    0%{
        transform: rotate(15deg);
    }
    50%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(15deg);
    }
} 
.box-1 {
    background-color: #02010100;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  box-shadow: 0px 0px 50px 0px rgb(190 190 190 / 97%);
    padding: 20px 12px 15px 13px;
    text-align: center;
    transition: 0.4s all ease;
    border-radius: 10px;
    /* height: 290px; */
    position: relative;
}
.box-1 h3 {
    font-size: 23px;
    padding-top: 20px;
    padding-bottom: 10px;
    transition: 0.4s all ease;
    color: #1474b2;
    font-weight: bold;
}
.box-1 p {
    transition: 0.4s all ease;
}
.icon-1 {
    width: 85px;
    height: 85px;
    margin: 0 auto;
    background-color: #d5d5d5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 20px;
}
.part-sec {
    padding: 0 15px 0 15px;
}
/* .row {
    align-items: center; 
} */
.box-1:hover {
    transform: translateY(-10px);
    background-image: linear-gradient(#122b66, #1467a5);
    cursor: pointer;
}
.box-1:hover h3 {
    color: #fff;
}
.box-1:hover p {
    color: #fff;
}
.mid-img img {
    width: 100%;
    border-radius: 50%;
}
.choose-sec .row {
    align-items: center; 
}


/* why choose us */


.why-choose-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: luminosity;
    background-color: #241f21
}

.choose-1 h4 {
    text-align: justify;
    font-size: 20px;
    font-weight: 600;
    line-height: 31px
}

.choose-part .container-fluid {
    --bs-gutter-x: 0 !important
}

.choose-1 {
    padding-top: 40px;
    padding: 56px 45px 0
}

.choose-1 h3 {
    padding-left: 40px;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding-bottom: 48px
}

.choose-1 h3:before {
    content: '';
    position: absolute;
    left: 38%;
    top: 108px;
    height: 4px;
    width: 263px;
    border-radius: 3px;
    background: #fff;
    left: 33%
}

.feature-block-seven .inner-box-1 {
    position: relative;
    flex-direction: column;
    align-items: normal;
    padding: 16px 20px 0;
    border: 3px solid #cacaca;
    margin-bottom: 20px;
    height: 255px
}

.feature-block-seven .fa-solid {
    height: 85px;
    width: 85px;
    background-color: #8d8d8d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    border-radius: 50px;
    margin-bottom: 15px
}

.feature-block-seven .inner-box-1 .fa-solid {
    position: relative;
    color: #fff;
    font-size: 45px;
    line-height: 1em;
    margin-right: 25px;
    transition: all 300ms ease
}

.feature-block-seven .title {
    color: #000;
    position: relative;
    margin-bottom: 5px;
    font-size: 35px;
    font-weight: 600;
    padding: 6px 0
}

.feature-block-seven .inner-box-1:hover .fa-solid {
    transform: scaleX(-1)
}

.choose-2 {
    padding: 0 50px
}

.choose-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 676 / 565;
    display: block;
    box-shadow: rgb(0 0 0 / .4) 0 2px 4px,rgb(0 0 0 / .3) 0 7px 13px -3px,rgb(0 0 0 / .2) 0 -3px 0 inset
}

p.text {
    color: #dadada;
    padding: 0;
    font-size: 20px;
    font-weight: 500
}

.choose-1 h5 {
    display: block;
    color: #8f8f8f;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px
}

.choose-1 h2 {
    margin-bottom: 0;
    font-size: 35px;
    line-height: 47px;
    font-weight: 600;
    margin-top: 15px;
    padding-bottom: 17px;
    color: #fff
}

.feature-block-home2 {
    position: relative
}

.image-3 {
    position: absolute;
    bottom: -800x;
    overflow: hidden;
    max-width: 244px;
    margin-bottom: 0;
    animation: bounce 6s linear infinite;
    top: -24%;
    left: 80%;
    z-index: 10
}

@keyframes bounce {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-30px)
    }

    100% {
        transform: translateY(0)
    }
}

.inner-box-1 {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 36px;
    margin-right: 0;
    padding: 10px 0;
    box-shadow: 0 0 76px rgb(0 0 0 / .28);
    background-color: #fff;
    margin-bottom: 29px
}

.inner-box-1:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    width: 0;
    background-color: #666;
    content: ""
}

.inner-box-1 i {
    position: relative;
    margin-left: -38px;
    display: flex;
    justify-content: center;
    width: 75px;
    height: 70px;
    font-size: 36px;
    background-color: #666;
    color: #fff;
    padding-top: 15px
}

.inner-box-1 .content {
    padding: 9px 4px;
    padding-left: 18px
}

.inner-box-1 .title {
    position: relative;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 17px
}

.inner-box-1 a {
    color: #000
}

.inner-box-1 i:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 16px solid #fff0;
    border-left: 10px solid #666;
    border-bottom: 16px solid #fff0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.choose-content {
    padding-top: 50px
}

.choose-sec {
    background-image: url(../images/choose-us.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.choose-img {
    position: relative;
    top: -61px;
    padding-bottom: 20px
}

.choose-1 p {
    text-align: justify;
    color: #000;
    line-height: 33px;
    padding: 10px 0;
    font-size: 17px
}

.sub-title {
    position: relative;
    color: #7c7c7c;
    font-size: 23px;
    font-weight: 600
}

.sub-title-1 {
    position: relative;
    color: #7c7c7c;
    font-size: 23px;
    font-weight: 600;
    text-align: center
}

.sub-title-2 {
    position: relative;
    color: #7c7c7c;
    font-size: 25px;
    font-weight: 600;
    text-align: center
}

.sub-title-3 {
    padding-bottom: 34px;
    position: relative;
    font-size: 40px;
    color: #2f5783;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 17%);
    font-weight: 700;
    text-align: center
}

.sub-title-3:before {
    content: '';
    position: absolute;
    left: 28%;
    top: 68px;
    height: 4px;
    width: 45%;
    border-radius: 3px;
    background: #2f5783
}

.choose-part .slick-prev {
    display: none!important
}

.choose-part .slick-next {
    display: none!important
}



.right-box {
    padding: 43px 20px 0 20px;
    text-align: center;
}
.right-box h2 {
    font-size: 44px;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 35px;
    color: #06408c;
}
.right-box h2:before {
    content: '';
    position: absolute;
    left: 35%;
    top: 56px;
    height: 4px;
    width: 28%;
    border-radius: 3px;
    background: #06408c;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 17%);
}
.right-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1e3b5a;
    margin: .5rem 0;
    text-align: center;
}
.right-box a {
    background: #001b3a;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.25s;
    box-shadow: 0 4px 10px #001b3ac2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #001b3a;
    margin-top: 20px;
}





/* why part */

.process-part {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.step {
    display: flex;
    gap: 20px;
    align-items: center;
}
.step-num {
    font-size: 28px;
    font-weight: 700;
    color: #165996;
    flex-shrink: 0;
}
.step h3 {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    color: #4e4e4d;
    margin: 0;
    padding-bottom: 8px;
}
.step p {
    font-size: 17px;
    font-weight: 500;
    color: #6e6c6c;
    text-align: justify;
}
.process-part {
    padding: 25px;
}


/* mission & vission */

section.misson-part {
        margin-top: 65px;
        padding-bottom: 70px
    }

    .card__bx .card__data .card__content {
        top: 145px;
        padding: 9px 10px
    }

    .card__bx {
        height: 613px
    }

    .misson-part h2 {
        margin-bottom: 75px
    }
    .misson-part h2:before {
        left: 27%;
        top: 52px;
        width: 44%
    }

    .card__bx .card__data .card__content h3 {
        font-size: 25px
    }

    .sub-title-3:before {
        left: 31%;
        top: 67px;
        width: 39%
    }

    .choose-1 p {
        padding: 10px 0 20px
    }

    .choose-img {
        position: relative;
        top: 0;
        padding-bottom: 0
    }

    .choose-1 {
        padding: 45px 17px 0
    }

    .sub-title-3 {
        padding-bottom: 50px;
        font-size: 44px
    }

    .agency h2:before {
        left: 37%;
        top: 49px;
        width: 26%
    }

    .agency {
        padding: 65px 0 60px 0
    }

    .agency h2 {
        padding-bottom: 65px
    }



.cta-one__title {
    margin-bottom: 0;
    color: #fff;
    line-height: normal;
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    letter-spacing: .5px;
    position: relative
}

.enquiry-part p {
    font-size: 21px;
    color: #fff;
    text-align: center;
    padding: 14px 15px;
    position: relative
}

.cta-one__btn {
    text-align: center
}

.voldor-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 112%;
    background-color: #241F21;
    color: #fff;
    padding: 19px 40px;
    transition: 500ms;
    text-transform: uppercase;
    background-color: #bc8458;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1
}

.cta-one__btn a::after {
    background: #fff
}

.voldor-btn::after {
    background: #AE8F62;
    top: 50%;
    left: 50%;
    content: "";
    width: 100%;
    height: 0%;
    z-index: -1;
    position: absolute;
    transition: all 0.6s ease;
    transform: translate(-50%,-50%) rotate(-45deg)
}

.ab-button-box {
    padding-top: 20px;
    text-align: center
}

.tp-btn-box:hover {
    box-shadow: none;
    color: #a76e3e
}

.tp-btn-box {
    display: inline-block;
    overflow: hidden;
    background-color: #582731;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    height: 60px;
    line-height: 56px;
    padding: 0 35px;
    border: 2px solid #fff0;
    border-color: #cdcdcd;
    box-shadow: none;
    transition: all .3s ease 0s;
    cursor: pointer;
    text-align: center;
    z-index: 1;
    position: relative
}

.tp-btn-box:hover:after {
    transform: skewX(45deg) scale(1)
}

.tp-btn-box:after {
    position: absolute;
    content: "";
    z-index: -1;
    display: block;
    left: -20%;
    right: -20%;
    top: -4%;
    height: 150%;
    width: 150%;
    bottom: 0;
    background: #fff;
    transform: skewX(45deg) scaleX(0);
    transition: all .5s ease 0s
}

section.misson-part {
    margin-top: 90px;
    padding-bottom: 90px
}

.misson-part h2 {
    text-align: center;
    margin-bottom: 70px;
    font-size: 50px;
    color: #06408c;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 17%);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.misson-part h2:before {
    content: '';
    position: absolute;
    left: 39%;
    top: 58px;
    height: 4px;
    width: 21%;
    border-radius: 3px;
    background: #06408c;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 17%);
}
.card__1 {
    --clr: #112b66 
}

.card__bx {
    --bg-clr: #282828;
    --txt-clr: #ffffff;
    --btn-txt-clr: #333333;
    --transition: all 0.5s;
    height: 423px;
    width: auto;
    overflow: hidden;
    border-radius: 20px;
    border-top-left-radius: 70px;
    position: relative;
    overflow: hidden;
    background: #722b39;
    transition: all 0.5s;
    box-shadow: rgb(0 0 0 / .35) 0 5px 15px
}

.card__bx .card__data {
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    background: #fff
}

.card__bx .card__data .card__icon::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    height: 30px;
    width: 30px;
    border-top-left-radius: 30px;
    background: #fff0;
    box-shadow: -5px -5px 0 5px var(--clr)
}

.card__bx .card__data .card__icon {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 50%;
    height: 140px;
    width: 140px;
    background: var(--clr)
}

.card__bx .card__data .card__icon .card__icon-bx {
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
  background-color: #1470AD;
    color: var(--clr)
}

.card__bx .card__data .card__icon::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    height: 30px;
    width: 30px;
    border-top-left-radius: 30px;
    background: #fff0;
    box-shadow: -5px -5px 0 5px var(--clr)
}

.card__bx .card__data .card__content {
    position: absolute;
    top: 105px;
    padding: 9px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    color: var(--txt-clr)
}

.card__bx .card__data .card__content h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0
}

.card__2 {
    --clr:#112b66
}

.card__bx {
    --bg-clr: #282828;
    --txt-clr: #ffffff;
    --btn-txt-clr: #333333;
    --transition: all 0.5s;
    height: 450px;
    width: auto;
    overflow: hidden;
    border-radius: 20px;
    border-top-left-radius: 70px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(#122b66, #13417d);
    transition: all 0.5s;
    box-shadow: rgb(0 0 0 / .35) 0 5px 15px
}

.card__bx .card__data .card__icon {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 50%;
    height: 140px;
    width: 140px;
    /* background-image: linear-gradient(#122b66, #1467a5); */
}

.card__bx .card__data .card__icon::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    height: 30px;
    width: 30px;
    border-top-left-radius: 30px;
    background: #fff0;
    box-shadow: -5px -5px 0 5px var(--clr)
}

.card__bx .card__data .card__icon .card__icon-bx {
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
  background-color: #1470AD;
    color: var(--clr)
}

.card__bx .card__data .card__icon::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    height: 30px;
    width: 30px;
    border-top-left-radius: 30px;
    background: rgb(255 255 255 / .14)
}

.card__bx .card__data .card__content {
    position: absolute;
    top: 150px;
    padding: 9px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    color: var(--txt-clr)
}

.card__bx .card__data .card__content h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #5c5c5c;
    text-align: center
}

.our-vision {
    padding: 34px 45px;
    background-color: #f27231;
    transition: 0.3s
}

.our-vision:hover {
    transform: translateY(-10px);
    transition: 0.3s
}

.our-vision p {
    font-size: 18px;
    color: #fff
}

.our-vision2 {
    background-color: #1496a4
}

section.about-product {
    margin-top: 67px
}

.img-part img {
    border-radius: 40px 0 40px
}

.card__container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 40px auto
}

.card__content p {
    color: #000;
    text-align: justify;
    line-height: 31px;
    font-size: 17px
}


/* gallery */


section.industries-more {
    margin: 95px 0 110px;
}
section.industries-more-1 {
    margin: 80px 0 70px;
}
.industries-more h2 {
    text-align: center;
    font-size: 57px;
    font-weight: bold;
    color: #06408c;
    position: relative;
    /* text-transform: uppercase; */
    text-shadow: 2px 2px 1px rgb(0 0 0 / 14%);
    letter-spacing: 1px;
}

.industries-more h2:before {
    position: absolute;
    content: '';
    width: 14%;
    height: 4px;
    left: 43%;
    top: 107%;
    background-color: #06408c;
     text-shadow: 2px 2px 1px rgb(0 0 0 / 14%);
}

/* .industries-more h2:after {
    position: absolute;
    content: '';
    width: 8%;
    height: 5px;
    left: 46%;
    top: 111%;
    background-color: #06408c;
    border-radius: 10px
} */

.industries-sec {
    padding-top: 80px
}

.project-item {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgb(0 0 0 / .35) 0 5px 15px;
    background-color: #fff;
    /* height: 517px; */
    margin: 0 10px
}
.project-item-1 {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: rgb(0 0 0 / .35) 0 5px 15px;
    background-color: #fff;
    /* height: 517px; */
}

.image-anime {
    position: relative;
    overflow: hidden
}

.project-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
    display: block;
    border: 2px solid #bababa;
    border-radius: 10px;
    background-color: #f4f4f4;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / .3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1
}
.project-content-title {
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px
}

.project-content-title h3 {
    font-size: 25px;
    font-weight: 700;
    color: #003e8f;
    text-transform: capitalize;
    padding: 11px 0
}

.project-content-title p {
    text-align: justify;
    line-height: 28px
}

.project-item:hover .project-image img {
    transform: scale(1.1)
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: #fff0;
    overflow: hidden
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgb(255 255 255 / .3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1
}

figure {
    margin: 0
}

.project-content-title h3 a {
    color: inherit
}

.project-item:hover .project-content {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease-in-out
}

.project-content-title i {
    font-size: 20px;
    color: #00469c
}

.industries-more .slick-prev {
    display: none!important
}

.industries-more .slick-next {
    display: none!important
}




/* Enquiry Section */

.enq-box{
  
    /* padding: 45px 30px; */
    text-align: center;
    position: relative;
}
.enq-sec {
    padding: 71px 0;
    background: linear-gradient(145deg, #101e57 0%, #1367a2 100%);
    border-radius: 50px 50px 0 0;
}
.enq-box h2{
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
    color: #fff;
}
.enq-box h2 span{
    background: linear-gradient(135deg, #ffd966, #e8b13e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.enq-box p{
    text-align: center;
    line-height: 1.6;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 25px;
    font-size: 17px;
    color: #ffffffd9;
    text-shadow: 0 3px 10px #001e3c;
}
.enq-box a{
    background: #e8b13e;
    color: #002856;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.25s;
    box-shadow: 0 8px 18px #001b3a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ffd966;
}
.enq-box a:hover{
    background: #f5c84e;
    transform: scale(1.02);
    box-shadow: 0 12px 24px #001b3a;
}



/* footer */



footer {
    padding: 90px 0 20px 0;
    background-image: url(../images/footer-img.png);
    /* background-color: #15465F; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.third-foot {
    margin-bottom: 55px;
}

footer::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121315 !important;
    opacity: 0.9;
}

.foot-logo img {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    width: 75%;
}

.first-foot p {
    color: #fff;
    padding-top: 20px;
    line-height: 28px;
    font-size: 16px;
    position: relative;
    text-align: justify;
}

.social {
    display: flex;
    margin-top: 18px;
    position: relative;
}

.facebook {
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s all ease;
    cursor: pointer;
}

.facebook a {
    color: #002b5c;
    line-height: 0;
    transition: 0.4s all ease;
}

.facebook:hover {
    background-color: #00bcd4;
    transform: translateY(-5px);
}

.facebook:hover a {
    color: #fff;
}

.second-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-left: 25px;
    padding-bottom: 8px;
    position: relative;
}

.second-foot li {
    padding-left: 25px;
}

.second-foot li a {
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 5px;
    transition: 0.3s all ease;
    font-size: 18px;
    margin-top: 7px;
    font-weight: 500;
}

.second-foot li a::before {
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    left: 0;
    top: 5px;
    font-size: 15px;
}

.second-foot li a:hover {
    color: #00bcd4;
    padding-left: 25px;
}

.second-foot {
    padding-left: 20px;
}

.third-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-left: 5px;
    padding-bottom: 10px;
    position: relative;
}

.last-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-left: 5px;
    padding-bottom: 27px;
    position: relative;
}

.third-foot li {
    padding-left: 5px;
    position: relative;
}

.third-foot li a {
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 3px;
    transition: 0.3s all ease;
    font-size: 18px;
    margin-top: 7px;
    font-weight: 500;
}

.third-foot li a::before {
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    left: 0;
    top: 5px;
    font-size: 15px;
}

.third-foot li a:hover {
    color: #00bcd4;
    padding-left: 25px;
}

.address {
    display: flex;
    padding-bottom: 10px;
}

.loca {
    width: 26px;
}

.loca i {
    color: #fff;
    position: relative;
    top: 3px;
    font-size: 17px;
}

.add {
    width: calc(100% - 26px);
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    position: relative;
}

.add a {
    color: #fff;
    transition: 0.3s all ease;
}

.add a:hover {
    color: #00bcd4;
}

.copy {
    color: #fff;
    position: relative;
    padding-top: 25px;
    font-size: 18px;
    text-align: center;
}

/* .copy .container {
    max-width: 1220px;
} */

.first-copy {
    color: #fff;
    font-size: 18px;
}

.power {
    text-align: right;
    color: #fff;
    font-size: 15px;
}

.power a {
    color: #fff;
    transition: 0.3s all ease;
}

.power a:hover {
    color: #00bcd4;
}
.botton-line {
    border-top: 1px solid #fff;
    position: relative;
}

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* icon */
  .whatsapp-group {
    position: fixed;
    bottom: 20px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    z-index: 9999;
}
.btn-whatsapp-pulse-3 {
    background: #25d366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50%;
    animation: whatsappMove 2s ease-in-out infinite;
}

/* Icon Up Down Animation */
@keyframes whatsappMove {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}
.btn-whatsapp-pulse-3 svg {
    width: 47px;
    height: 47px;
    fill: #fff;
}

  /* inner pages */

  .breadcrum {
    background-image: url(../images/breadcrum-img-2.png);
    background-color: #273a4b;
    padding: 126px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 15px
}

.breadcrum::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(90deg, #091946f5 0%, rgb(2 89 139 / 89%) 117.71%) !important;
    opacity: .95
}

.bread-cont {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    position: relative;
    gap: 15px;
    top: 0
}

.bread-cont h1 {
    position: relative;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    padding: 0 10px
}

.bread-last {
    position: relative;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 0 10px;
    display: flex;
    align-items: center
}

.bread-last .home-link {
    position: relative;
    padding-left: 24px;
    text-decoration: none;
    color: #fff;
    font-weight: 500
}

.bread-last .home-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="white" d="M541 229.16L512 205.26V64a16 16 0 0 0-16-16h-48a16 16 0 0 0-16 16v72.61L314.44 43.2c-12.6-10.07-30.78-10.07-43.38 0L35 229.16a12 12 0 0 0-1.6 16.9l21.4 25.72a12 12 0 0 0 16.9 1.6L96 234.8V448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V234.8l24.3 38.58a12 12 0 0 0 16.9-1.6l21.4-25.72a12 12 0 0 0-1.6-16.9z"/></svg>') no-repeat center center;
    background-size: contain
}

.bread-last .breadcrumb-arrow {
    display: inline-block;
    width: 23px;
    height: 24px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='%23ffffff' d='M535.1 342.6C547.6 330.1 547.6 309.8 535.1 297.3L375.1 137.3C362.6 124.8 342.3 124.8 329.8 137.3C317.3 149.8 317.3 170.1 329.8 182.6L467.2 320L329.9 457.4C317.4 469.9 317.4 490.2 329.9 502.7C342.4 515.2 362.7 515.2 375.2 502.7L535.2 342.7zM183.1 502.6L343.1 342.6C355.6 330.1 355.6 309.8 343.1 297.3L183.1 137.3C170.6 124.8 150.3 124.8 137.8 137.3C125.3 149.8 125.3 170.1 137.8 182.6L275.2 320L137.9 457.4C125.4 469.9 125.4 490.2 137.9 502.7C150.4 515.2 170.7 515.2 183.2 502.7z'/></svg>") no-repeat center center;
    background-size: contain;
    margin: 0 8px
}
section.product-text {
    padding-bottom: 95px;
}
section.packaging-bag {
    margin: 80px 0;
}
.bag-image {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* inner productsage */

.box-part-1 {
    position: relative;
    /* margin-bottom: 25px; */
}
.product-img {
    position: relative;
    overflow: hidden;
    /* border-radius: 12px 12px 0 0; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
}
.product-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff0;
    transition: background 0.5s ease;
    z-index: 1;
}
.product-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.featured-content {
    border-bottom: 4px solid #7a7a7a;
    margin-top: -8px;
    z-index: 1;
    margin-left: 1px;
    padding: 25px 0 25px 0;
    background-color: #fff;
    margin-right: 1px;
    transform: scale(1.01);
    transition: all 700ms ease;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* border-radius: 0 0 15px 16px; */
    position: relative;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.featured-content:before {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: "";
    width: 100%;
    height: 0;
    z-index: -1;
    background-color: #b1b1b1;
    transition: height 0.3s ease-out;
    border-radius: 0 0 15px 16px;
}
.featured-title h3 {
    text-align: center;
}
.featured-title h3 a {
    color: #000;
    font-size: 25px;
    font-weight: bold;
}
.box-part-1:hover .product-img::before {
    background: rgb(0 0 0 / .4)
}

.box-part-1:hover .product-img img {
    transform: scale(1.2);
    transition: transform 0.5s ease
}

.box-part-1:hover .featured-content {
    background-color: #fff;
    color: #fff
}

.box-part-1:hover .featured-content h4 a {
    color: #fff
}
.box-part-1:hover .featured-content:before {
    height: calc(100% + 1px);
}


/* contanct us page */


.contact-boxes-section {
    padding: 80px 0 85px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#ffffff 0%,#fff5f1a1 100%)
}

.contact-boxes-section .container {
    position: relative;
    z-index: 1
}

.contact-head {
    text-align: center;
    margin-bottom: 35px
}

.contact-head h2 {
   color: #0a437a;
    text-shadow: 2px 2px 1px rgb(0 0 0 / 17%);
    font-size: 47px;
    font-weight: 700;
    padding-bottom: 47px
}

.contact-head p {
    color: #3d3d3d;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto
}

.contact-box {
    background-color: #fff;
    border: 1px solid #ecd7d0;
    border-radius: 14px;
    padding: 35px 24px 30px;
    text-align: center;
    height: 100%;
    box-shadow: rgb(0 0 0 / .09) 0 8px 18px;
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1),box-shadow 0.45s ease,border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform
}

.contact-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #0a437a;
    border-radius: 14px 14px 0 0;
    transition: 0.35s ease
}

.contact-box:hover {
    border-color: #666666;
    box-shadow: rgb(0 0 0 / .18) 0 16px 30px
}

.contact-box:hover::before {
    height: 7px
}

.box-address:hover {
    transform: translateY(-10px) rotate(-1.2deg)
}

.box-email:hover {
    transform: translateY(-12px) scale(1.03)
}

.box-phone:hover {
    transform: translateY(-10px) rotate(1.2deg)
}

.contact-icon {
    width: 68px;
    height: 68px;
    background-color: #0a437a;
    color: #fff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 18px;
    position: relative;
    transition: 0.35s all ease
}

.contact-box:hover .contact-icon {
    transform: translateY(-3px) scale(1.07);
    background-color: #666666;
    box-shadow: rgb(102 102 102 / 25%) 0 0 0 8px;
}

.contact-icon svg {
    width: 33px;
    height: 33px;
    color: #fff
}

.box-address .contact-icon svg {
    animation: bouncePin 2s ease-in-out infinite
}

.box-email .contact-icon svg {
    transform-origin: 50% 5%;
    animation: mailSwing 2.3s ease-in-out infinite
}

.box-phone .contact-icon svg {
    transform-origin: 50% 12%;
    animation: phoneRing 1.9s ease-in-out infinite
}

.contact-box h3 {
    color: #1f1f1f;
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 10px
}

.contact-box p {
    color: #0a437a;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600
}

.contact-box p a {
    color: #0a437a;
    transition: 0.3s ease;
    font-weight: 600
}

.contact-box p a:hover {
    color: #666666
}

@keyframes bouncePin {
    0%,100% {
        transform: translateY(0)
    }

    45% {
        transform: translateY(-4px)
    }

    70% {
        transform: translateY(1px)
    }
}

@keyframes mailSwing {
    0%,100% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(-13deg)
    }

    75% {
        transform: rotate(11deg)
    }
}

@keyframes phoneRing {
    0%,100% {
        transform: rotate(0deg)
    }

    20% {
        transform: rotate(-16deg)
    }

    40% {
        transform: rotate(14deg)
    }

    60% {
        transform: rotate(-12deg)
    }

    80% {
        transform: rotate(9deg)
    }
}

.map-time {
    padding-bottom: 60px
}


/* Media Query Start */


@media screen and (max-width: 1199px) {

.content h2 {
    font-size: 52px;
}
.card__bx {
    height: 545px;
}
.about-sec {
    padding-top: 10px;
}
section.about-part {
    /* margin-top: 70px; */
    padding-bottom: 60px;
}
.read-1 a {
    padding: 15px 20px;
}
.product-part {
    padding: 82px 0 80px;
}
.product-sec {
    padding-top: 75px;
}
.box-title {
   font-size: 21px;
}
section.misson-part {
    margin-top: 65px;
    padding-bottom: 80px;
}
section.industries-more {
    margin: 70px 0 80px;
}
.industries-more h2:before {
    width: 17%;
    height: 4px;
    left: 40%;
    top: 94%;
}
.industries-sec {
    padding-top: 65px;
}
.foot-logo img {
    width: 100%;
}
.first-foot p {
    padding-top: 13px;
}
}


@media screen and (max-width: 991px){


     header {
        position: relative;
    }

    .mobile-menu-btn {
    display: block;
}

nav{
    position: fixed;
    top: 110px;
    left: -100%;

    width: 100%;
    height: calc(100vh - 110px);

    background-color: #fff;

    transition: left 0.3s ease;

    z-index: 999;

    overflow-y: scroll;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;

    overscroll-behavior: contain;

    padding-bottom: 50px;
}
section.industries-more-1 {
    margin: 80px 0 50px;
}

/* OPEN MENU */
nav.active{
    left: 0;
}

/* SMOOTH SCROLL */
nav::-webkit-scrollbar{
    width: 4px;
}

nav::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 10px;
}

nav.active{
    left: 0;
}
.menu-link i {
    font-size: 17px;
    display: none;
}
.menu-link::after {
   display: none;
}
.menu{
    flex-direction: column;
    padding: 20px;
    width: 100%;
    gap: 0;
}

.menu-item{
    width: 100%;
    position: relative;
}

.menu-link{
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: block;
}

.megamenu{
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    height: auto;
    overflow: visible;
    box-shadow: none;
    border-top: none;
    background: #f8f9fa;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.has-megamenu.responsive-header .megamenu{
    display: block;
}

.megamenu-content{
    grid-template-columns: 1fr !important;
    padding: 5px 10px;
}

.image-column{
    display: none;
}

/* PLUS ICON */
.has-megamenu::after{
    content: "+";
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    color: #0e9ed1;
    font-weight: 600;
}

.has-megamenu.responsive-header::after{
    content: "-";
}

.megamenu{
    display: none;
}

.has-megamenu.responsive-header .megamenu{
    display: block;
}
    /* li.menu-item::after {
        position: absolute;
        top: 6px;
        right: 22px;
        content: "+";
        font-size: 27px;
        color: #000000;
    } */

    /* li.pro-1.responsive-header::after {
        content: "-" !important;
    } */
    .pro-2 {
        position: initial;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        top: 0;
        left: 0;
        background-color: #ffffff;
        z-index: 9;
        height: 0;
        transition: none !important;
        padding: 0;
    }
    .responsive-header .pro-2 {
        height: 100%;
        overflow-y: scroll;
        width: 125%;
    }
    .menu {
    display: block;
    list-style: none;
    gap: 30px;
}
    .megamenu-content {
        grid-template-columns: 1fr !important;
        gap: 0;
        padding: 5px 10px;
    }
        .product-column {
        padding: 0;
    }
    .menu-link {
    font-weight: 600;
}
.logo {
    flex: 0 0 auto;
    width: 230px;
}
.banner-text {
    gap: 3px;
}

    section.about-part {
        /* margin-top: 70px; */
        padding-bottom: 60px;
    }

section.about-part {
    padding-top: 50px;
}
       .card__bx {
        height: 520px;
        margin-bottom: 25px;
    }
        section.misson-part {
        margin-top: 65px;
        padding-bottom: 50px;
    }
       .right-box {
        padding: 65px 0 0;
        text-align: center;
    }
    .process-part {
    padding: 25px 25px 35px;
}
.slick-dots {
    display: none!important;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px; 
}
    section.industries-more {
        margin: 54px 0 70px;
    }
    .enq-sec {
    padding: 50px 0;
}
.enq-box p {
    width: 90%;
}
    .foot-logo img {
        width: 75%;
    }
    .third-foot {
    padding-top: 30px;
}
.last-foot {
    padding-top: 30px;
}
.third-foot h2 {
    font-size: 28px;
    padding-left: 0px;
    padding-bottom: 6px;
}
.last-foot h2 {
    font-size: 29px;
    padding-left: 0px;
    padding-bottom: 15px;
}
.loca i {
    font-size: 20px;
}
.second-foot h2 {
    font-size: 28px;
    padding-bottom: 5px;
}
.loca {
    width: 30px;
}
.product-part h2:before {
    width: 36%;
    height: 4px;
    left: 33%;
}
.misson-part h2:before {
    left: 33%;
    top: 58px;
    width: 35%;
}
    .industries-more h2:before {
        width: 20%;
        height: 4px;
        left: 38%;
        top: 94%;
    }
    section.packaging-bag {
    margin: 65px 0;
}
.contact-boxes-section {
    padding: 65px 0 60px;
}
.contact-head h2 {
    padding-bottom: 20px;
}
}

@media screen and (max-width: 450px){

    .banner-text h1 {
    font-size: 45px;
}
.banner-text p {
    font-size: 16px;
    line-height: 25px;
}
.banner-text h5 {
    font-size: 30px;
}
.about-img {
    margin-bottom: 14px;
}
.content h2 {
    font-size: 41px;
    padding-top: 3px;
    padding-bottom: 9px;
}
    section.about-part {
        padding-top: 31px;
        padding-bottom: 50px;
    }
    .read a {
    padding: 13px 14px;
}
    .product-part h2:before {
        width: 60%;
        height: 4px;
        left: 19%;
    }
        .misson-part h2:before {
        left: 18%;
        top: 58px;
        width: 64%;
    }
    .misson-part h2 {
    margin-bottom: 65px;
}
    section.misson-part {
        margin-top: 55px;
        padding-bottom: 45px;
    }
        .card__bx {
        height: 455px;
        margin-bottom: 25px;
    }
          .right-box {
        padding: 65px 20px 0;
        text-align: center;
    }
    .right-box p {
    text-align: justify;
}
.right-box h2:before {
    left: 23%;
    top: 56px;
    width: 49%;
}
    .product-part {
        padding: 70px 0 65px;
    }
        .read-1 a {
        margin-bottom: 35px;
    }
        .industries-more h2:before {
        width: 37%;
        height: 4px;
        left: 28%;
        top: 91%;
    }
        section.industries-more {
        margin: 55px 0 60px;
    }
        .industries-sec {
        padding-top: 50px;
    }
    section.industries-more-1 {
    margin: 60px 0 50px;
}
    .logo {
        width: 215px;
    }
        .foot-logo img {
        width: 59%;
        padding: 10px 10px;
    }
    .foot-logo {
    text-align: center;
}
footer {
    padding: 70px 0 10px 0;
}
    .third-foot {
        padding-top: 20px;
    }
        .second-foot h2 {
        font-size: 28px;
        padding-left: 0;
    }
    .second-foot {
    padding-left: 0px;
}
.second-foot li {
    padding-left: 0px;
}
    .first-foot p {
        padding-bottom: 20px;
    }
          .last-foot {
        padding-top: 0px;
        padding-bottom: 15px;
    }
    .third-foot {
    margin-bottom: 20px;
}
.copy {
    padding-top: 17px;
}
    nav.active {
        top: 105px;
    }
        nav {
        top: 105px;
    
}
.bread-cont h1 {
    font-size: 34px;
}
section.product-text {
    padding-bottom: 40px;
}
    .product-sec {
        padding-top: 63px;
    }
    .breadcrum {
    padding: 85px 0;
}
    section.packaging-bag {
        margin: 60px 0;
    }
        .contact-boxes-section {
        padding: 50px 0 60px;
    }
    .contact-head h2 {
        padding-bottom: 4px;
    }
   .banner-slides {
    height: 30vh !important;
} 
.banner-slides .banner-slide-img {
    width: 100%;
    height: 30vh !important;
}
 }   


 @media screen and (max-width: 400px){

    .banner-text h1 {
        font-size: 39px;
    }
        .banner-text h5 {
        font-size: 29px;
    }
        .banner-text p {
        font-size: 16px;
        line-height: 25px;
    }
        .banner-text {
        gap: 1px;
    }
        .content h2 {
        font-size: 35px;
        padding-top: 1px;
        padding-bottom: 8px;
    }
    .product-part h2 {
    font-size: 35px;
}
    .right-box h2:before {
        left: 7%;
        top: 57px;
        width: 83%;
    }
    .product-part {
        padding: 55px 0 40px;
    }
        .process-part {
        padding: 20px 25px 35px;
    }
    .servic-box-img {
    margin-bottom: 55px;
}
.servic-pro .service-box_content {
    bottom: -24px;
}
.read-1 a {
        margin-bottom: 26px;
            margin-top: 30px;
            padding: 14px 17px;
            font-size: 17px;
    }
    .misson-part h2 {
        margin-bottom: 60px;
        font-size: 42px;
    }
          .misson-part h2:before {
        left: 20%;
        top: 47px;
        width: 58%;
    }
        .card__bx {
        height: 480px;
        margin-bottom: 25px;
    }
    .enq-box h2 {
    font-size: 32px;
}
    .enq-box p {
        width: 100%;
    }
        .foot-logo img {
        width: 64%;
        padding: 10px 10px;
    }
        .logo {
        width: 205px;
    }
    .copy {
    font-size: 17px;
}
        .first-foot p {
        text-align: justify;
    }
    nav.active {
        top: 100px;
    }
    nav ul li.menu-item {
        padding-right: 15px;
    }
        nav {
        top: 100px;
    }
        .contact-boxes-section {
        padding: 47px 0 50px;
    }
 }
   


@media screen and (max-width: 350px){

.banner-text h1 {
        font-size: 31px;
    }
        .banner-text h5 {
        font-size: 24px;
    }
        .banner-text p {
        font-size: 16px;
        line-height: 25px;
    }
       .logo {
        width: 180px;
    }
        .card__bx {
        height: 540px;
        margin-bottom: 25px;
    }
    .enq-box h2 {
        font-size: 27px;
    }
        .enq-box p {
        width: 100%;
        text-align: justify;
    }
    .foot-logo img {
        width: 72%;
        padding: 10px 10px;
    }
        footer {
        padding: 60px 0 10px 0;
    }
        .third-foot {
        margin-bottom: 24px;
    }
        .copy {
        font-size: 16px;
    }
}