@font-face {
    font-family: 'Kruti';
    src: url('../fonts/k010-webfont.woff2') format('woff2'), url('../fonts/k010-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* Global css */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}

body {
    color: #222;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--font-size-body);
    line-height: 24px;
    min-width: 360px;
    width: 100%;
}

button,
input[type="submit"],
input[type="search"],
a {
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: #3C0008;
}

a:focus {
    outline: none !important;
    outline-offset: inherit !important;
    text-decoration: none !important;
}

button:focus {
    outline: none;
}

a,
img {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

label {
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    margin-bottom: 0;
}

dl,
ol,
ul {
    list-style-position: inside;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5, 
h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    display: block;
    margin: 0;
    padding: 0 0 15px;
    word-wrap: break-word;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}

.open-sans {
    font-family: 'Open Sans', sans-serif;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.crimson {
    font-family: 'Crimson Text', serif;
}

.alegreya {
    font-family: 'Alegreya', serif;
}

.form-group {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}

.form-control {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    color: #555555;
    font-size: 14px;
    font-weight: 300;
    height: 48px;
    padding: 0 15px;
}

.with-left-icon .form-control {
    padding-left: 58px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 none;
}

*:focus {
    outline: none;
}

select,
select.form-control {
    height: 48px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 28px;
    padding-left: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select option {
    background: #fff;
    padding: 5px 10px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #ddd;
}

select option:last-child {
    border-bottom: none;
}

.select-upper {
    float: left;
    width: 100%;
    position: relative;
}

.select-upper::after {
    content: "\f078";
    color: #666;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    text-decoration: inherit;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    text-shadow: none;
}

.select-upper.no-arrow::after {
    display: none;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
    height: auto;
    padding: 10px;
}

.inp-left-icon {
    position: relative;
}

.inp-left-icon::after {
    content: "\f0d7";
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    text-decoration: inherit;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    text-shadow: none;
}


/* Buttons CSS */

.btn-inline .btn {
    margin: 0 5px;
}

.btn-inline .btn:first-child {
    margin-left: 0;
}

.btn-inline .btn:last-child {
    margin-right: 0;
}

.btn:focus {
    outline: normal;
    box-shadow: none !important;
}

.btn {
    height: 38px;
    padding: 0 15px;
    line-height: 38px;
    min-width: 130px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-shadow: none;
    border-radius: 5px;
    text-transform: capitalize;
    font-weight: 500;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
    background-color: var(--black);
    color: var(--white);

}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--black);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
    background-color: var(--primary);
    color: var(--white);

}

.hvr-sweep-to-right {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: white;
}


hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.container {
    width: 90%;
    max-width: 1410px;
}

.link-text {
    color: #224e96;
}

.link-text i {
    margin: 0 5px;
    vertical-align: middle;
}

.link-text:hover {
    color: #ff9301;
}

.underline {
    text-decoration: underline;
}

.paddTB70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.marTB70 {
    margin-top: 70px;
    margin-bottom: 70px;
}
.marT70 {
    margin-top: 70px;
}
.marB70 {
    margin-bottom: 70px;
}

.paddT70 {
    padding-top: 70px;
}

.paddB70 {
    padding-bottom: 70px;
}

.bg-lightgray {
    background-color: #F9F9F9;
}

.bg-primary {
    background-color: var(--primary) !important;
}
.bg-yellow{background-color: var(--secondary);}
.bg-texture {
    background-image: url(../images/sktextilesbg.jpg);
    background-repeat: repeat;
    background-position: center center;
}
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}

/* For Placeholder Color */

input::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}


/* skexport start */
/*Header*/


/* skexport end */

header {
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}

.fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
}

