:root {
    --primary: #111111;
    --secondary: #ffffff;
    --accent: #2F6B5F;
    --dark: #0f0f0f;
    --dark-2: #171717;
    --dark-3: #1f1f1f;
    --light: #f5f5f5;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    --transition: all 0.4s ease;
    --radius: 22px;
}

body {
    font-family: Roboto, sans-serif;
    margin-top: 100px;
}

::selection {
    background-color: black;
    color: rgb(255, 255, 255);
}

ul,
li {
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    text-transform: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 5px;
    color: rgb(87, 87, 87);
    font-size: 18px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

svg,
img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}








/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 6px;
    border: 2px solid white;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(85, 85, 85);
}



/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/








/* **********************************************************************/
/* **********************************************************************/
/* fixed-phone-btnn */
/* **********************************************************************/
/* **********************************************************************/


.fixed-phone-btnn,
.fixed-wtsapp-btnn {
    color: white;
    background-color: rgb(44, 107, 178);
    border-radius: var(--border-radius);
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    z-index: 100;
    text-decoration: none;
}

.fixed-wtsapp-btnn {
    bottom: 95px;
    background: rgb(129, 215, 66);
    border: 1px solid rgb(129, 215, 66);
}

.fixed-phone-btnn i,
.fixed-wtsapp-btnn i {
    font-size: 25px;
}

.fixed-wtsapp-btnn:hover {
    color: rgb(129, 215, 66);
    border: 1px solid rgb(129, 215, 66);
    background-color: white;
    transition: 0.4s;
}

.fixed-phone-btnn:hover {
    color: rgb(44, 107, 178);
    border: 1px solid rgb(44, 107, 178);
    background-color: white;
    transition: 0.4s;
}

/* **********************************************************************/
/* **********************************************************************/
/* fixed-phone-btnn end*/
/* **********************************************************************/
/* **********************************************************************/











/* **********************************************************************/
/* **********************************************************************/
/* section-title */
/* **********************************************************************/
/* **********************************************************************/

.section-title {
    margin-bottom: 30px;
}

.section-title .mini-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 30px;
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 2px;
}

.section-title .mini-title span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.section-title h2 {
    text-transform: none;
    font-size: 40px;
}

.section-title h2 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}









/* **********************************************************************/
/* **********************************************************************/
/* all-btn */
/* **********************************************************************/
/* **********************************************************************/

.all-btn-cover {
    display: inline-flex;
}

.all-btn {
    position: relative;
    padding: 10px 30px 8px;
    border-radius: 100px;
    background: var(--accent);
    color: rgb(255, 255, 255);
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    transition: var(--transition);
    z-index: 1;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
}

.all-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg,
            #244F46,
            #1B3C35);
    transform: scaleX(0);
    transform-origin: left center;
    transition: var(--transition);
    z-index: -1;
}

.all-btn:hover {
    color: rgb(255, 255, 255);
    box-shadow:
        0 15px 35px rgba(47, 107, 95, 0.28);
}

.all-btn:hover::before {
    transform: scaleX(1);
}













/* **********************************************************************/
/* **********************************************************************/
/* header */
/* **********************************************************************/
/* **********************************************************************/

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    z-index: 999;
    /* padding: 20px 0px; */
    background: var(--accent);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 10px;
}

header .container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* logo */
header .logo {
    height: 70%;
}

header .logo img {
    height: 100%;
}

header .logo a {
    color: white;
}




.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger i {
    color: white;
    font-size: 30px;
}







.close-btn {
    display: none;
}

/* navigation */
header nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

header nav ul li {
    list-style-type: none;
}

header nav ul li a {
    font-family: sans-serif;
    font-size: 14px;
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
}

header nav ul li a::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -6px;
    width: 0px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

header nav ul li a:hover::before {
    width: 100%;
}




/* header button */
header .hdr-btn {
    background-color: white;
    color: var(--accent);
    font-size: 14px;
    padding: 8px 30px 6px;
    margin-top: 0px;
}



















/* **********************************************************************/
/* **********************************************************************/
/* hero */
/* **********************************************************************/
/* **********************************************************************/

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgb(255, 255, 255), rgb(250, 250, 250));
    position: relative;
    overflow: hidden;
    padding: 0px;

}





/* hero gradient */

#hero .hero-gradient {
    position: absolute;
    top: -200px;
    left: 0px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgb(47 107 95 / 12%);
    filter: blur(120px);
}





/* hero content */

#hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}





