
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face { 
    font-family: Arkitech-Light; 
    src: url('fonts/Arkitech-Light.ttf'); 
} 
@font-face { 
    font-family: Arkitech-Medium; 
    src: url('fonts/Arkitech-Medium.ttf'); 
} 
@font-face { 
    font-family: Arkitech-Bold; 
    src: url('fonts/Arkitech-Bold.ttf'); 
} 


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaryColor: #343a40;
    --secondaryColor: #D53427;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    /* user-select: none; */
}

::selection {
    background: var(--secondaryColor);
    color: #fff;
}

/* h1,h2,h3,h4,h5,h6 {
     
} */

a {
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.theme-section {
    padding: 100px 0;
}
.theme-section-2 {
    padding: 80px 0;
}

.button {
    padding: 12px 25px;
    /* background: var(--primaryColor); */
    color: #fff;
    letter-spacing: 0.65px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
    border: medium none;
    outline: none;
    box-shadow: none;
}
/* .button:hover {
    background: var(--secondaryColor);
} */

.button:not(.slider-btn)::before,
.button:not(.slider-btn)::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 4px;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.button:not(.slider-btn)::before {
    background: var(--primaryColor);
    width: 100%;
    right: 0;
}
.button:not(.slider-btn):hover::before {
    width: 0;
}
.button:not(.slider-btn)::after {
    width: 0;
    left: 0;
    background: var(--secondaryColor);
}
.button:not(.slider-btn):hover::after {
    width: 100%;
}
.slider-btn {
    padding: 8px 25px;
    background: var(--secondaryColor);
    border: 2px solid transparent;
    transition: none;
}
.slider-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.appoinment-btn {
    letter-spacing: 2.5px;
    font-family: Arkitech-Light;
    font-size: 12px;
}

/* .section-heading {

} */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.section-heading h2 {
    font-family: Arkitech-Medium;
    font-size: 30px;
    color: #283d50;
    text-align: center;
    font-weight: 500;
    position: relative;
    margin-bottom: 20px;
    text-transform: uppercase;
}
  
.section-heading p {
    text-align: center;
    margin: 0 auto;
    font-size: 15px;
    color: #556877;
    width: 50%;
    line-height: 1.7;
}

/* Scrollbar styles  */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primaryColor), var(--secondaryColor));
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }
  
  ::-webkit-scrollbar-thumb:hover{
    border: 0;
    /* background: var(--primaryColor); */
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;
  }

/* Header area styles  */

.header-top-nav {
    background: rgba(213, 52, 39, .65);
    padding: 12px 0;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-social-icons a {
    color: #fff;
    font-size: 14px;
}
.header-social-icons a:hover {
    color: var(--primaryColor);
}
.topbar-contact-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}
.topbar-contact-info:last-child {
    margin-left: 15px;
}
.topbar-contact-info:hover {
    color: var(--primaryColor);
}
.topbar-contact-info span {
    line-height: 1;
}
.sticky-header {
    position: relative;
    transition: none;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
}
.sticky-header.affix {
    height: auto !important;
}
/* .sticky-header.is_sticky {
    position: fixed;
    z-index: 1001;
    box-shadow: 2px 3px 10px 15px rgba(0,0,0,0.05);
} */
.sticky-header.is_sticky {
    position: fixed;
    z-index: 1001;
    background: rgba(255,255,255,.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 2px 3px 10px 15px rgba(0,0,0,0.05);
}
.header_white.is_sticky {
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 80px;
}

.navbar-expand-lg .navbar-nav {
    gap: 35px;
}

.navbar-brand {
    padding: 0;
}
.navbar-expand-lg .navbar-nav .nav-item {
    position: relative;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 60px 0;
    color: var(--primaryColor);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--secondaryColor);
}
.is_sticky.navbar-expand-lg .navbar-nav .nav-link {
    padding: 30px 0;
}
.navbar-expand-lg .navbar-nav .nav-item:hover > .nav-link {
    color: var(--secondaryColor);
}
.main-sub-menu {
    position: absolute;
    top: 90%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 4;
    margin: 0;
    padding: 0;
    min-width: 180px;
}
.main-sub-menu li {
    list-style: none;
}
.main-sub-menu li a {
    padding: 10px 15px;
    font-size: 14px;
    background: var(--primaryColor);
    color: #bbb;
}
.main-sub-menu li:last-child a {
    border-radius: 0 0 4px 4px;
}
.main-sub-menu li a:hover {
    background: var(--secondaryColor);
    color: #fff;
}
.navbar-expand-lg .navbar-nav .nav-item:hover .main-sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}


