/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.5
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

:root{
	--blue-color:#3E4095;
	--red-color:#C52F33;
    --heading-color:#181d24;
}
.container-fluid{
	width: 94%;
}
section{
    padding: 60px 0;
    overflow: hidden;
}
a{
    text-decoration: none;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}
h1, h2, h3, h4, h5 {
    font-family: 'Red Hat Text', sans-serif;
}
.about-video video {
  max-width: 100%;
  height: auto;
}
.main-header {
            background-color: #fff;
            padding: 10px 0;
        }

        
a.logo-brand img {
    width: 65%;
}
   
.about-video video {
    border-radius: 18px !important;
}
     a.main-btn {
    position: relative;
    display: inline-block;
    background-color: aliceblue;
    z-index: 1;
    padding: 12px 20px;
    text-align: center;
    transition: 0.6s;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 15px;
    /* box-shadow: 0 20px 50px rgba(0,0,0,.5); */
    overflow: hidden;
}
a.main-btn:hover{box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
transform: translateY(-6px);}
a.main-btn::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 100%;
    background: var(--blue-color);
    z-index: -1;
}
a.main-btn span:nth-child(1)
{
position:absolute;
top:0;
left:0;
width:100%;
height:3px;
background:linear-gradient(to right, #d99551, #e89840);
animation: animate1 2s linear infinite;
animation-delay:1s;
}
@keyframes animate1
{
0%
{
transform:translateX(-100%);
}
100%
{
transform:translateX(100%);
}
}
a.main-btn span:nth-child(2)
{
position:absolute;
top:0;
right:0;
width:3px;
height:100%;
background:linear-gradient(to bottom, #d99551 ,#e89840);
animation: animate2 2s linear infinite;
animation-delay:2s;
}
@keyframes animate2
{
0%
{
transform:translateY(-100%);
}
100%
{
transform:translateY(100%);
}
}
a.main-btn span:nth-child(3)
{
position:absolute;
bottom:0;
left:0;
width:100%;
height:3px;
background:linear-gradient(to left, #cc7071, #d47c64);
animation: animate3 2s linear infinite;
animation-delay:1s;
}
@keyframes animate3
{
0%
{
transform:translateX(100%);
}
100%
{
transform:translateX(-100%);
}
}
a.main-btn span:nth-child(4)
{
position:absolute;
top:0;
left:0;
width:3px;
height:100%;
background:linear-gradient(to top, #cf756b, #e18d4d);
animation: animate4 2s linear infinite;
animation-delay:2s;
}

@keyframes animate4
{
0%
{
transform:translateY(100%);
}
}




.banner{
    position: relative;
    padding: 0;
}
.banner-content {
    position: absolute;
    top: 23%;
    left: 5%;
    color: #fff;
}
.banner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .8;
    transition: opacity .15s ease;
}
.banner-content h1 {
    max-width: 700px;
    font-size: 50px;
	color: #fff;
}
.banner-content p {
    max-width: 548px;
    font-size: 16px;
    margin: 15px 0 25px;
}
.banner-btn {
    background-color: #fff;
    color: var(--green-color);
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 37px;
    display: inline-flex;
    border: 1px solid #fff;
    transition: all 0.3s !important;
}
.banner-btn:hover{
    background-color: transparent;
    color: #fff;
}
a.banner-btn i {
    transform: rotate(320deg) !important;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	padding-left: 5px;
}

.main-btn-2{
    background-color: transparent !important;
    z-index: 1;
    padding: 12px 20px;
    text-align: center;
    transition: 0.6s;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600 !important;
}
.main-btn-2::before{
	background: transparent !important;
}

a.main-btn-2 span:nth-child(1)
{
position:absolute;
top:0;
left:0;
width:100%;
height:3px;
background:linear-gradient(to right, #fff, #fff);
animation: animate1 2s linear infinite;
animation-delay:1s;
}
@keyframes animate1
{
0%
{
transform:translateX(-100%);
}
100%
{
transform:translateX(100%);
}
}
a.main-btn-2 span:nth-child(2)
{
position:absolute;
top:0;
right:0;
width:3px;
height:100%;
background:linear-gradient(to bottom, #fff ,#fff);
animation: animate2 2s linear infinite;
animation-delay:2s;
}
@keyframes animate2
{
0%
{
transform:translateY(-100%);
}
100%
{
transform:translateY(100%);
}
}
a.main-btn-2 span:nth-child(3)
{
position:absolute;
bottom:0;
left:0;
width:100%;
height:3px;
background:linear-gradient(to left, #fff, #fff);
animation: animate3 2s linear infinite;
animation-delay:1s;
}
@keyframes animate3
{
0%
{
transform:translateX(100%);
}
100%
{
transform:translateX(-100%);
}
}
a.main-btn-2 span:nth-child(4)
{
position:absolute;
top:0;
left:0;
width:3px;
height:100%;
background:linear-gradient(to top, #fff, #fff);
animation: animate4 2s linear infinite;
animation-delay:2s;
}

@keyframes animate4
{
0%
{
transform:translateY(100%);
}
}



section.ourdivision {
    margin: -100px 0 0 0;
    position: relative;
    z-index: 9;
    padding: 0;
}
.container-fluid.extermee {
    background: #fff;
    padding: 35px 10px;
    box-shadow: 0 0 3px #3e4095;
    border-radius: 16px;
    width: 85%;
}
h2.mainheadingset {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 10px;
    padding-left: 35px;
}
h2.mainheadingset:before {
    position: absolute;
    content: '';
    bottom: 49%;
    right: 35px;
    background: linear-gradient(90deg, #00083B, #002C8C);
    width: 32%;
    height: 4px;
}
.product-category-section {
    background: linear-gradient(rgb(6 1 36 / 98%), rgb(206 146 15 / 90%));
}

.category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-image {
    padding: 30px;
}

.category-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}

.category-content {
    padding: 25px 20px 30px;
    border-top: 2px dashed #1aa6a6;
}

.category-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.category-content p {
    font-size: 14px;
    color: #555;
}
.wpls-fix-box img.wp-post-image {
    width: 100%;
    border: 1px dashed var(--red-color) !important;
}
    .about-sec .about-media {
        margin-left: -30px;
            position: relative;
    z-index: 1;
    }
    section#nikvin {
    background: #f2f2f2;
}
.about-sec .about-media .about-feat {
    width: 80%;
    height: auto;
        position: relative;
    z-index: 1;
}
.about-sec .about-media .about-feat::before {
    background: transparent;
    border: 2px solid var(--red-color);
    left: 40px;
    top: 40px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    z-index: -1;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
}
.about-sec .about-media .about-feat img {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
}
.about-stat {
    position: absolute;
    right: 0px;
    top: 40px;
    padding: 30px 25px;
    z-index: 1;
    background: var(--blue-color);
    border-radius: 30px;
}
.display-2, .sec-title {
    font-family:"Onest", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.19;
    color: var(--headings-color);
}
.about-stat p {
    color: #fff;
    margin: 0;
}
.about-sec .about-media > img {
    position: absolute;
    right: 0;
    bottom: -80px;
    z-index: 1;
    width: 56%;
}
.about-sub-head{
	 color: var(--red-color);
    font-weight: 600;
	font-size:16px;
}
.about-content span{
    color: var(--blue-color);
    font-weight: 600;
}
.about-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 15px 0;
    color: var(--heading-color);
}

.about-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-icon-content p i {
    font-weight: 500;
}
.about-icon i {
    font-size: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--red-color);
    color: #fff;
    animation: animate_pulse 3s linear infinite;
}
@keyframes animate_pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255, 0, 0, 0.2), 0 0 0 0 rgba(117, 13, 13, 0.4);
    }
    40%{
        box-shadow: 0 0 0 50px rgba(88, 9, 42, 0), 0 0 0 0 rgba(83, 7, 7, 0.4);
    }
    80%{
        box-shadow: 0 0 0 50px rgba(255, 0, 0, 0), 0 0 0 30px rgba(167, 8, 8, 0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0), 0 0 0 30px rgba(255, 0, 0, 0);
    }
}
.about-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 2px solid #ff8d8d;
    padding: 15px 15px 5px 15px;
    border-radius: 20px;
    margin: 10px 0;
}