/* hero mini title */

#hero .hero-mini-title {
    color: var(--accent);
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    /* padding: 10px 20px; */
    /* border-radius: 100px; */
    /* background: rgb(255, 255, 255); */
    /* border: 1px solid rgba(0, 0, 0, 0.06); */
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 30px; */
}





/* hero heading */

#hero .hero-content h1 {
    line-height: 0.9;
    margin: 20px 0px;
    font-size: 62px;
    text-transform: capitalize;
    /* margin-top: 35px; */
}

#hero .hero-content h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}





/* hero paragraph */

#hero .hero-content p {
    max-width: 650px;
}





/* hero buttons */

#hero .hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#hero .hero-btns a {
    min-width: 180px;
}





/* hero image */

#hero .hero-image {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

#hero .hero-image::before {
    position: absolute;
    inset: 0px;
    background: rgba(160, 35, 52, 0.08);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}





/* hero slider */

#hero #heroSlider {
    border-radius: 30px;
    overflow: hidden;
}

#hero #heroSlider .carousel-inner {
    height: 100%;
}

#hero #heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
}





/* slider arrows */

#hero #heroSlider .carousel-control-prev,
#hero #heroSlider .carousel-control-next {
    width: 55px;
    height: 55px;
    top: auto;
    bottom: 30px;
    opacity: 1;
    background: var(--accent);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 5;
}

#hero #heroSlider .carousel-control-prev {
    left: 30px;
}

#hero #heroSlider .carousel-control-next {
    left: 100px;
}





/* slider arrow icons */

#hero #heroSlider .carousel-control-prev i,
#hero #heroSlider .carousel-control-next i {
    font-size: 24px;
    color: rgb(255, 255, 255);
}





/* slider arrow hover */

#hero #heroSlider .carousel-control-prev:hover,
#hero #heroSlider .carousel-control-next:hover {
    background: var(--accent);
}





/* slider indicators */

#hero #heroSlider .carousel-indicators {
    margin-bottom: 30px;
    justify-content: flex-end;
    margin-right: 30px;
}

#hero #heroSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

#hero #heroSlider .carousel-indicators button.active {
    width: 35px;
    border-radius: 30px;
    background: var(--accent);
}




/* **********************************************************************/
/* **********************************************************************/
/* modal */
/* **********************************************************************/
/* **********************************************************************/

.modal {
    z-index: 99999 !important;
}





/* modal dialog */

.modal-dialog {
    max-width: 920px;
    position: relative;
    z-index: 999999 !important;
}





/* modal content */

.modal-content {
    position: relative;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 32px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 30px 100px;
    z-index: 999999 !important;
}





/* modal header */

.modal-header {
    position: relative;
    padding: 20px 40px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: linear-gradient(135deg, var(--accent), #7b1b28);
}

.modal-header::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(10px);
}





/* modal heading */

.modal-header h3 {
    position: relative;
    z-index: 2;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
}





/* modal close button */

.modal-header .btn-close {
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(1);
    opacity: 1;
    box-shadow: none;
}





/* modal body */

.modal-body {
    padding: 40px;
    background: rgb(255, 255, 255);
}





/* form group */

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}





/* form labels */

.form-group label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--accent);
    font-family: Roboto, sans-serif;
}





/* form inputs */

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0px 24px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgb(247, 247, 247);
    font-size: 15px;
    font-family: Roboto, sans-serif;
    color: rgb(17, 17, 17);
    outline: none;
    transition: 0.3s;
}





/* textarea */

.form-group textarea {
    height: 150px;
    padding-top: 20px;
    resize: none;
}





/* placeholders */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}





/* input focus */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgb(255, 255, 255);
    border-color: rgba(47, 107, 95, 0.28);
    box-shadow: rgba(160, 35, 52, 0.08) 0px 10px 25px;
}





/* modal button */

.modal .all-btn {
    min-width: 230px;
}


















/* **********************************************************************/
/* **********************************************************************/
/* about */
/* **********************************************************************/
/* **********************************************************************/

#about {
    background: var(--light);
}





/* about content */

#about .about-content {
    padding-right: 40px;
}





/* about stats */

#about .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}





/* stats card */

#about .stats-card {
    position: relative;
    padding: 35px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg,
            #2F6B5F,
            #244F46);
    transition: var(--transition);
    isolation: isolate;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}





/* third stats card */

#about .stats-card:nth-child(3) {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
}

#about .stats-card:nth-child(3) h3::after {
    left: 50%;
    transform: translateX(-50%);
}