/* Slider area styles  */

.sliderSwiper .slider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.slider img {
    width: 100%;
}
.sliderSwiper .slider .container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-50%);
}
.sliderSwiper .slider .container .title {
    margin-bottom: 0;
}
.sliderSwiper .slider .container .title a {
    color: #fff;
    text-transform: uppercase;
    font-family: Arkitech-Bold;
}
.sliderSwiper .slider .container .description {
    color: #fff;
    width: 45%;
    margin-bottom: 0;
    line-height: 1.5;
    padding: 10px 0 15px;
    font-size: 36px;
}
.sliderSwiper .slider .container .description span {
    font-family: Arkitech-Bold;
    font-size: 32px;
}
.sliderSwiper .swiper-button-prev, .sliderSwiper .swiper-button-next {
    transform: translateY(44px);
    transition: all 0.3s ease;
    color: #fff;
}
.sliderSwiper .swiper-button-prev:hover, .sliderSwiper .swiper-button-next:hover {
    color: var(--secondaryColor);
}
.sliderSwiper .swiper-pagination {
    bottom: 30px;
}
.sliderSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.79;
}
.sliderSwiper .swiper-pagination-bullet-active {
    background: var(--secondaryColor);
}

.banner-area {
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}
.banner-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.banner-area .container {
    z-index: 3;
}
.banner-area img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}
.banner-area h4 {
    color: #fff;
    font-size: 28px;
    font-family: Arkitech-Medium;
}
.banner-area h4 span {
    font-size: 22px;
    font-family: 'Inter', sans-serif;
}
.banner-area h2 {
    color: #fff;
    font-size: 42px;
    font-family: Arkitech-Medium; 
}

.concern-details-content h3 {
    margin-bottom: 20px;
}
.concern-details-content span{
    font-size: 24px;
}
.web-link a {
    color: var(--secondaryColor);
    margin-right: 5px;
    text-decoration: underline;
}

/* About us section styles  */

.about-us-img img {
    width: 100%;
    object-fit: cover;
    border: 5px solid var(--primaryColor);
    border-radius: 20px;
}

.about-us-content {
    padding-left: 30px;
}
.about-us-details-section .about-us-content {
    padding-left: 0;
}

.about-us-content h2 {
    color: var(--primaryColor);
    font-size: 35px;
    font-family: Arkitech-Medium;
    margin-bottom: 15px;
}
.about-us-content p {
    font-size: 16px;
    line-height: 1.7;
}
.about-us-content .button {
    margin-top: 15px;
}

.our-vision-mission {
    margin-top: 50px;
}
.about-us-details-section .our-vision-mission {
    margin-top: 15px;
}
.about-us-details-section .single-vision-mision:last-child {
    margin-top: 20px;
}
.vision-mission-content {
    text-align: center;
    padding: 35px;
    border-radius: 15px;
    /* box-shadow: inset 0px 0px 15px 15px rgba(213, 52, 39, .05); */
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to right, rgba(52, 58, 64, 0.15), rgba(213, 52, 39, .05));
}
.vision-mission-content:hover {
    transform: translateY(-12px);
}
.vision-mission-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: Arkitech-Medium;
}
.vision-mission-content p {
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 16px;
    /* font-style: italic; */
}

.about-us-content h3 span {
    font-size: 22px;
}


/* Message from chairman & director */

.chairman-director-msg-section {
    background: var(--primaryColor);
    padding: 70px 0;
    overflow: hidden;
}

.chairman-director-msg-section .section-heading {
    margin-bottom: 40px;
}

.chairman-director-msg-section .section-heading h3 {
    color: #fff;
}

.chairman-director-msg-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* .chairman-director-img {
    flex: 1;
} */

.chairman-director-img img {
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255,.3);
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.chairman-director-msg {
    background: rgba(52, 58, 64, .3);
    height: fit-content;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: inset 0px 0px 15px rgba(255,255,255,.5);
    color: #ddd;
    position: relative;
    flex: 1;
}