/* mission */

.vl-service-icon-bo2x {
    border-radius: 30px;
    border: 1px solid rgba(12,50,38,.05);
    background: #fff;
    transition: .3s;
    padding: 32px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.vl-service-icon-bo2x .icon span {
    background: #f3f5f4;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    transition: .3s;
    font-size: 25px;
    color: var(--blue-color);
}
.vl-service-icon-bo2x:hover .icon span {
    transform: rotateY(180deg);
    background: var(--vkl-text-text-6);
    transition: .3s;
}
.vl-service-icon-bo2x:hover .icon span {
    background: #fff;
    color: var(--blue-color);
}
.vl-service-icon-bo2x .content .title {
    padding-top: 24px;
    color: var(--blue-color);
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    transition: .3s;
}
.vl-service-icon-bo2x:hover .content .title {
    color: #fff;
}
.vl-service-icon-bo2x:hover .content .para{
    color: #fff;
}

.vl-service-icon-bo2x .content .para {
    color: #4a4a47;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-top: 16px;
    padding-bottom: 24px;
    transition: .3s;
}
.vl-service-icon-bo2x .content .service-learnmore {
    text-transform: uppercase;
    transition: .3s;
    color: var(--blue-color);
    font-size: 18px;
    line-height: 18px;
    font-weight:700;
    margin-right: 4px;
    display: inline-block;
    
}
.vl-service-icon-bo2x:hover .content .service-learnmore{
    color: #fff;
}
.vl-service-icon-bo2x:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    background: var(--blue-color);
    border-radius: 30px;
    z-index: -1;
    transition: .3s;
}
.vl-service-icon-bo2x:hover:after {
    height: 100%;
}
.vl-service-icon-bo2x:hover {
    transform: translateY(-3px);
}