/* stats card background shapes */

#about .stats-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: -1;
}

#about .stats-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
}





/* stats card hover */

#about .stats-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: rgba(47, 107, 95, 0.28) 0px 25px 45px;
}





/* stats heading */

#about .stats-card h3 {
    font-size: 72px;
    line-height: 0.9;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    position: relative;
}

#about .stats-card h3::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -12px;
    width: 60px;
    height: 4px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
}





/* stats paragraph */

#about .stats-card p {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-family: Roboto, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.6;
}





/* stats glow */

#about .stats-card .stats-glow {
    position: absolute;
    inset: 0px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}





/* about image */

#about .about-main-img {
    border-radius: var(--radius);
    overflow: hidden;
}















/* **********************************************************************/
/* **********************************************************************/
/* products */
/* **********************************************************************/
/* **********************************************************************/

#products .product-card {
    display: block;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 35px;
    text-decoration: none;
}





/* product card hover */

#products .product-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(47, 107, 95, 0.28) 0px 20px 50px;
}





/* product image */

#products .product-img {
    height: 280px;
    overflow: hidden;
    background: rgb(248, 248, 248);
}

#products .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}





/* product image hover */

#products .product-card:hover .product-img img {
    transform: scale(1.08);
}





/* product content */

#products .product-content {
    padding: 35px 20px;
}





/* product heading */

#products .product-content h3 {
    font-size: 25px;
    line-height: 1;
    color: var(--accent);
}





/* product buttons */

#products .product-btns {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
    /* margin-top: 25px; */
}





/* product button */

#products .product-btns .all-btn {
    min-width: 180px;
    /* height: 52px; */
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 21px 8px;
}





/* product button icon */

#products .product-btns .all-btn i {
    font-size: 18px;
}














/* **********************************************************************/
/* **********************************************************************/
/* industries */
/* **********************************************************************/
/* **********************************************************************/

#industries {
    background: linear-gradient(rgb(255, 255, 255), rgb(248, 248, 248));
    position: relative;
    overflow: hidden;
}





/* industries grid */

#industries .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}





/* industry box */

#industries .industry-box {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transition: var(--transition);
    background: rgb(0, 0, 0);
}





/* industry image */

#industries .industry-box img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s, filter 0.8s;
}





/* industry image hover */

#industries .industry-box:hover img {
    transform: scale(1.08);
    filter: brightness(0.75);
}





/* industry overlay */

#industries .industry-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(0, 0, 0, 0.15) 65%,
            transparent 100%);
    z-index: 1;
}





/* industry glow */

#industries .industry-box::after {
    content: "";
    position: absolute;
    left: -20%;
    bottom: -30%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgb(47 107 95 / 28%);
    filter: blur(70px);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

#industries .industry-box:hover::after {
    opacity: 1;
}





/* industry heading */

#industries .industry-box h3 {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 3;
    font-size: 25px;
    line-height: 0.9;
    color: rgb(255, 255, 255);
    max-width: 260px;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: capitalize;
}





/* industry heading line */

#industries .industry-box h3::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0px;
    width: 60px;
    height: 4px;
    border-radius: 50px;
    background: var(--accent);
    transition: var(--transition);
}





/* industry heading hover */

#industries .industry-box:hover h3 {
    transform: translateY(-8px);
}





/* industry border glow */

#industries .industry-box .border-glow {
    position: absolute;
    inset: 0px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
    pointer-events: none;
}

















/* **********************************************************************/
/* **********************************************************************/
/* clients */
/* **********************************************************************/
/* **********************************************************************/

#clients {
    background: rgb(255, 255, 255);
}





/* client card */

#clients .client-card {
    height: 180px;
    padding: 30px;
    border-radius: 30px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 35px;
    overflow: hidden;
    position: relative;
}





/* client card overlay */

#clients .client-card::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg,
            rgba(160, 35, 52, 0.04),
            transparent);
    opacity: 0;
    transition: var(--transition);
}





/* client card hover */

#clients .client-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 45px;
}

#clients .client-card:hover::before {
    opacity: 1;
}





/* client image */

#clients .client-card img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.8;
}





/* client image hover */

#clients .client-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}















/* **********************************************************************/
/* **********************************************************************/
/* why us */
/* **********************************************************************/
/* **********************************************************************/

#why-us {
    background: linear-gradient(rgb(255, 255, 255), rgb(246, 246, 246));
    position: relative;
    overflow: hidden;
}