.chairman-director-msg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-color: transparent rgba(255,255,255,.3) transparent transparent;
    border-width: 10px;
    border-style: solid;
}

.director-msg {
    flex-direction: row-reverse;
    margin-top: 40px;
}

.director-msg .chairman-director-msg::before {
    left: auto;
    right: -20px;
    border-color: transparent transparent transparent rgba(255,255,255,.3);
}

.chairman-director-msg p {
    font-size: 14px;
    letter-spacing: 0.65px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.chairman-director-msg h6 {
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: 0.65px;
    font-weight: 500;
}
.chairman-director-msg p.designation {
    margin-bottom: 0;
}


.msgFromChairmanDiretor .msgMore {
    display: none;
    transition: all 0.3s ease
}
.msgFromChairmanDiretor.more .msgMore {
    display: inline;
    transition: all 0.3s ease
}
.msgFromChairmanDiretor .lessDot {
    transition: all 0.3s ease
}
.msgFromChairmanDiretor.more .lessDot {
    display: none;
    transition: all 0.3s ease
}
.msgShowMoreBtn {
    display: inline-block;
    text-decoration: underline;
    color: #aaa;
    font-weight: 600;
    font-style: italic;
}
.msgShowMoreBtn:hover {
    color: #D53427;
}





/* Companies profile area styles  */
.companies-profile-section {
    padding: 100px 0 60px;
}
.companies-list-wrapper {
    overflow: hidden;
    display: flex;
    position: relative;
    /* gap: 30px; */
}
.companies-list-wrapper::before,
.companies-list-wrapper::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 100px;
    z-index: 1;
}
.companies-list-wrapper::before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), white);
}
.companies-list-wrapper::after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), white);
}
.companies-list {
    display: inline-flex;
    gap: 30px;
    animation: marquee 10s linear infinite;
    padding: 0 30px;
    padding-left: 0;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* .companies-list:hover {
    animation-play-state: paused;
} */
.company-img-container {
    box-shadow: inset 2px 2px 15px 2px rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 15px;
    width: 220px;
    height: 200px;
    display: grid;
    place-content: center;
}
.company-img-container img {
    width: 100%;
}
.single-company h6 {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
}

.splide {
    visibility: visible;
    height: 500px;
    padding: 0;
}

.splide img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.companies-slider {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}
.main-slider {
    flex: auto;
    flex-basis: 80%;
}
.thumbnail-slider.splide {
    flex-basis: 20%;
}
.thumbnail-slider .splide__slide {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    height: fit-content !important;
    border-radius: 10px !important;
}
.thumbnail-slider .splide__track {
    height: 100% !important;
}
.thumbnail-slider.splide img {
    height: 80px;
    border-radius: 6px 6px 0 0 !important;
    object-fit: cover;
}
.thumbnail-slider .splide__arrows--ttb .splide__arrow--prev {
    top: 0;
}
.thumbnail-slider .splide__arrows--ttb .splide__arrow--next {
    bottom: 0;
}

.thumbnail-slider h6 {
    margin-bottom: 0;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    background: #f6f6f6;
    border-radius: 0 0 6px 6px;
}
.main-slider .splide__slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 6px;
}
.company-info-content {
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255,.4);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    width: 45%;
    outline: 7px solid rgba(255, 255, 255,.5);
    outline-offset: 7px;
    z-index: 2;
}
.company-info-content h3 {
    color: var(--primaryColor);
    font-family: Arkitech-Medium;
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.company-info-content p {
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.global-reach-section {
    background: var(--primaryColor);
    position: relative;
}

.global-reach-section .section-heading h2 {
    color: #fff;
}

.single-reach {
    color: #fff;
    position: relative;
    text-align: center;
    background: rgba(52, 58, 64, .3);
    backdrop-filter: blur(10px);
    box-shadow: inset 0px 0px 15px rgba(255,255,255,.5);
    color: #ddd;
    padding: 20px;
    border-radius: 10px;
}

.single-reach h2 {
    font-size: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}
.single-reach p {
    margin-bottom: 0;
    font-size: 20px;
}



/* Our Porducts section styles  */
.our-product-section {
    padding: 60px 0;
    background: #f6f6f6;
}

.our-products-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
}
.single-product {
    text-align: center;
    transition: all 0.3s ease 0s;
}
.product-img {
    width: 220px;
    height: 200px;
    box-shadow: inset 2px 2px 15px 2px rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 15px;
    z-index: 0;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* border-radius: 50%; */
    transition: all 0.3s ease 0s;
}
.single-product:hover img {
    transform: scale(1.1);
}
.single-product h6 {
    margin-bottom: 0;
    font-size: 13px;
    /* font-weight: 500; */
    font-family: Arkitech-Medium;
    text-transform: uppercase;
}
.single-product:hover h6 {
    color: var(--secondaryColor);
}


/* Board of direcotrs section styles */

.board-of-directors-section {
    background: var(--primaryColor);
}

.board-of-directors-section .section-heading h2,
.board-of-directors-section .section-heading p {
    color: #fff;
}
.single-board-of-director {
    transition: all 0.4s ease 0s;
}
.single-board-of-director:hover {
    transform: translateY(-12px);
}
.border-of-director-img {
    width: 100%;
    text-align: center;
}

.border-of-director-img img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease 0s;
}
.border-of-director-info {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.border-of-director-info h4 {
    font-size: 22px;
    font-weight: 500;
    color: var(--secondaryColor);
}
.border-of-director-info h5 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}
.border-of-director-info h6 {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    font-family: Arkitech-Bold;
}