.header-top {
    position: relative;
    height: 36px;
    background: var(--white);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.header-top .col-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top .emails {
    display: flex;
}

.header-top .emails p {
    color: #fff;
    padding-bottom: 0;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.header-top .emails p img {
    margin-right: 5px;
}

.header-top .emails p span {
    margin-right: 5px;
}

.header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 0px;
    position: relative;
    flex-shrink: 0;
}

.logo img, .ftr-logo img {
    flex-shrink: 0;
}

.logo img {
    display: block;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.head-right-button {
    margin-left: 10px;
}


input::-ms-clear,
input::-ms-reveal {
    display: none !important;
}
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 5/2.5;  
}
.slider-container::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    background: rgb(163,181,203);
    background: linear-gradient(360deg, rgba(163,181,203,0) 0%, rgba(0,0,0,0.8127626050420168) 100%);
}
.slider-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slider-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    background: rgb(163,181,203);
    background: linear-gradient(360deg, rgba(163,181,203,0) 0%, rgba(0,0,0,0.8127626050420168) 100%);
}
.slider-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the screen without black bars */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.caption {
    position: absolute;
    right: 0;
    color: var(--blac);
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
    text-align: left;
    z-index: 2;
    bottom: 50px;
    width: 40%;
    background: var(--primary);
    padding: 25px;
    border-radius: 10px 0px 0px 10px;
}
.show {
    opacity: 1 !important;
}
.caption h1 {
    font-size: 50px;
    text-transform: uppercase;
}
.caption h1 span{
    color: var(--secondary);
} 
.caption p {
    font-size: 28px;
    margin-top: 10px;
}




.head-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-top: 30px;
}

.main-navbar {
    display: flex;
}
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background: var(--primary);
    border-bottom: 1px solid var(--dark-primary);
}
#header.sticky .logo img {
    width: 62px;
}
#header.sticky .head-right {
    padding-top: 15px;
    padding-bottom: 15px;
}
#header.sticky .main-navbar .navbar-dark .navbar-nav .nav-link {
    color: var(--black);
}
#header.sticky .main-navbar .navbar-dark .navbar-nav .nav-link:focus, #header.sticky .main-navbar .navbar-dark .navbar-nav .nav-link:hover, #header.sticky .main-navbar .navbar-dark .navbar-nav .nav-link.active {
    color: var(--white);
    background: transparent;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.collapse.navbar-collapse {
    justify-content: flex-start;
}

.navouter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navbar .navbar-dark {
    padding: 0;
}

.main-navbar .navbar-dark .navbar-nav {
    height: 50px;
}

.main-navbar .navbar-dark .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.main-navbar .navbar-dark .navbar-nav .nav-item:hover .nav-link {
    color: var(--secondary);
    background: transparent;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-size: 14px; 
    display: flex; 
    align-items: center;
    font-weight: 400;
    padding: 18px 13px;
    line-height: 14px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.page .main-navbar .navbar-dark .navbar-nav .nav-link {
    color: var(--black);
}

.main-navbar .navbar-dark .navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 7px;
    font-size: 12px;
}

.main-navbar .navbar-dark .navbar-nav .nav-link:focus, .main-navbar .navbar-dark .navbar-nav .nav-link:hover, .main-navbar .navbar-dark .navbar-nav .nav-link.active {
    color: var(--white);
    background: transparent;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease; 
}