.bo2x{
    background: var(--blue-color);
}
.bo2x .icon span {
    background: #fff;
    color: var(--blue-color);
}
.bo2x .content .title {
    color: #fff;
}
.bo2x .content .para {
    color: #fff;
}
.bo2x .content .service-learnmore {
    color: #fff;
}


section#why-choose-us {
    margin: 0px 0 0 0;
}

.main-why {
    text-align: center;
}

.main-why b {
    font-size: 16px;
    color: var(--red-color);
}

.main-why h3 {
    font-size: 40px;
    font-weight: 600;
    margin: 10px 0 15px 0;
    color: var(--heading-color);
}

.main-why {
    margin: 4px 0 50px 0;
}

.inner-why {
    text-align: right;
    margin: 50px 0 0px 0;
}

.inner-why h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 16px 0 10px 0;
    color: var(--blue-color);
}

.inner-why-img img {
    border-radius: 300px 300px 0px 0px;
}

.inner-whyt {
    text-align: left;
    margin: 50px 0 0px 0;
}

.inner-whyt h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 16px 0 10px 0;
    color: var(--blue-color);
}
.inner-why i {
    color: var(--blue-color);
    font-size: 40px;
}
.inner-whyt i {
color: var(--blue-color);
    font-size: 40px;
}







section#products {
    background: url(images/product-bg-nik-2.webp), rgb(0 0 0 / 69%);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
}
.section-title-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}
.product-sub {
    color: #fff !important;
    max-width: 900px;
    margin: auto;
}
.product-title {
    color: #fff !important;
    font-size: 40px;
    font-weight: 600;
}
.experties-box {
	color: #606060;
	padding: 0 10px 60px;
	border-radius: 16px;
	margin: 80px 0 30px;
	background: rgba(255, 255, 255, .18);
	box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
	backdrop-filter: blur(2.1px);
	-webkit-backdrop-filter: blur(2.1px);
	border: 1px solid rgba(255, 255, 255, .3);
	position: relative
}