/* Blog section styles  */
.single-blog-post {
    box-shadow: 2px 3px 10px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
}
.single-blog-post:hover {
    transform: translateY(-12px);
}
.blog-img {
    height: 235px;
}
.blog-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}
.blog-img .embed-responsive {
    height: 100%;
}
.blog-img iframe {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 100%;
}
.blog-content {
    padding: 20px;
    border-radius: 0 0 10px 10px;
}
.blog-content h4 {
    color: var(--primaryColor);
    font-size: 22px;
    margin-bottom: 15px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.3s ease;
}
.single-blog-post:hover .blog-content h4 {
    color: var(--secondaryColor);
}
.blog-content p {
    line-height: 1.7;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 75px;
    margin-bottom: 0;
}
.blog-content a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.blog-content a:hover {
    gap: 10px;
}

.blogList .col-lg-4.hidden {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.4s ease-in-out;
}
.col-lg-4:nth-child(n + 4) .single-blog-post {
    margin-top: 30px;
}
.see-more-blogs {
    text-align: center;
    margin-top: 35px;
}

#seeMoreBlogBtn.hidden,
#seeLessBlogBtn.hidden {
    display: none;
}


/* Contact area styles  */

.contact-section {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    overflow: hidden;
}

.contact-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 4px;
}

.contact-address {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-contact-address {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primaryColor);
}
.single-contact-address:nth-child(n + 2) {
    margin-top: 12px;
}
.single-contact-address p,
.single-contact-address p a {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--primaryColor);
}
.single-contact-address p:hover,
.single-contact-address p a:hover {
    color: var(--secondaryColor);
}
.contact-section .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0A385C;
}
  
.contact-section .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    color: #888;
}
  
.contact-section .social-links {
    padding-bottom: 20px;
}
  
.contact-section .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #0A385C;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #0A385C;
}
  
.contact-section .social-links a:hover {
    background: #0A385C;
    color: #fff;
}
  
.contact-section .info {
    color: #283d50;
}
  
.contact-section .info i {
    font-size: 32px;
    color: #0A385C;
    float: left;
    line-height: 1;
}
  
.contact-section .info p {
    padding: 0 0 10px 36px;
    line-height: 28px;
    font-size: 14px;
}
  
.contact-section .form #sendmessage {
    color: #0A385C;
    border: 1px solid #0A385C;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
  
.contact-section .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
  
.contact-section .form #sendmessage.show,
.contact-section .form #errormessage.show,
.contact-section .form .show {
    display: block;
}
  
.contact-section .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}
  
.contact-section .form input,
.contact-section .form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}
  
.contact-section .form input {
    border-radius: 4px;
}
  
.contact-section .form textarea {
    border-radius: 4px;
}
  
.contact-section .form input:focus,
.contact-section .form textarea:focus {
    border-color: #0A385C;
}
  

/* Footer area styles  */

.footer-section {
    padding: 50px 0;
    background: linear-gradient(to right, rgba(52, 58, 64, 0.15), rgba(213, 52, 39, .05));
    text-align: center;
}