/* why us background glow */

#why-us::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgb(47 107 95 / 8%);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 25px 60px;
    filter: blur(120px);
    pointer-events: none;
}





/* why card */

#why-us .why-card {
    position: relative;
    height: 100%;
    padding: 45px 40px;
    border-radius: 32px;
    background: linear-gradient(rgb(255, 255, 255) 0%,
            rgb(250, 250, 250) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 35px;
    isolation: isolate;
}





/* stagger card layout */

#why-us .col-lg-4:nth-child(1),
#why-us .col-lg-4:nth-child(3) {
    margin-top: 60px;
}





/* why card glow */

#why-us .why-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(47 107 95 / 12%) 0%, transparent 70%);
    opacity: 1;
    transition: 0.5s;
    z-index: -1;
}





/* why card hover */

#why-us .why-card:hover {
    transform: translateY(-12px);
    border-color: rgba(160, 35, 52, 0.18);
}

#why-us .why-card:hover::before {
    opacity: 1;
}

#why-us .why-card:hover::after {
    opacity: 1;
}





/* why card icon */

#why-us .why-card i {
    width: 75px;
    height: 75px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    transform: translateY(-6px) rotate(-4deg);
    background: var(--accent);
    color: rgb(255, 255, 255);
    box-shadow: rgb(47 107 95 / 22%) 0px 20px 35px;
    border: 1px solid rgba(160, 35, 52, 0.08);
    margin-bottom: 35px;
    transition: 0.5s;
}





/* why card heading */

#why-us .why-card h3 {
    font-size: 25px;
    line-height: 1;
    margin-bottom: 18px;
    color: var(--primary);
    transition: var(--transition);
}





/* why card paragraph */

#why-us .why-card p {
    margin: 0px;
    font-size: 17px;
    line-height: 1.8;
    color: rgb(102, 102, 102);
    max-width: 300px;
}





/* why card number */

#why-us .why-card .card-number {
    position: absolute;
    right: 28px;
    bottom: 20px;
    font-size: 90px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
}















/* **********************************************************************/
/* **********************************************************************/
/* vibration section */
/* **********************************************************************/
/* **********************************************************************/

#vibration-section {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 35%,
            rgba(0, 0, 0, 0.3) 65%,
            rgba(0, 0, 0, 0.1) 100%),
        url("../images/home/Vibration-Testing-Systems/Vibration-Testing-Systems.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}





/* vibration overlay */

#vibration-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
    background: rgba(160, 35, 52, 0.08);
}





/* section title */

#vibration-section .section-title h2 {
    color: white;
}





/* bottom overlay */

#vibration-section .overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    z-index: 1;
}





/* vibration container */

#vibration-section .container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    /* padding: 0px 80px; */
    position: relative;
    z-index: 2;
}





/* vibration content */

#vibration-section .vibration-content {
    max-width: 650px;
}





/* vibration mini heading */

#vibration-section .vibration-content h6 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(77, 163, 255);
    margin-bottom: 20px;
}





/* vibration heading */

#vibration-section .vibration-content h2 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 25px;
}





/* vibration paragraph */

#vibration-section .vibration-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
}





/* responsive */

@media (max-width: 991px) {

    #vibration-section .vibration-section {
        height: auto;
        padding: 120px 0px;
    }

    #vibration-section .vibration-section .container {
        padding: 0px 30px;
    }

    #vibration-section .vibration-content h2 {
        font-size: 46px;
    }
}





/* mobile responsive */

@media (max-width: 767px) {

    #vibration-section .vibration-content h2 {
        font-size: 36px;
    }

    #vibration-section .vibration-content p {
        font-size: 15px;
    }
}
















/* **********************************************************************/
/* **********************************************************************/
/* footer */
/* **********************************************************************/
/* **********************************************************************/

footer {
    position: relative;
    background: linear-gradient(rgb(17, 17, 17), rgb(5, 5, 5));
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
}





/* footer glow */

footer::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgb(47 107 95 / 18%);
    filter: blur(150px);
    pointer-events: none;
}





/* footer logo */

footer .footer-logo h3 {
    font-size: 72px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    line-height: 0.9;
}

footer .footer-logo p {
    max-width: 340px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.9;
}





/* footer headings */

footer .footer-links h4,
footer .footer-contact h4 {
    position: relative;
    padding-bottom: 18px;
    font-size: 34px;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
    text-transform: capitalize;
}





/* footer heading line */