.experties-box:hover .experties-sub-box .experties-sub-box-image {
	transform: rotateX(360deg)
}

.experties-sub-box {
	text-align: center;
	padding: 15px 20px 30px;
	margin-top: -50px;
	border-radius: 25px;
	background-color: #fff;
	position: relative;
	transition: .3s
}

.btn-stroke,
.experties-box .read-more {
	background-color: var(--blue-color);
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	color: #fff
}

.experties-box .experties-sub-box::after {
	content: '';
	height: 0;
	width: 0;
	border: 25px solid transparent;
	border-top: 25px solid #fff;
	transform: translateX(-50%);
	position: absolute;
	bottom: -49px;
	left: 50%
}

.experties-box .experties-sub-box-image {
	display: inline-block;
	margin-bottom: 10px;
	transition: .3s
}

.experties-sub-box-image img {
	border-radius: 20px
}

p.sub-box-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 5px;
}
.experties-sub-box p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.experties-box .read-more {
	display: block;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	padding: 12px 0;
	border-radius: 15px;
	transition: .3s;
	position: absolute;
	bottom: -22px
}

.btn-base {
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: .5rem;
	cursor: pointer;
	text-align: center;
	transition: .3s cubic-bezier(.4, 0, .2, 1);
	border: none;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 10
}

@keyframes continuous-draw-h {

	0%,
	100%,
	75% {
		width: 0%
	}

	25%,
	50% {
		width: 100%
	}
}

@keyframes continuous-draw-v {

	0%,
	100%,
	75% {
		height: 0%
	}

	25%,
	50% {
		height: 100%
	}
}

.btn-stroke {
	padding: 12px 20px;
	position: absolute;
	bottom: -25px
}

.btn-stroke:hover {
	background-color: rgba(4, 0, 227, 0.2);
	color: #fff
}

.btn-stroke:active {
	transform: scale(.98)
}

.btn-stroke::after,
.btn-stroke::before {
	content: '';
	position: absolute;
	background-color: #fff;
	height: 2px;
	animation: 1.5s linear infinite continuous-draw-h;
	z-index: -1
}

.btn-stroke::before {
	top: 0;
	left: 0;
	animation-delay: 0s
}

.btn-stroke::after {
	bottom: 0;
	right: 0;
	animation-delay: .75s
}

.btn-stroke span {
	position: absolute;
	background-color: #fff;
	width: 2px;
	height: 0;
	animation: 1.5s linear infinite continuous-draw-v;
	z-index: -1
}

.btn-stroke .left-line {
	top: 0;
	left: 0;
	animation-delay: 375ms
}

.btn-stroke .right-line {
	bottom: 0;
	right: 0;
	animation-delay: 1.125s
}

.btn-stroke:hover::after,
.btn-stroke:hover::before {
	width: 100%;
	animation: none
}

.btn-stroke:hover .left-line,
.btn-stroke:hover .right-line {
	height: 100%;
	animation: none
}





.right-box{
 background-size: cover !important;
    background-position: center !important;
}
.right-box-2 {
    position: absolute;
    top: 10%;
    left: -9%;
}
.comit-1 {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}
.comit-1 i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-color);
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
}
.left-box{
    background-size: cover;
    background-position: center;
}

.left-box-2 {
    /* position: absolute;
    top: 10%;
    left: 0%; */
    padding: 60px 90px 0 60px;
    color: #fff;
}
.left-box-2 h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 10px 0;
}


.stat-box {
    text-align: center;
    background: #fff;
    margin: 12px 0;
    padding: 20px 15px;
}
.stat-box h3 {
    font-weight: bold;
    font-size: 40px;
    color: var(--red-color);
}
.stat-box p {
    margin: 0;
    color: #444;
    font-size: 16px;
}