.footer-top-content img {
    width: 100px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-top-content p {
    width: 65%;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 16px;
}
.social-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-menu li {
    list-style: none;
}

.social-menu li a {
    color: var(--primaryColor);
    font-size: 18px;
}
.social-menu li a:hover {
    color: var(--secondaryColor);
}

.footer-copyright-info {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-copyright-info p {
    margin-bottom: 0;
    font-size: 14px;
}
.footer-copyright-info p a {
    color: var(--secondaryColor);
    font-weight: 500;
}

.dots {
    overflow: hidden;
    position: relative;
}

.dots canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


/* Progress scroll to top  */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    border: 2px solid var(--secondaryColor);
    background: #fff;
}
  
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
  
.progress-wrap span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    line-height: 1;
}
  
.progress-wrap span,
.progress-wrap span svg {
    color: var(--secondaryColor);
}
  
.progress-wrap svg path {
    fill: none;
}
  
.progress-wrap svg.progress-circle path {
    stroke-width: 10;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    stroke: var(--secondaryColor);
}
  
.progress-wrap i {
    font-size: 18px;
    position: relative;
    top: 3px;
    animation: backToTop 2s linear infinite;
}
  
@keyframes backToTop {
    0% {
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10px);
        opacity: 0;
    }
}


.contact-address address {
    margin: 0;
}


.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1010;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Responsive styles */

@media screen and (max-width: 767.98px) {
    .header-social-icons {
        gap: 35px;
        justify-content: center;
    }
    /* .header-social-icons a {
        font-size: 16px;
    } */
    .topbar-contact-info:last-child {
        margin-left: 25px;
    }
    
    .companies-slider {
        margin-top: 25px;
        gap: 25px;
        flex-direction: column;
    }
    .thumbnail-slider .splide__slide {
        width: 50% !important;
    }
    
    .sliderSwiper .slider .container .description {
        width: 90%;
        line-height: 1.6;
        padding: 0;
        font-size: 18px;
    }
    .sliderSwiper .slider .container .description span {
        font-size: 18px;
    }
    .chairman-director-msg-wrapper {
        gap: 25px;
        align-items: center;
        flex-direction: column-reverse;
    }
    .director-msg {
        flex-direction: column-reverse;
        margin-top: 50px;
    }
    .our-products-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .product-img {
        width: 100%;
        height: 180px;
    }
    .single-product h6 {
        font-size: 12px;
    }
    .section-heading h2 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    .col-lg-3:nth-child(n + 2) .single-reach {
        margin-top: 25px;
    }
    .single-reach h2 {
        font-size: 36px;
    }
    .single-reach p {
        font-size: 18px;
    }
    .company-info-content {
        width: 85%;
        backdrop-filter: blur(5px);
    }
    .company-info-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .company-info-content p {
        line-height: 1.5;
        margin-bottom: 15px;
        font-size: 14px;
    }
    .company-info-content .button {
        padding: 10px 25px;
    }
    .about-us-img {
        margin-top: 30px;
    }
    .about-us-content {
        padding-left: 0;
    }
    .theme-section {
        padding: 60px 0;
    }
    .theme-section-2 {
        padding: 50px 0;
    }
    .col-lg-6:nth-child(n + 2) .vision-mission-content {
        margin-top: 25px;
    }
    .section-heading p {
        width: 90%;
    }
    .col-lg-4:nth-child(n + 2) .single-blog-post,
    .col-lg-4:nth-child(n + 2) .single-board-of-director {
        margin-top: 25px;
    }
    .footer-top-content p {
        width: 85%;
    }
    .about-us-content h2 {
        font-size: 22px;
    }
    .vision-mission-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .vision-mission-content {
        padding: 20px;
    }
    .chairman-director-msg p {
        font-size: 16px;
        line-height: 1.7;
    }
    .chairman-director-img img {
        width: 250px;
        height: 250px;
    }
    .chairman-director-msg {
        backdrop-filter: none;
    }
    .main-slider.splide .splide__slide {
        height: 250px !important;
    }
    .main-slider.splide img {
        object-fit: cover;
    }
    .company-img-container {
        padding: 25px;
        width: 190px;
        height: 160px;
    }
    .companies-profile-section {
        padding: 60px 0;
    }
    .border-of-director-info h4 {
        font-size: 20px;
    }
    .border-of-director-info h5 {
        font-size: 17px;
    }
    .border-of-director-info {
        margin-top: -1px;
    }
    .blog-content h4 a {
        font-size: 20px;
    }
    .blog-content p {
        line-height: 1.6;
        height: auto;
    }
    .single-contact-address p, .single-contact-address p a {
        font-size: 16px;
    }
    .contactForm .row .form-group:nth-child(n + 2) {
        margin-top: 15px;
    }
    .banner-area h2 {
        font-size: 32px;
        line-height: 1.4;
    }
    .concern-details-content h3 {
        line-height: 1.6;
    }
    .slider img {
        height: 320px;
        object-fit: cover;
        object-position: center;
    }
    .about-us-content .button {
        margin-top: 5px;
    }
    .thumbnail-slider.splide {
        height: auto;
    }

}