.main-navbar .btn {
    min-width: 145px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu {
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    top: calc(100% - 1px);
    min-width: 200px;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu li a:hover {
    background: #fff;
    color: var(--secondary);
}

.main-navbar .navbar-dark .navbar-nav .nav-item.dropdown:hover>ul {
    display: block;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu {
    position: relative;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu>a.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu>a.dropdown-toggle::after {
    margin-left: 10px;
    font-size: 14px;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.main-navbar .navbar-dark .navbar-nav .nav-item.dropdown:hover>ul li:hover>ul {
    display: block;
}

.banner-section {
    display: flex;
    position: relative;
}


.about-section{position: relative;}
.about-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 22%;
    height: 100%;
    content: "";
    background: var(--primary);
    z-index: -1;
    display: none;
}

.infra-box {
    background-color: var(--primary);
    padding: 25px;
    color: var(--white);
    margin-right: -50px;
    position: relative;
    margin-bottom: -50px;
}
.infra-box h3{text-align: center; margin-bottom: 15px;}

.our-presence-section {
    /* background-image: url(../images/our-pre-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: #f7f7f7;
}
.map-img img{width: 100%;}
.our-presence-section h2 {
    font-size: 92px;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
}
.our-presence-section h2 span {
    color: var(--primary);
    display: block;
}


.our-values-section ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
    row-gap: 100px;
    padding: 0; 
    position: relative;
    margin-top: 50px;
}
.our-values-section ul::before {
    position: absolute; 
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #ddd;
    content: "";
}
.our-values-section ul::after {
    position: absolute; top:50%; left:0; right:0;width: 700px; height: 2px; background-color: #ddd;content: "";margin:0 auto;
    }
.our-values-section ul li{text-align: center;}
.our-values-section ul li img{ transition: transform 0.5s ease-in-out; }
.our-values-section ul li h3 {
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
}

.environmental-consciousness-section h3 {
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
}
.our-values-section ul li:hover img{ transition: transform 0.5s ease-in-out; transform: rotateY(180deg);}
.our-values-section ul li:hover { }

.sustainability-section ul {
    padding: 0;
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 40px;
}
.sustainability-section ul li {
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(25% - 20px);
    aspect-ratio: 5/3;
}
.sustainability-section ul li img {
    max-height: 80%;
    max-width: 80%;
}
.sustainability-section ul li:hover {
    box-shadow: 0px 5px 15px rgba(0,0,0,.2);
}
.hvr-top {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-top:hover, .hvr-top:focus, .hvr-top:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}


.service-col-row {
    margin-top: 50px;
}
.row.service-col-row [class^="col-"] {margin-bottom: 20px;}
.row.service-col-row [class^="col-"]:last-child {
    margin-bottom: 0px;
}
.service-col {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 20px 25px;
    height: 100%;
    position: relative;
    text-align: center;
    display: block;
}
.service-col:hover {
    background: var(--primary);
    border-color: var(--primary);
    color:var(--white);
}
.service-col span {
    width: 76px;
    height: 76px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    left: 0;
    top: -5px;
    right: 0;
    margin: 0 auto;
}
.service-col span img { animation: floatUpDown 2s ease-in-out infinite;}
@keyframes floatUpDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(5px); /* Moves up */
    }
    100% {
      transform: translateY(0); /* Comes back down */
    }
  }

  .service-col h3 {
    margin-bottom: 0;
    padding-left: 0;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
}
.our-fabrics-section{position: relative;}
.our-fabrics-section::after {
    background-color: var(--primary);
    right: 0;
    top: 220px;
    content: "";
    width: 58%;
    position: absolute;
    height: 55%;
    border-radius: 10px 0 10px 0;
    z-index: 1;
}
.our-fab-col {
    padding-left: 30px;
    padding-top: 40px;
    position: relative;
    z-index: 2;
}
.our-fab-col ul {
    margin-top: 80px;
}
.our-fab-col ul li {
    color: var(--black);
    font-size: 15px;
    padding: 6px 0 6px 25px;
    position: relative;
}
.our-fab-col ul li::before {
    content: "";
    left: 0;
    top: 12px;
    background: var(--primary);
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.our-fabrics-section img {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    aspect-ratio: 4/4;
    object-fit: cover;
}

.product-row [class^="col-"]{margin-bottom: 20px;} 
.product-col {
    position: relative;
    overflow: hidden;
}
.product-col h3 {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px 20px;
    background: rgb(163,181,203);
    background: linear-gradient(280deg, rgba(163,181,203,0) 0%, rgba(230,136,59,1) 100%);
    width: 100%;
    color: #fff;
    font-size: 20px; 
    font-family: var(--font-body); 
    letter-spacing: 1px; 
}
.product-col img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.product-col:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.map {
    position: relative;
    border: 1px solid #ddd;
    padding: 5px;
}
.map iframe {
    width: 100%;
    aspect-ratio: 5/2;
    display: block;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.social-icons a {
    color: var(--black);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid var(--black);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons a:hover {
    color: var(--white);
    background-color: var(--black);
}

/* Floting social icons */

.floating-icons {
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-icons a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.floating-icons a:first-child {
    border-top-left-radius: 5px;
}

.floating-icons a:last-child {
    border-bottom-left-radius: 5px;
}

.floating-icons a:hover {
    width: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.floating-icons a i {
    color: #fff;
    font-size: 24px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
}
.floating-icons a img {
    width: 25px;
}

.floating-icons a.fb {
    background-color: #337FFF;
}

.floating-icons a.tw {
    background-color: #000;
}

.floating-icons a.ins {
    background-color: #DA3A8D;
}

.floating-icons a.link {
    background-color: #0277b5;
}

.floating-icons a.you {
    background-color: #D72A2A;
}

.floating-icons a.what {
    background-color: #25D366;
}

.section-title {
    margin-bottom: 20px;
}
.page-title {
    margin-bottom: 50px;
}

.section-title span {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    color: #0000007d;
    display: block;
}
.section-title h2, .page-title h1 {
    color: #222;
    display: inline-block;
    position: relative;
    font-size: 38px;
    font-weight: 800;
}
.section-title span {
    margin-bottom: 5px;
}
.section-title h2 span.text-primary, .page-title h1 span{
    color: var(--primary);
}

.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 5px 3px;
    background: var(--primary);
}




ul.insfra-blocks {
    padding: 0;
    display: flex;
    justify-content: start;
    margin-bottom: 0;
    margin-top: 30px;
}
ul.insfra-blocks li {
    border: 1px solid #A39954;
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    width: 30%;
    margin-right: 20px;
        font-size: 42px;
    font-weight: 600;
    color: #875F2F;
    text-align: center;
}
ul.insfra-blocks li span {
    font-size: 16px; 
    text-transform: uppercase;
    color: #333;
    font-weight: 500;
    margin-top: 15px;
    display: block;
}


.ourvalues-col {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 60px 20px 20px 20px;
    position: relative;
    margin-top: 70px;
    text-align: center;
    min-height: 250px;
}
.ourvalues-col span {
    position: absolute;
    left: 20px;
    top: -30px;
}
.ourvalues-col span img {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}
.ourvalues-col h3 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
}



.whatwedo-section .row.whatwedo [class^="col-"]:nth-child(even) .whatwedo-col {
    background: #516b9f;
}

.whatwedo-section .row.whatwedo [class^="col-"] {
    margin-bottom: 30px;
}
.whatwedo-col {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0;
    position: relative;
    text-align: center;
    padding-bottom: 0;
    height: 100%;
}
.whatwedo-col img {
    aspect-ratio: 4/3;
    object-fit: cover;
}
.whatwedo-col img+div {
    padding: 10px 20px 10px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,.5);
    height: 120px;
    color: #fff;
}
.whatwedo-col h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.whatwedo-col p {
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 10px;
    padding-bottom: 0;
    line-height: 30px;
}

.whatwedo-col.col2{background: #516b9f;}
.whatwedo-col.col2 img+div {
    position: relative;
        padding: 20px;
    background: #516b9f;
    bottom: 0;
    height:auto;
}








































/* Owl carousel button */

.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
}

.owl-theme .owl-nav button {
    margin: 0 3px !important;
}

.owl-theme .owl-nav button:hover {
    background: none !important;
}

.owl-theme .owl-nav button i {
    font-size: 22px;
    display: block;
    color: var(--primary);
}

.owl-theme .owl-nav button:hover i {
    font-size: 22px;
    display: block;
    color: var(--secondary);
}


/* Owl carousel button end*/

.scrollup {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    z-index: 1;
    color: #fff;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

.hvr-top {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-top:hover,
.hvr-top:focus,
.hvr-top:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.square-animate-img {
    position: relative;
}

@keyframes floating2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}



/* location section */
.location-section {
    padding: 0 7%;
    margin-top: -84px;
    margin-bottom: 50px;
    display: none;
}
.loc-inner {
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}
.loc-inner::before {
    height: 160px;
    width: 12px;
    background-color: var(--primary);
    position: absolute;
    left: 450px;
    top: -50px;
    content: "";
    border: 5px solid #fff;
    transform: rotate(27deg);
}
.sk-name {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    width: 45%;
}
.sk-name img{
flex-shrink: 0;
margin-right: 15px;
}
.sk-name div {
    font-size: 35px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--white);
}
.sk-name div span {
    font-size: 20px;
    display: block;
    padding-left: 17px;
    margin-bottom: 5px;
    font-weight: 500;
}
.sk-address {
    display: flex;
    align-items: center;
    padding: 20px 40px;
}
.sk-address div {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
.sk-address img {
    flex-shrink: 0;
    margin-right: 15px;
    width: 35px;
}
img.addimg {
    position: absolute;
    right: 20px;
    top: 50%;
    opacity: .5;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 70px;
}
.loc-col {
    display: flex;

}
.footer-top .location-section ul li:last-child{border:none;}
.loc-icon {
    margin-right: 10px;
    flex-shrink: 0;
}
.loc-col h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-body);
    margin-bottom: 3px;
}
.loc-col p {
    color: var(--white);
    font-weight: 400;
    text-align: left;
}

/* Footer */

footer {
    background: #fff;
    position: relative;
}

footer .footer-top {
    padding: 40px 0;
    background: var(--dark-primary);
    border-top: 1px solid #ddd;
}

footer .footer-top .logo a img {
    width: 100px;
    height: 100px;
}

footer .footer-top .logo-title {
    text-align: left;
}

footer .footer-top .logo-title h1 {
    font-size: 28px;
    line-height: 33px;
    color: #fff;
}

footer .footer-top .logo-title p {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
}

footer .footer-top .logo-title span {
    font-size: 13px;
    line-height: 17px;
    color: #fff;
}

.footer-top ul { padding: 0;}
.footer-top ul.two-col {
    column-count: 2;
    column-gap: 0;
}
.footer-top ul li {
    color: #E9F9FF;
    padding: 4px 0;
}

.footer-top ul li a {
    color: var(--white);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    font-weight: 400;
    position: relative;
    padding-left: 10px;
}

.footer-top ul li a::before {
    background: #E9F9FF;
    height: 1.5px;
    width: 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.footer-top ul li a:hover {
    color: #000;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    padding-left: 20px;
}

footer .footer-btm {
    height: 50px;
    display: flex;
    border-top: 1px solid rgba(255,255,255,.1);
    align-items: center;
    background: var(--primary);
}

footer .footer-btm p {
    color: var(--white);
    font-weight: 400;
    font-size: 13px;
    padding-bottom: 0;
    text-align: center;
}
footer .footer-btm p a{
}

.footer-top h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    font-family: var(--font-body);
}
.footer-top h3::before {
    background-color: #b5a9a9;
    width: 100%;
    height: 1px;
    content: "";
    top: calc(100% + 4px);
    left: 0;
    position: absolute;
}
.footer-top h3::after {
    background-color: var(--secondary);
    width: 50px;
    height: 3px;
    content: "";
    top: calc(100% + 2px);
    left: 0;
    position: absolute;
}
.footer-top ul li,
.footer-top ul {
    list-style-type: none;
}

footer .row>[class^="col-"] ul li {
    text-align: left;
}

.logo-footer {
    text-align: center;
}

.logo-footer img {
    width: 95px;
}

footer p {
    line-height: 22px;
    padding-bottom: 10px;
    color: var(--white);
}
.footer-map iframe {
    width: 100%;
    aspect-ratio: 4/1.8;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,.2);
    padding: 5px;
}


/* Inner page */

.middle-container.page-inner {
    padding-top: 40px;
    padding-bottom: 100px;
}

.content-area h2 {
    font-size: 26px;
}

.content-area h3 {
    font-size: 22px;
}

.content-area h4 {
    font-size: 18px;
}
.content-area p {
text-align: justify;
}

.image-block {
    margin-bottom: 20px;
}

.image-block img {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 8px;
}

.content-area ul {
    list-style-type: circle;
}

.content-area ol {
    list-style-type: decimal; 
    margin-left: 15px;
}

.content-area ul li ul,
.content-area ol li ol {
    padding-left: 20px;
}

.content-area ul li ul {
    list-style-type: lower-alpha;
}

.content-area ol li ol {
    list-style-type: upper-roman;
}

.content-area ol li,
.content-area ul li {
    margin-bottom: 10px;
}

.title-custom h2 {
    background: var(--light-primary);
    padding: 5px 15px 5px 15px;
    color: #202020;
    font-size: 22px;
    margin-bottom: 15px;
}

.title-custom h3 {
    background: var(--light-primary);
    padding: 5px 15px 6px 15px;
    color: #202020;
    font-size: 20px;
    margin-bottom: 15px;
}

.title-custom h4 {
    background: var(--light-primary);
    padding: 7px 15px 6px 15px;
    color: #202020;
    font-size: 16px;
    margin-bottom: 15px;
}


/* The Overlay (background) */

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.customnav {
    display: none;
}

.customnav.searchOpen {
    display: block;
}


/* Position the content inside the overlay */

.overlay-content {
    position: relative;
    top: 35%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.custom-search-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-autocomplete-outer {
    width: 60%;
}

.custom-autocomplete-outer input {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 45px;
    height: 60px;
    width: 100%;
    color: #fff;
    padding: 0 30px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 40px;
    color: #fff;
}

.custom-autocomplete-outer ul {
    border: 1px solid #ddd;
    width: 50%;
    margin: 0 auto;
    margin-top: 20px;
}

.custom-autocomplete-outer ul li {}

.custom-autocomplete-outer ul li a {
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 9px 0;
    line-height: normal;
}

.custom-autocomplete-outer ul li:last-child a {
    border-bottom: none;
}


/* Video Block */

.video-block {
    width: 100%;
    position: relative;
    padding: 5px;
    border: 1px solid #ddd;
}
.video-block video {
    width: 100%;
    aspect-ratio: 16/9;
display: block;
}


/* PDF Viewer */

.pdf-viewer {
    position: relative;
    background-color: #f7f7f7;
    z-index: 0;
}

.pdf-viewer iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.pdf-viewer2 {
    position: relative;
    background-color: #f7f7f7;
    z-index: 0;
}

.pdf-viewer2 iframe {
    position: relative;
    left: 0;
    top: 0;
    z-index: 1;
}

.btn-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-inline .btn {
    width: auto;
    margin: 0 3px 6px 3px;
    text-transform: inherit;
    font-weight: 400;
}


/* Error page */

.page-error {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-error-thumb {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.page-error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-error-content h3 {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
}
.square-animate-left, .square-animate-right {
    position: relative;
}
.square-animate-left::before {
    content: '';
    width: 35px;
    height: 73px;
    background-size: 35px !important;
    top: 0px;
    left: 20px;
    position: absolute;
    background: url(../images/colorstripgrphic.svg) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}
.square-animate-right::before {
    content: '';
    width: 35px;
    height: 73px;
    background-size: 35px !important;
    bottom: 20%;
    right: 20px;
    position: absolute;
    background: url(../images/colorstripgrphic.svg) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}
/* .strip-graphic{position: relative;}
.strip-graphic::after {
    content: '';
    width: 35px;
    height: 73px;
    background-size: 35px !important;
    top: 20%;
    left: 70px;
    position: absolute;
    background: url(../images/colorstripgrphic.svg) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
} */

.about-right-graphic{position: relative;}
.about-right-graphic::after {
    content: '';
    width: 300px;
    height: 300px;
    background-size: 300px !important;
    top: 15%;
    right: 50px;
    position: absolute;
    background: url(../images/shirt.png) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}
.middle-container.inner-page .banner-section {
    background: var(--primary);
    height: 134px;
    position: relative;
    border-bottom: 1px solid #ddd;
}
.middle-container.inner-page .banner-section img{display: none;}
.middle-container.inner-page .banner-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(255,255,255,.8);
    display: none;
}
.custom-gallery .galleryData {
    margin-bottom: 15px;
}
.custom-gallery .galleryData a {
    display: block;
    border: 1px solid #ddd;
    padding: 5px;
}
.custom-gallery .galleryData a img {
    aspect-ratio: 3/4;
    width: 100%;
    object-fit: cover; 
}

.inner-page .service-col {
    border: none;
    height: auto;
    padding: 0;
    text-align: left;
}
.inner-page .service-col span {
    border: none;
    top: -20px;
    left: 0;
    margin: inherit;
    position: absolute;
}
.inner-page .service-col:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}
ul.calculation-sec {
    margin: 20px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}
ul.calculation-sec li {
    width: 220px;
    padding: 25px 0px;
    color: #000;
    line-height: normal;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column-reverse;
    background: #f7f7f7;
}
ul.calculation-sec li p {
    padding-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}
ul.calculation-sec li span {
    font-size: 60px;
    margin-top: 0;
    font-weight: 600;
    line-height: 50px;
    display: block;
}

.audio-enable-section {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 9;
}
.audio-enable-section a{
display: block;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
        font-weight: 600;
}