section.contact-us-section {
    position: relative;
}
section.contact-us-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56%;
    background: #06003a;
    z-index: 0;
}
.contact-us-section .main-heading {
    font-size: 40px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;
    color: var(--heading-color);
}
/* .contact-us-section .line {
    width: 70px;
    height: 2px;
    margin: 15px 0;
} */
.contact-us-section p {
    font-size: 16px;
    /* color: #666; */
    margin-bottom: 30px;
}
.country-info p {
    color: #fff;
}
.contact-us-section .country-info {
    margin-top: 5%;
}
.contact-us-section .india-flag {
    width: 50px;
    height: auto;
    margin-right: 10px;
}
.country-info h5 {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    vertical-align: middle;
}
.country-border {
    border: 1px solid #ffffff;
    width: 100%;
}
.contact-icons {
    margin-top: 30px;
}
.contact-icons .icon-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-icons .icon-item i {
    font-size: 24px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding: 12px;
    margin-right: 20px;
    transition: background-color 0.3s, color 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icons .icon-item span {
    font-size: 16px;
    color: #ffffff;
}
.icon-item a {
    color: #fff;
}
.contact-us-section .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section.contact-us-section .col-md-6 {
    z-index: 2;
}

.contact-form {
    padding: 40px;
    background-color: #fff;
    border-radius: 35px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.contact-form .form-control {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    width: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    color: #444444;
    background-color: color-mix(in srgb,#fff, transparent 50%);
    border-color: color-mix(in srgb, var(--blue-color), transparent 60%);
}
.contact-form textarea.form-control {
    height: 100px;
}
.contact-form .btn-estimate {
    background-color: var(--blue-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    /* margin-top: 50px; */
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}



/* Testimonial-css */
section.Testimonial-section {
    padding: 15px 0 45px 0;
}
.testimonial-card {
    background: #f1f6ff;
    border-radius: 10px;
    padding: 15px;
}
span.stars {
    font-size: 25px;
    color: #dd9d36;
}
button.testi-btn {
    background: #0a2043;
    border: none;
    padding: 3px 13px;
    border-radius: 8px;
}
button.testi-btn a {
    color: #fff;
    font-size: 15px;
	text-decoration:none;
}
img.img-fluid.testimonial-img {
    border-radius: 12px;
}
.testimonial-author h5 {
    font-weight: bold;
    color: #072554;
}
h6.testimonial-content {
    color: #dd9d36;
    font-weight: bold;
    font-size: 20px;
}
img.img-fluid.client-img {
    border-radius: 47px;
}



/* footer */
.footer{
    padding: 60px 0;
    background-color: #000000;
}
.foote-logo-box{
    color: #fff;
}
.foote-logo-box img {
    height: 80px;
}
.foote-logo-box h4 {
    margin: 15px 0;
}
ul.footer-social {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 15px;
    margin-top: 25px;
}
ul.footer-social li a i {
    width: 30px;
    height: 30px;
    background-color: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border-radius: 50%;
    border: 1px solid var(--red-color);
    transition: all 0.3s;
    color: #fff;
}
ul.footer-social li a i:hover{
    background-color: transparent;
    color: var(--red-color);
    
}
span.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    display: block;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.footer-links li a {
    line-height: 40px;
    color: #fff;
    transition: all 0.3s;
}
.footer-links li{
    color: #fff;
}
.footer-links li:hover{
    color: var(--red-color);
}
.footer-links li a:hover{
    color: var(--red-color);
}
.footer-links li a i {
    color: var(--red-color);
    margin-right: 10px;
}
.footer-contact-box {
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.footer-contact-box i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red-color);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    padding: 16px;
}
.footer-contact-box p {
    margin-bottom: 0;
    color: #5F5F5F;
}
.footer-contact-box a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}
.footer-contact-box a:hover{
    color: var(--red-color);
}
.bottom-footer {
    background-color: #000000;
    border-top: 2px solid #ddd;
    padding: 16px 0 0;
}



@media screen and (max-width:992px){
.container-fluid{
    width: 96%;
}
section {
    padding: 40px 0;
}
h2.mainheadingset {
    font-size: 28px;
    font-weight: 500;
    padding-left: 10px;
}
.wpls-logo-showcase.wpls-dots-false {
    padding: 0 10px 0px 10px !important;
}
h2.mainheadingset:before{
    display: none;
}
.carousel-item video {
    height: 545px;
    object-fit: cover;
}
.banner-content h1 {
    font-size: 35px;
}
.banner-content {
    top: 15%;
}
.container-fluid.extermee {
    width: 90%;
}
.about-sec .about-media {
    margin-left: 0;
}
.about-stat {
    top: 20px;
    padding: 15px 15px;

}
.display-2, .sec-title {
    font-size: 35px;
}

.about-content h2 {
    font-size: 28px;

}
section.about-sec {
    padding-bottom: 0;
}
.vl-service-icon-bo2x {
    padding: 25px 20px;
}
.product-title {
    font-size: 30px;
}

.main-why h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 10px 0 15px 0;
    color: var(--heading-color);
}
.main-why {
    margin: 4px 0 0px 0;
}
.inner-why {
    text-align: left;
    margin: 25px 0 0px 0;
}
.inner-whyt {
    text-align: left;
    margin: 25px 0 0px 0;
}
.left-box-2 {
    padding: 0 15px 0 18px;
}
.left-box-2 h2 {
    font-size: 30px;
}
.stat-box h3 {
    font-size: 35px;
}
.stat-box {
    padding: 20px 10px;
}
.right-box {
    height: 600px;
}
.right-box-2 {
    padding: 15px 15px;position: unset;
}
.comit-1 i {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
.comit-1 h4 {
    font-size: 19px;
}
.contact-us-section .main-heading {
    font-size: 30px;
    margin-top: 0;
}
.certificate-img{
    width: 100%;
    margin-bottom: 15px;
}
.footer-contact-box a {
    font-size: 16px;
}

}



/* Breadcrumb css */
.page-breadcrumb {
    background: url(images/bread-nik.png), rgb(0 0 0 / 50%);
    padding: 60px 0 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 272px;
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
}
.page-breadcrumb span.breadcrumb_new a {
    color: #fff;
    font-weight: 500;
}

.page-breadcrumb span.breadcrumb_new {
    color: #fff;
    font-weight: 500;
}

.page-breadcrumb .extraa {
    margin: 54px 0;
}

.page-breadcrumb .pagetitle {
    color: #fff;
    font-weight: 600;
}
.bread-shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}
.inner-banner {
  background: linear-gradient(90deg, #0a4fa3, #0d6efd);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.inner-banner h1 {
  font-size: 42px;
  font-weight: 600;
}

.inner-banner p {
  font-size: 16px;
  margin-top: 10px;
}

/* ABOUT SECTION */
.section-tag {
  display: inline-block;
  color: #0d6efd;
  font-weight: 500;
  margin-bottom: 10px;
}
section.innerpages {
    padding: 0 0 30px 0 !important;
}
.about-content h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* MISSION VISION */
.mv-section {
  background: #f8f9fa;
  padding: 70px 0;
}

.mv-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}

.mv-box h3 {
    color: #382d92;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* WHY CHOOSE US */
.why-section {
    padding: 60px 0;
}

.center-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 50px;
}

.why-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 35px;
  height: 100%;
  transition: 0.3s ease;
}