@media (max-width: 991.98px) {
    .sticky-header .navbar-brand {
        padding: 15px 0;
    }
    .sticky-header.is_sticky .navbar-brand {
        padding: 5px 0;
    }
    .navbar-expand-lg .navbar-nav {
        gap: 0;
        border-top: 1px solid #ddd;
    }
    .is_sticky.navbar-expand-lg .navbar-nav .nav-link,
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 0;
    }
    .navbar-collapse.collapse.show {
        padding-bottom: 15px;
    }
    .main-sub-menu {
        position: unset;
        opacity: 1;
        visibility: visible;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .main-sub-menu li a {
        background: transparent;
        color: var(--primaryColor);
        font-weight: 500;
        font-size: 15px;
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .main-sub-menu li a:hover,
    .main-sub-menu li a:active {
        background: transparent;
        color: var(--secondaryColor);
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .thumbnail-slider .splide__slide {
        width: 40% !important;
    }
    .col-lg-3:nth-child(n + 2) .single-reach {
        margin-top: 0;
    }
    .col-lg-3:nth-child(n + 3) .single-reach {
        margin-top: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .theme-section {
        padding: 70px 0;
    }
    .theme-section-2 {
        padding: 60px 0;
    }
    .vision-mission-content {
        padding: 25px;
    }
    .vision-mission-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .vision-mission-content p {
        line-height: 1.6;
        font-size: 15px;
    }
    .sliderSwiper .slider .container .description {
        width: 90%;
        line-height: 1.6;
        padding: 0;
        font-size: 22px;
    }
    .sliderSwiper .slider .container .description span {
        font-size: 22px;
    }
    .about-us-content {
        padding-left: 10px;
    }
    .about-us-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .about-us-content p {
        font-size: 15px;
        line-height: 1.7;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        display: -webkit-box;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .about-us-content .button {
        margin-top: 0;
    }
    .chairman-director-msg-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        gap: 25px;
    }
    .director-msg {
        flex-direction: column-reverse;
        margin-top: 35px;
    }
    .companies-profile-section {
        padding: 70px 0 60px;
    }
    .col-lg-3:nth-child(n + 3) .single-reach {
        margin-top: 30px;
    }
    .companies-slider {
        margin-top: 25px;
        gap: 25px;
        flex-direction: column;
    }
    .thumbnail-slider.splide {
        height: auto;
    }
    .thumbnail-slider h6 {
        font-size: 13px;
    }
    .thumbnail-slider .splide__slide {
        width: 35% !important;
    }
    .company-info-content {
        padding: 15px;
        width: 65%;
    }
    .company-info-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .company-info-content p {
        line-height: 1.5;
        margin-bottom: 15px;
    }
    .company-info-content .button {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .section-heading h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .section-heading p {
        width: 80%;
    }
    .col-md-6:nth-child(n + 3) .single-blog-post,
    .col-md-6:nth-child(n + 3) .single-board-of-director {
        margin-top: 30px;
    }
    .footer-top-content p {
        width: 75%;
        margin-bottom: 15px;
        font-size: 15px;
    }
    
}


@media (min-width: 992px) and (max-width: 1199.98px) {
    .sliderSwiper .slider .container .description {
        width: 80%;
        line-height: 1.6;
        padding: 0;
        font-size: 20px;
    }
    .sliderSwiper .slider .container .description span {
        font-size: 24px;
    }
}