footer .footer-links h4::before,
footer .footer-contact h4::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 70px;
    height: 4px;
    border-radius: 50px;
    background: var(--accent);
}





/* footer links */

footer .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style-type: none;
}





/* footer link */

footer .footer-links ul li a {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-family: Roboto, sans-serif;
    transition: var(--transition);
    padding-left: 18px;
    text-decoration: none;
}





/* footer link dot */

footer .footer-links ul li a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}





/* footer link hover */

footer .footer-links ul li a:hover {
    color: rgb(255, 255, 255);
    padding-left: 25px;
}





/* footer contact */

footer .footer-contact {
    display: flex;
    flex-direction: column;
}





/* footer contact item */

footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-radius: 24px;
    margin-bottom: 30px;
}





/* footer contact icon */

footer .footer-contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    flex-shrink: 0;
}

footer .footer-contact-icon i {
    color: rgb(255, 255, 255);
    font-size: 22px;
}





/* footer contact content */

footer .footer-contact-content {
    width: 100%;
}

footer .footer-contact-content h5 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
}





/* footer contact links */

footer .footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .footer-contact-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-family: Roboto, sans-serif;
    transition: var(--transition);
    word-break: break-word;
    text-decoration: none;
}





/* footer contact link hover */

footer .footer-contact-links a:hover {
    color: rgb(255, 255, 255);
    transform: translateX(5px);
}





/* footer socials */

footer .footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}





/* footer social link */

footer .footer-socials a {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgb(255, 255, 255);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
}





/* footer social overlay */

footer .footer-socials a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--accent);
    transform: scale(0);
    transition: var(--transition);
    border-radius: 50%;
}





/* footer social icon */

footer .footer-socials a i {
    position: relative;
    z-index: 2;
    font-size: 20px;
}





/* footer social hover */

footer .footer-socials a:hover {
    transform: translateY(-8px);
}

footer .footer-socials a:hover::before {
    transform: scale(1);
}





/* copyrights */

footer .copyrights-body {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}





/* copyright text */

footer .copy-rights,
footer .designed-by {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-family: Roboto, sans-serif;
}





/* designed by link */

footer .designed-by a {
    color: var(--accent);
    font-weight: 500;
}










































/* *********************************************** */
/* *********************************************** */
/* *********************************************** */
/* about PAGE */
/* *********************************************** */
/* *********************************************** */
/* *********************************************** */

/* *********************************************** */
/* ABOUT HERO */
/* *********************************************** */

#about-hero {

    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

}

#about-hero .about-hero-gradient {

    position: absolute;

    top: -200px;

    right: -200px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        rgba(47, 107, 95, 0.12);

    filter: blur(120px);

}

#about-hero .about-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}





#about-hero p {

    max-width: 700px;

    line-height: 1.9;

}

/* *********************************************** */
/* ABOUT COMPANY */
/* *********************************************** */

#about-company {

    background: #ffffff;

}

#about-company .about-company-img {

    border-radius: 35px;

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);

}

#about-company .about-company-img img {

    width: 100%;

}

#about-company .about-company-content p {

    margin-bottom: 25px;

    line-height: 1.9;

}

/* *********************************************** */
/* MISSION VISION */
/* *********************************************** */

#mission-vision {

background: #f8f8f8;
}

#mission-vision .mission-card {

    position: relative;

    height: 100%;

    padding: 45px;

    border-radius: 35px;

    background: #ffffff;

    border:
        1px solid rgba(0, 0, 0, 0.05);

    transition: var(--transition);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.04);

}

#mission-vision .mission-card:hover {

    transform: translateY(-10px);

}

#mission-vision .mission-icon {

    width: 85px;

    height: 85px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;

    background:
        linear-gradient(135deg,
            #2F6B5F,
            #244F46);

}

#mission-vision .mission-icon i {

    font-size: 40px;

    color: #ffffff;

}

#mission-vision .mission-card h3 {

/* font-size: 38px; */

margin-bottom: 20px;
}

#mission-vision .mission-card p {

    line-height: 1.9;

}

/* *********************************************** */
/* ABOUT HIGHLIGHTS */
/* *********************************************** */

#about-highlights {

    background: #ffffff;

}

#about-highlights .about-highlight-card {

    height: 100%;

    padding: 45px 30px;

    border-radius: 30px;

    text-align: center;

    background: var(--accent);

    border:
        1px solid rgba(0, 0, 0, 0.05);

    transition: var(--transition);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.04);
}