.why-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-box h4 {
    font-size: 20px;
    color: #362d8c;
    margin-bottom: 10px;
    font-weight: 700;
}
.inner-banner {
  background: linear-gradient(90deg, #083d77, #0d6efd);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.inner-banner h1 {
  font-size: 42px;
  font-weight: 600;
}

.inner-banner p {
  font-size: 16px;
  margin-top: 10px;
}

/* INTRO */
.onboard-intro {
  padding: 70px 0;
}

.onboard-intro h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* STEPS */
.onboard-steps {
  background: #f8f9fa;
  padding: 80px 0;
}

.step-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 25px;
  height: 100%;
  text-align: center;
}

.step-no {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 15px;
}

.step-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* SUPPORT */
.support-section {
  padding: 80px 0;
}

.support-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.support-list {
  list-style: none;
  padding-left: 0;
}

.support-list li {
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

.support-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
}

.support-section img {
  width: 100%;
  border-radius: 14px;
}


.directors-message .image-box img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	min-height: 400px;
	border-radius: 25px !important;
}

.directors-message .overlay {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	background: #00000091;
	padding: 1.5rem !important;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

.directors-message .signature h4 {
	font-size: 1.8rem;
	line-height: 1;
}

.directors-message .lead {
	font-style: italic;
	border-left: 4px solid var(--red-color);
	padding-left: 15px;
}



.mission-vision-values .card {
	transition: transform 0.4s, box-shadow 0.4s;
	border: 1px solid #555 !important;
	border-radius: 25px;
}

.mission-vision-values .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.mission-vision-values i {
	color: var(--red-color) !important;
	font-size: 35px;
}

.mission-vision-values .list-unstyled i {
	font-size: 1rem;
	color: var(--red-color) !important;
}


.research-development .accordion-button {
	font-weight: 600;
	color: var(--blue-color);
	background-color: #f7f9fc;
	border: none;
	border-bottom: 1px solid rgb(106 106 106 / 15%);
}

.research-development .accordion-button:not(.collapsed) {
	color: #fff;
	background-color: var(--blue-color);
	box-shadow: none;
}

.research-development .accordion-body {
	background-color: #fff;
	color: #5D666F;
	border: 1px solid rgb(106 106 106 / 15%);
	border-top: none;
}

.research-development i.fa-vials,
.research-development i.fa-microscope,
.research-development i.fa-balance-scale-left {
	font-size: 1.5rem;
}


.page-section.bg-subtle {
    background: linear-gradient(135deg, #d7f2fe, #d3ddf5);
    padding: 3rem 2rem;
    border-radius: 14px;
    border: 1px solid var(--blue-color);
}



.custom-container input.wpcf7-form-control.wpcf7-submit.has-spinner.submitBtn {
    background-color: var(--blue-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    /* margin-top: 50px; */
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}
.banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #000000a8;
}
.testimonial-card {
    height: 436px;
}
.banner-wrapper .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.container {
    max-width: 93% !important;
}
.banner-inner {
    max-width: 695px;
    color: #fff;
    margin: 60px 0 0 0;
}

.banner-welcome {
  font-size: 18px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.banner-title {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
}

.banner-strip {
    background: #b1392a;
    padding: 18px 23px;
    margin: 15px 0;
    display: flex;
    justify-content: ;
    align-items: center;
    border-radius: 17px;
}
.banner-maier b {
    color: #ffffff;
}
.banner-strip p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.banner-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.banner-since {
    display: inline-block;
    background: #000;
    padding: 10px 20px;
    margin-bottom: 0px;
    border-radius: 15px;
}

.banner-since span {
  font-size: 14px;
  display: block;
}

.banner-since strong {
  font-size: 28px;
  font-weight: 700;
}

.banner-certificates {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.banner-certificates img {
    height: 90px;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
}
@media (min-width: 1366px) and (max-width: 1500px) {
  .banner-inner {
    margin: 25px 0 0 0 !important;
}
}
@media (min-width: 767px) and (max-width: 1365px) {
.banner-inner {
    max-width: 695px !important;
    color: #fff !important;
    margin: 14px 0 0 0 !important;
}
	.banner-title {
    font-size: 30px !important;
}
	.banner-certificates img {
    height: 55px !important;
}
	div#mega-menu-wrap-primary ul li a {
    font-size: 13px !important;
}
}
@media (max-width: 767px){
.banner-title {
    font-size: 34px !important;
	}
	.testimonial-card {
    height: auto !important;
}
.banner-strip {
    display: block !important;
}
	.banner-certificates img {
    height: 60px !important;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
}
.banner-strip p {
    margin: 0;
    font-size: 14px !important;
    font-weight: 500;
}
	section.ourdivision {
    margin: -7px 0 0 0 !important;
}
	.banner-since {
    padding: 5px 30px !important; 
}
	.banner {
    position: relative;
    height: 110vh !important;
    overflow: hidden;
}
}