#about-highlights .about-highlight-card:hover {

    transform: translateY(-10px);

}

#about-highlights .about-highlight-card i {

    font-size: 55px;

    color: #fff;

    margin-bottom: 25px;

    display: inline-block;
}

#about-highlights .about-highlight-card h3 {

    font-size: 28px;

    line-height: 1.3;

    color: white;
}

/* responsive */

@media(max-width:991px) {


}

@media(max-width:767px) {



}




/* *********************************************** */
/* *********************************************** */
/* *********************************************** */
/* *********************************************** */
/* about PAGE END */
/* *********************************************** */
/* *********************************************** */
/* *********************************************** */







/* *********************************************** */
/* *********************************************** */
/* *********************************************** */
/* about PAGE */
/* *********************************************** */
/* *********************************************** */
/* *********************************************** */










/* *********************************************** */
/* *********************************************** */
/* *********************************************** */
/* Industries PAGE */
/* *********************************************** */
/* *********************************************** */
/* *********************************************** */


/* *********************************************** */
/* INDUSTRIES PAGE */
/* *********************************************** */

#industries-page {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

}

#industries-page .section-title p {

    max-width: 750px;

    margin: 25px auto 0;

    line-height: 1.8;

}



/* card */

#industries-page .industry-page-card {

    position: relative;

    height: 100%;

    border-radius: 32px;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid rgba(0, 0, 0, 0.05);

    transition: var(--transition);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.04);

}

#industries-page .industry-page-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);

}

/* image */

#industries-page .industry-page-img {

    height: 300px;

    overflow: hidden;
}

#industries-page .industry-page-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;

}

#industries-page .industry-page-card:hover img {

    transform: scale(1.08);

}

/* content */

#industries-page .industry-page-content {

    padding: 35px;

}

#industries-page .industry-page-content h3 {

    font-size: 35px;

    color: var(--accent);

    margin-bottom: 18px;
}

#industries-page .industry-page-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #666666;

}



@media(max-width:767px) {}









/* *********************************************** */
/* *********************************************** */
/* *********************************************** */
/* CONTACT US PAGE */
/* *********************************************** */
/* *********************************************** */
/* *********************************************** */

#contact-us {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8f8f8);

}

/* gradient */

#contact-us .contact-gradient {

    position: absolute;

    top: -200px;

    right: -200px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        rgba(47, 107, 95, 0.12);

    filter: blur(120px);

}

/* *********************************************** */
/* CONTACT INFO */
/* *********************************************** */

#contact-us .contact-info-wrap {

    display: flex;

    flex-direction: column;

    gap: 25px;

    height: 100%;

}

#contact-us .contact-info-card {

position: relative;

display: flex;

align-items: flex-start;

gap: 22px;

padding: 35px;

border-radius: 30px;

background: var(--accent);

border:
        1px solid rgba(0, 0, 0, 0.05);

overflow: hidden;

transition: var(--transition);

box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.04);
}

#contact-us .contact-info-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);

}

/* icon */

#contact-us .contact-icon {

width: 70px;

height: 70px;

border-radius: 22px;

display: flex;

align-items: center;

justify-content: center;

flex-shrink: 0;

background: #fff;

box-shadow:
        0 15px 35px rgba(47, 107, 95, 0.25);
}

#contact-us .contact-icon i {

color: var(--accent);

font-size: 30px;
}

/* content */

#contact-us .contact-info-content {

    width: 100%;

}

#contact-us .contact-info-content h3 {

font-size: 28px;

margin-bottom: 18px;

color: #fff;
}

#contact-us .contact-info-content a,
#contact-us .contact-info-content p {

display: block;

color: #eaeaea;

font-size: 16px;

line-height: 1.8;

transition: var(--transition);

text-decoration: none;

margin-bottom: 8px;
}

#contact-us .contact-info-content a:hover {

    /* color: var(--accent); */

    transform: translateX(5px);

}

/* *********************************************** */
/* CONTACT FORM */
/* *********************************************** */

#contact-us .contact-form-box {

    padding: 40px;

    border-radius: 35px;

    background: #ffffff;

    border:
        1px solid rgba(0, 0, 0, 0.05);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.04);

    height: 100%;

}

/* button */

#contact-us .all-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}

#contact-us .all-btn i {

    font-size: 18px;

}








#contact-us .map iframe {

    width: 100%;

    height: 400px;

    border: none;

    border-radius: 30px;
    margin-top: 30px;

}






/*  */