* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'plus-jakarta-sans', sans-serif;
    z-index: 1;
    position: relative;
    background-color: #fff7f3;
}

section {
    background-color: #fff7f3;
    z-index: 1;
    margin: -1px 0px;
}

a {
    text-decoration: none;
}


::-webkit-scrollbar {
    width: 10px;
    overflow-y: auto;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(130deg, #0a4b92 50%, #48b8d0);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(130deg, #48b8d0, #0a4b92 50%);
}

::-webkit-scrollbar-track {
    background: #fff7f3;
    backdrop-filter: blur(8px);
    border-radius: 8px;
}


/* ============================= Preloader Css ============================= */

/* Preloader Styles */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    animation: pulseGlow 2s infinite ease-in-out, rotateLogo 10s linear infinite;
    filter: drop-shadow(0 0 15px #28a745);
}

/* Green/Blue glow + rotation */
@keyframes pulseGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px #28a745);
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 25px #00bfff);
        transform: scale(1.1);
    }
}

@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ======================== top info bar ======================== */

.info-bar {
    height: 55px;
    background: #fff;
    border-bottom: 1px solid #000000;
    margin: 15px 30px 0px 30px;
    padding: 0px 12px;
}

.info-bar a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
}

.info-bar i {
    margin-right: 5px;
    font-size: 16px;
    color: #0a4b92;
    /* padding: 10px; */
}


/* social icon css */
.info-social a {
    font-size: 18px;
    margin-left: 14px;
    color: #0a4b92;
}

.info-social a:hover i {
    background-color: #0a4b92;
    color: #fff;
    border-radius: 50px;
}

i.social1 {
    padding: 10px 14px;
    margin-right: .25rem;
    font-size: 18px;
    color: #0a4b92;
}

i.social2 {
    margin-right: .25rem;
    font-size: 18px;
    color: #0a4b92;
    padding: 10px;
}

i.social3 {
    margin-right: .25rem;
    font-size: 18px;
    color: #0a4b92;
    padding: 10px 12px;
}


/* ============================ main nav ============================ */

/*.main-nav {*/
/*    background: #fff;*/
    /*margin: 0px 30px;*/
/*    padding: 1.4rem 4.5rem;*/
/*    clip-path: polygon(20% 0%, 100% 0, 100% 20%, 100% 100%, 80% 100%, 2% 100%, 0 60%, 0 0);*/
/*}*/

.main-nav::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(20% 0%, 100% 0, 100% 0%, 100% 100%, 19% 100%, 100% 100%, 0 60%, 0 0);
    z-index: 1;
}


.main-nav {
    position: relative;
    padding: 1.4rem 4.5rem;
    overflow: visible;
    overflow-x: clip;
}

.main-nav::after {
    content: '';
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 31px;
    z-index: 1;
}

.navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 .9rem;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #0a4b92;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0a4b92;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.menu-item-has-children:after {
    content: '' !important;
    background-image: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 12px;
    font-size: 30px;
    height: 24px !important;
    width: 24px !important;
    top: 2px !important;
    background-position: center;
}

.navbar-nav li.menu-item-has-children {
  position: relative;
}

.navbar-nav .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(30px);
    transition: all 0.5s;
}

.navbar-nav li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.navbar-nav .sub-menu li {
  display: block;
}

.navbar-nav .sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    text-transform: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.navbar-nav .sub-menu li a:hover {
  background: #f5f5f5;
  color: #0a4b92;
}

.logo-img {
    height: 55px;
    width: auto;
    padding-left: 10px;
}

.contact-btn {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    background: linear-gradient(90deg, #0a4b92 54%, #48b8d0);
    color: white;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 0 100%);
}

.contact-btn:hover {
    background: linear-gradient(90deg, #48b8d0, #0a4b92 54%);
    transform: scale(1.02) ease-in-out;
    color: white;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}



/* ============================= Banner ============================= */

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh + 50px);
    overflow: hidden;
    margin-top: -159px;
    padding-top: 190px;
    z-index: -1;
}


.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    clip-path: polygon(30% 0%, 100% 0, 100% 30%, 100% 100%, 70% 100%, 3% 100%, 0 95%, 0 0);
}

.hero-content {
    position: absolute;
    max-width: 1240px;
    color: #fff;
    top: -30px;
    bottom: 0;
    left: 115px;
    margin: auto;
    height: fit-content;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ffffff;
}

.btn-custom {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 0 100%);
    text-decoration: none;
}

.btn-white1 {
    background: #ffffff;
    color: #000000;
    border: none;
}

.btn-white1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-white1:hover {
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    color: #0c5996;
    transform: scale(1.02);
}

.btn-white1:hover::before {
    left: 100%;
}

.btn-white1 i {
    font-size: 14px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.btn-white1:hover i {
    transform: translateX(5px);
}

.btn-white2 {
    background: #ffffff;
    color: #000000;
    border: none;
}

.btn-white2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-white2:hover {
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    color: #0c5996;
    transform: scale(1.02);
}

.btn-white2:hover::before {
    left: 100%;
}

.btn-white2 i {
    font-size: 14px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.btn-white2:hover i {
    transform: translateX(5px);
}



/* ===================== A2A Introduction Section ===================== */

.group-section {
    background-color: #fff8f5;
    padding: 132px 0px;
}

.group-section .small-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}


.group-section .description {
    max-width: 1132px;
    margin: 0 auto 60px;
    color: #2a2a2a;
    font-size: 22px;
    line-height: 1.5;
}

.company-grid {
    display: flex;
    justify-content: center;
    gap: 22px;
    /* flex-wrap: wrap; */
}

.company-card {
    width: 360px;
    position: relative;
    transition: 0.4s ease;
}

.card-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 9%, 100% 100%, 0% 100%);
}

.card-image img {
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    clip-path: polygon(0 0, 90% 0, 100% 9%, 100% 100%, 0% 100%);
}

.card-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    /* background: rgba(24, 24, 25, 0.848); */
    background: linear-gradient(135deg,
            rgba(23, 23, 23, 0.7) 0%,
            rgba(10, 10, 10, 0.664) 50%,
            rgb(105, 102, 102) 100%);
    color: #fff;
    padding: 30px 25px;
    transition: bottom 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 90% 0, 100% 9%, 100% 100%, 0% 100%);
}

.card-content {
    text-align: center;
}
.company-card h4{
    margin: 0px -6px;
}
.company-card p{
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.company-card:hover .card-overlay {
    bottom: 0;
}

.company-name {
    margin-top: 15px;
    font-size: 18px;
    color: #000000;
    transition: opacity 0.3s ease;
}

.company-card:hover .company-name {
    opacity: 0;
}



/* ===================== Image Grid Section ===================== */

.hero-image {
    background-color: #fff7f3;
    min-height: 90vh;
    padding: 40px 0;
}

.image-content {
    text-align: center;
    margin-bottom: 50px;
}

.welcome-text {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr 1fr;
    grid-template-rows: 180px 240px 160px;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.03);
}

.flour-item {
    grid-column: 2;
    grid-row: 1;
    margin-left: -158px;
    margin-bottom: 43px;
}

.grains-item {
    grid-column: 2;
    grid-row: 2;
    margin-top: -47px;
    margin-left: 70px;
    margin-bottom: 144px;
}

.coal-item {
    grid-column: 5;
    grid-row: 1;
    margin-left: -89px;
    margin-right: 90px;
    margin-bottom: -107px;
}

.port-large {
    grid-column: 3 / 1;
    grid-row: 2;
    margin-right: 140px;
    margin-left: -300px;
    margin-top: -47px;
    margin-bottom: 16px;
}

.partner-overlay {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    margin-right: 86px;
    margin-bottom: 144px;
    margin-left: -4px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    clip-path: polygon(90% 0, 100% 12%, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 0);
}

.mixed-materials {
    grid-column: 4 / 6;
    grid-row: 2 / 4;
    margin-top: 103px;
    margin-right: -300px;
    margin-bottom: 25px;
    margin-left: 99px;
}

.business-overlay {
    grid-column: 1;
    grid-row: 3;
    margin-top: -20px;
    margin-right: -74px;
    margin-bottom: 24px;
    margin-left: -55px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    clip-path: polygon(100% 0, 100% 27%, 100% 60%, 100% 100%, 10% 100%, 0 83%, 0 0);
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    clip-path: inherit;
}

.partner-overlay .overlay-content,
.business-overlay .overlay-content {
    position: relative;
    z-index: 1;
}

.silos-item {
    grid-column: 2 / 4;
    grid-row: 3;
    margin-top: -149px;
    margin-left: 71px;
    margin-bottom: 25px;
    margin-right: -102px;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h3 {
    position: absolute;
    top: 170px;
    right: 71px;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.leaf {
    width: 373px;
    height: 302px;
    background: #0260A35E 37%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.leaf i {
    font-size: 44px;
    color: white;
    position: absolute;
    top: 36px;
    right: 50px;
    transform: rotate(-21deg);
}

.overlay-content h4 {
    position: absolute;
    top: 143px;
    right: 24px;
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check {
    width: 329px;
    height: 223px;
    background: #0260A35E 37%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.check i {
    font-size: 44px;
    color: white;
    position: absolute;
    top: 54px;
    right: 259px;
}


/* --- fade animation css --- */

.fade-in {
    opacity: 0;
    transition: all 1.2s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.fade-top {
    transform: translateY(-150px);
}

.fade-top.visible {
    transform: translateY(0);
}

.fade-bottom {
    transform: translateY(150px);
}

.fade-bottom.visible {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-150px);
}

.fade-left.visible {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(150px);
}

.fade-right.visible {
    transform: translateX(0);
}



/* ===================== Our Segments Section ===================== */

.segment-section {
    padding: 100px 0;
}

.section-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.icon-img {
    width: 50px;
    height: auto;
}

.segment-box p {
    font-size: 15px;
    line-height: 1.6;
}

.read-more {
    text-decoration: none;
    font-weight: 500;
    color: #1f1f1f;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.read-more .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more:hover .arrow {
    transform: translateX(6px);
}

.read-more:hover {
    color: #104f93;
}



/* ===================== Who We Are Section ===================== */

.about {
    padding: 0px 0 110px;
}
.stats-section h2.main-heading {
    margin-bottom: 0px;
}

.about-title {
    color:#0260A3;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.left-stack {
    position: relative;
}

.bottom-img {
    position: absolute;
    height: 500px;
    top: -222px;
    left: 0;
    clip-path: polygon(0 0, 93% 0, 100% 5%, 100% 100%, 0 100%);
}
.about .left-stack .img-box img.bottom-img {
    height: 100%;
}
.top-img {
    width: 300px;
    height: 436px;
    position: absolute;
    top: -55px;
    left: 167px;
    border: 11px solid #fff7f3;
    clip-path: polygon(0 0, 85% 0, 100% 13%, 100% 100%, 0 100%);
}

.btn-gradient {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    background: linear-gradient(90deg, #0a4b92 54%, #48b8d0);
    color: #ffffff;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 0 100%);
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #48b8d0, #0a4b92 54%);
    color: #fff;
    transform: scale(1.02) ease-in-out;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-gradient:hover i {
    transform: translateX(5px);
}


.logo-overlap {
    position: absolute;
    width: 80px;
    height: 70px;
    top: 295px;
    left: 35px;
}


/* ===================== Why Us Section ===================== */
.stats-section {
    background-color: #fff8f5;
    padding-top: 150px;
    padding-bottom: 100px;
  }
  
  .stats-title {
    color: #0260A3;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.6px;
    margin-bottom: 15px;
}
  
  .map-container {
    position: relative;
    display: inline-block;
  }
  
  .world-map {
    width: 90%;
    object-fit: cover;
  }
  
  /* Routes */
  .route-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .route {
    fill: none;
    stroke: #f11c31;
    stroke-width: 2;
    stroke-dasharray: 6;
    animation: dashmove 4s linear infinite;
  }
  
  @keyframes dashmove {
    0% {
      stroke-dashoffset: 0;
    }
    100% {
      stroke-dashoffset: -12;
    }
  }
  
  /* Location Markers (Icons) */
  .marker {
    position: absolute;
    font-size: 24px;
    color: #f11c31;
    animation: pulse 2s infinite;
    cursor: pointer;
  }
  
  .marker::after {
    content: attr(data-label);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: #908f8fbf;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: 0.3s;
  }
  
  .marker:hover::after {
    opacity: 1;
  }
  
  /* Circular Pulse Effect */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(241, 28, 49, 0.6);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(241, 28, 49, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(241, 28, 49, 0);
    }
  }
  
  /* Marker positions (adjusted for icon centering) */
  .india {
    top: 55%;
    left: 68%;
    transform: translate(-50%, -50%);
  }
  
  .dubai {
    top: 53%;
    left: 62%;
    transform: translate(-50%, -50%);
  }
  
  .sa {
    top: 82%;
    left: 53%;
    transform: translate(-50%, -50%);
  }
  
  /* Ships */
  .ship {
    position: absolute;
    font-size: 20px;
    cursor: pointer;
  }
  
  .ship::after {
    content: attr(data-volume);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #908f8fbf;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .ship:hover::after {
    opacity: 1;
  }
  
  /* Ship positions */
  .ship-1 {
    top: 43%;
    left: 64%;
  }
  
  .ship-2 {
    top: 65%;
    left: 58%;
  }
  
  /* Logo */
  .overlay-logo {
    position: absolute;
    z-index: 8;
    left: 170px;
    bottom: 23px;
    width: 115px;
    background: white;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 80%);
  }
  




/* ===================== Contact Us section ===================== */

/* .contact-section {
    position: relative;
    padding: 100px 20px;
    z-index: -999;
    overflow: hidden;
    clip-path: polygon(0 0, 97% 0, 100% 7%, 100% 100%, 0 100%);
} */
.contact-section {
    position: relative;
    padding: 64px 20px;
    z-index: -999;
    overflow: hidden;
    /* clip-path: polygon(0 0, 97% 0, 100% 7%, 100% 100%, 0 100%);
    background-color: rgba(2, 96, 163, 1); */
}

/* Parallax Fixed Video */
.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.video-wrapper video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

body.home .contact-section .contact-form .form-control::placeholder {
    color: #0260a3;
}


/* GLASS BOX */
.contact-section .container {
    background: rgba(0, 0, 0.1, 0);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.17);
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
}

.contact-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-section form,
.contact-section .contact-header {
    position: relative;
    z-index: 2;
}

/* .contact-header {
    text-align: center;
    margin-bottom: 40px;
} */
 .contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-label {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}
.contact-title {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* .form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
} */

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
    margin-bottom: 15px;
}

.form-field {
    clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 0 100%);
}

.form-field.full-width {
    grid-column: 1 / -1;
    clip-path: polygon(0 0, 97% 0, 100% 14%, 100% 100%, 0 100%);
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: 0;
    background: #ffffff;
    color: #0a4b92;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-control::placeholder {
    color: #0a4b92;
    opacity: 0.8;
}

.form-control:focus {
    transform: translateY(-2px);
    background: #f0f8fc;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* .btn-container {
    margin-top: 30px;
} */
 .btn-container {
    margin-top: 15px;
}

.btn-gradient1 {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    background-color: #ffffff;
    color: #0c5996;
    border: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 0 100%);
}

.btn-gradient1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-gradient1:hover::before {
    left: 100%;
}

.btn-gradient1:hover {
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    color: #000000;
    transform: scale(1.02);
}

.btn-gradient1 i {
    color: #0c5996;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-gradient1:hover i {
    transform: translateX(5px);
    color: #000000;
}


.form-control.is-valid {
    /* border: 2px solid #28a745; */
    background: #e6f9ec;
}

.form-control.is-invalid {
    /* border: 2px solid #dc3545; */
    background: #fce2e2;
}

.invalid-feedback {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
    display: none;
    transition: 0.3s ease;
}

.form-control.is-invalid+.invalid-feedback {
    display: block;
}



/* ===================== Sustainability Section ===================== */

.sustainability-section {
    padding: 60px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.sustainability-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 98% 0, 100% 34%, 100% 100%, 0 100%);
}

.sustain .section-tag {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.main-heading {
    color: #2A2A2A;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.about .main-heading{
    color: rgba(16, 37, 33, 1);
}


.subtitle {
    color: #000000;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sustainability-points {
    padding: 0;
}

.sustainability-points li {
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.sustainability-points li strong {
    color: #212529;
    font-weight: 600;
}



/* ===================== Blog Section ===================== */

.blog-section {
    padding: 100px 0;
    min-height: 100vh;
}

.blog-tag {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-family: 'plus-jakarta-sans', sans-serif;
    color: #000000;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: transparent;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.blog-card-image {
    position: relative;
    height: 369px;
    overflow: hidden;
    clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 0 100%);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 0 100%);
}

.blog-card .blog-card-image img:hover {
    transform: translateY(-5px);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.10);
}

.date-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0a4b92;
    color: white;
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    z-index: 10;
    clip-path: polygon(0 0, 75% 0, 100% 21%, 100% 100%, 0 100%);
}

.date-badge .day {
    font-size: 20px;
    line-height: 1;
    display: block;
}

.date-badge .month {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding-left: 0px;
    padding-top: 21px;
}

.blog-card-title {
    color: #000000;
    font-family: 'plus-jakarta-sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    min-height: 70px;
    display: flex;
    align-items: start;
}

.visit-blog-btn {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    background: linear-gradient(90deg, #0a4b92 54%, #48b8d0);
    color: white;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    display: inline-flex;
    clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 0 100%);
}

.visit-blog-btn:hover {
    background: linear-gradient(90deg, #48b8d0, #0a4b92 54%);
    transform: scale(1.02) ease-in-out;
    color: white;
}

.visit-blog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: left 0.5s ease;
}

.visit-blog-btn:hover::before {
    left: 100%;
}

.contact-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.visit-blog-btn:hover i {
    transform: translateX(5px);
}



/* ===================== Footer Section ===================== */

.footer-section {
    padding: 74px 0px 22px !important;
    background-color: #fff7f3;
    position: relative;
}

.footer-layer {
    background-color: #2A2A2A;
    color: #ffffff;
    clip-path: polygon(0 0, 97% 0, 100% 11%, 100% 100%, 0 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 0;
}

.footer-visible i {
    color: #0c5996;
    font-size: 16px;
    padding-top: 4px;
}

.footer-heading {
    height: 30px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 30px
}

.footer-list {
    list-style: none;
    padding-left: 0;
    padding-bottom:1px;
}

.footer-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.footer-list li::before {
    content: "" !important;
    position: absolute;
    left: 0px;
    bottom: 4px;
    color: #fff;
    height: 20px;
    width: 20px;
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 1.99987V11.9647C0.5 13.0729 1.84766 13.6342 2.63398 12.8483L7.63398 7.88347C8.12227 7.39518 8.12227 6.60417 7.63398 6.11589L2.63398 1.15104C1.84766 0.330732 0.5 0.887373 0.5 1.99987ZM6.75 6.99987L1.75 11.9647V1.99987L6.75 6.99987Z" fill="%23B3B5B6"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.footer-list a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    line-height: 30px;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
}

.footer-list a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-list a:hover::after {
    width: 100%;
}


.footer-btn {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    background-color: #ffffff;
    color: #000000;
    letter-spacing: 0.5px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease all;
    display: inline-flex;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 92% 0, 100% 30%, 100% 100%, 0 100%);
}

.footer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: left 0.5s ease;
    z-index: 1;
}

.footer-btn:hover {
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    color: #0c5996;
    transform: scale(1.02);
}

.footer-btn:hover::before {
    left: 100%;
}

.footer-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.footer-btn:hover i {
    transform: translateX(5px);
    color: #0c5996;
}

.footer-socials a {
    z-index: 8;
    position: relative;
    display: flex;
    color: #fff;
    margin-top: 12px;
    font-size: 20px;
    border: 1px solid #fff;
    padding: 5px 4px;
    border-radius: 50%;
    display: inline-flex;
    transition: all 0.3s ease;
    margin-left: -10px;
}

.footer-socials a:hover {
    background-color: #0c5996;
    color: #ffffff;
}

i.foot-1 {
    z-index: 8;
    position: relative;
    display: flex;
    padding: 10px 14px;
    font-size: 18px;
    color: #ffffff;
}

i.foot-2 {
    z-index: 8;
    position: relative;
    display: flex;
    font-size: 18px;
    color: #ffffff;
    padding: 10px;
}

i.foot-3 {
    z-index: 8;
    position: relative;
    display: flex;
    font-size: 18px;
    color: #ffffff;
    padding: 10px 12px;
}

.footer-visible {
    z-index: 8;
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.footer-visible a {
    color: #ffffff;
}

.footer-logo {
    width: 400px;
    margin-left: 32px;
}

/*======================== Responsive Styles ========================*/

/* ================== LARGE DESKTOP (1400px+) ================== */

/* ==== NAVBAR + BANNER RESPONSIVE ==== */
/* @media (min-width: 1400px)  */


/* ========== DESKTOP/LAPTOP (1200px - 1399px) ========== */
/* ==== NAVBAR + BANNER RESPONSIVE ==== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 20px;
    }
}

/* ==== GROUP SECTION RESPONSIVE ==== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .group-section {
        padding: 90px 0px;
    }

    .group-section .main-heading {
        font-size: 38px;
    }

    .group-section .description {
        font-size: 17px;
        max-width: 850px;
    }


    .company-card {
        width: 360px;
    }

    .card-image img {
        height: 460px;
    }
}


/* ========== SMALL LAPTOP (1024px - 1199px) ========== */
/* ==== NAVBAR + BANNER RESPONSIVE ==== */
@media (min-width: 1024px) and (max-width: 1199px) {
    .info-bar {
        margin: 15px 20px 0px 20px;
        padding: 0px 8px;
    }

    .main-nav {
        margin: 0px 20px;
        padding: .75rem 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0 .6rem;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .logo-img {
        height: 50px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ========== IPAD/TABLET PORTRAIT (768px and down in mobile view) ========== */
/* ==== NAVBAR + BANNER RESPONSIVE ==== */
@media (max-width: 991px) {
    .navbar-toggler {
        border: none;
        padding: 6px 8px;
        background: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler i {
        color: #0a4b92;
        font-size: 20px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 10px;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 12px 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* ==== GROUP SECTION RESPONSIVE ==== */


@media (max-width: 991px) {
    .group-section {
        padding: 70px 20px;
    }


    .group-section .main-heading {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .group-section .description {
        font-size: 15px;
        margin-bottom: 50px;
    }

  .company-grid {
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

    .company-card {
        width: 300px;
    }

    .card-image img {
        height: 380px;
    }

    .card-overlay {
        padding: 22px 16px;
    }

    .card-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .card-content .contact-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .company-name {
        font-size: 16px;
        margin-top: 12px;
    }
}

/* ========== MOBILE PORTRAIT (320px - 666px) ========== */
/* ==== NAVBAR + BANNER RESPONSIVE ==== */
@media (max-width: 666px) {

    /* Hide info bar completely */
    .info-bar {
        display: none !important;
    }

    .main-nav {
        margin: 10px 10px 0px 10px;
        padding: .5rem .75rem;
        clip-path: none;
    }


    .logo-img {
        height: 35px;
        padding-left: 0;
    }

    .mobile-contact {
        justify-content: start;
        display: table;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .hero-overlay {
        padding: 20px;
        align-items: flex-start;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: start;
        gap: 21px !important;
    }

    .hero-buttons .btn-custom {
        width: 200px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Video adjustments */
   
}

/* ==== GROUP SECTION RESPONSIVE ==== */

/* ========== EXTRA SMALL MOBILE (320px - 480px) ========== */
/* ==== NAVBAR + BANNER RESPONSIVE ==== */
@media (max-width: 480px) {
    .main-nav {
        margin: 8px 8px 0px 8px;
        padding: .4rem .5rem;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons .btn-custom {
        width: 180px;
        padding: 8px 16px;
        font-size: 13px;
    }

    .logo-img {
        height: 30px;
    }
}

/* ==== GROUP SECTION RESPONSIVE ==== */

/* ========== MOBILE MENU ENHANCEMENTS ========== */
/* ==== NAVBAR + BANNER RESPONSIVE ==== */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        transition: all 0.3s ease;
    }

    .mobile-contact {
        margin-top: 0px;
        padding: 10px 20px;
    }
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
/* ==== NAVBAR + BANNER RESPONSIVE ==== */
@media (max-width: 767px) {

    /* Optimize video for mobile */
    .hero-section video {
        object-position: center center;
    }

    /* Reduce animations on mobile for better performance */
    .btn-custom:hover {
        transform: scale(1.01);
    }

    .preloader-logo {
        width: 80px;
        height: 80px;
    }
}
:root{
    --font2 : "DM Sans", sans-serif;
}

.info-bar,
.main-nav {
    position: relative;
    z-index: 999;
}
.inner-banner-section.about-us-banner-section,
.inner-banner-section.contact-banner-section{
    background-image: url(../images/about-us.png);
}
.inner-banner-section.about-us-banner-section:before{
    background-color: rgba(0, 0, 0, 0.09);
}
.inner-banner-section.contact-banner-section:before{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.29) 33.86%, rgba(255, 249, 249, 0.29) 99.37%);

}
.inner-banner-section {
    background-image: url(../images/banner-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 190px 0px 0px;
    margin-top: -60px;
    position: relative;
}
.inner-banner-section h2{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-top: 40px;
    text-transform: uppercase;
}
.inner-banner-section:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0px;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.6);
    
}
.inner-banner-section nav{
    margin-top: 144px;
    padding-bottom: 20px;
}
ol.breadcrumb{
    justify-content: center !important;
}
ol.breadcrumb li.breadcrumb-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    display: flex;
    letter-spacing: 1px;
    align-items: center;
    gap: 10px;
}
ol.breadcrumb li.breadcrumb-item a{
    color: #fff;
}
ol.breadcrumb li.breadcrumb-item a:hover{
    opacity: 0.8;
}
ol.breadcrumb li.breadcrumb-item+li.breadcrumb-item::before {
    content: "";
    height: 16px;
    width: 16px;
    background-image: url('data:image/svg+xml,<svg width="6" height="9" viewBox="0 0 6 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.106445 7.55333L3.15978 4.5L0.106445 1.44L1.04645 0.5L5.04645 4.5L1.04645 8.5L0.106445 7.55333Z" fill="white"/></svg>');
   background-repeat: no-repeat;
   background-position: center;
   background-size: 8px;
}
ol.breadcrumb li.breadcrumb-item+li.breadcrumb-item{
    padding-left: 10px;
}

.title h5 {
    margin-bottom: 22px;
    font-size: 20px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    color: #0260a3;
    letter-spacing: 1.6px;
}
.title h3{
    color: #2a2a2a;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;

}
.title p{
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: #000;
}
.our-group-section{
    padding: 94px 0px 113px;
}
.our-group-wrap{
    margin-top: 40px;
}
.our-group-box{
    padding-top: 40px;
}
.our-group-box .content{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.our-group-box h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 64px;
    color: #000000;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
    width: fit-content;
}
.sector-list-section .our-group-box h4 {
    line-height: 40px;
    padding-bottom: 0px;
    border-bottom: 0px;
    width: 100%;
    margin-bottom: 0px;
}

.our-group-box p {
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 400;
    line-height: 160%;
    color: #000000;
    max-width: 622px;
    width: 100%;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .image,
.our-group-section .our-group-wrap .our-group-box:nth-child(even) .row > * .content {
    margin-left: 50px;
}
.our-group-box .image{
    max-width: 622px;
    width: 100%;
    position: relative;
}
.our-group-box .image:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    right: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    background-color: #fff7f3;
}
.our-group-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-group-wrap .our-group-box:nth-child(3) hr {
    max-width: 550px;
}


.our-goals-section{
    padding: 100px 0px;
}
.our-goals-section .title p {
    max-width: 1140px;
    margin: 20px auto 0px;
    width: 100%;
}
.our-goals-section .our-goal-wrap {
    margin-top: 42px;
}
.our-goal-wrap .our-goal-icon-box {
    text-align: center;
}
.our-goal-icon-box .icon {
    margin: 0px auto 18px;
    width: 95px;
}
.our-goal-icon-box .icon img{
    width: 100%;
}

.our-goal-icon-box h4 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}
.our-goal-icon-box p {
    font-size: 20px;
    color: #000;
    max-width: 590px;
    width: 100%;
    margin: 0px auto;
}
.step-section{
    padding-bottom: 100px;
}
.step-wrap {
    background-image: url(../images/assist-bg.png);
    padding: 50px 100px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-size: cover;
}
.step-wrap:before{
    position: absolute;
    content: "";
    height: 50px;
    width: 50px;
    background-color: #fff;
    right: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.step-wrap h3{
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
    color: #fff;
    margin-bottom: 0px;
}
.step-section .step-wrap .hero-buttons {
    display: flex !important;
}
.step-wrap .hero-buttons a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.certificate-section{
    padding: 150px 0px 125px;
    background-image: url(../images/certificate-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.certificate-section .title h5 {
    color: #fff;    
    margin-bottom: 17px;
}
.certificate-section .title h3 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    max-width: 1125px;
    width: 100%;
    letter-spacing: 2px;
}
.certificate-section  .certificate_wrap {
    margin-top: 50px;
}
.certificate_wrap .certificate_slider .image,
.certificate_wrap .certificate_about_slider .image {
      background-color: #e8e9e8;
    padding: 28px 38px;
    position: relative;
    overflow: hidden;
}
.certificate_wrap .certificate_slider .image:before,
.certificate_wrap .certificate_about_slider .image:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 36px;
    background-color: #282828;
    right: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.certificate_wrap .certificate_slider .image img,
.certificate_wrap .certificate_about_slider .image img{
    transition: all 0.5s;
}
.certificate_wrap .certificate_slider img:hover,
.certificate_wrap .certificate_about_slider img:hover{
    transform: scale(0.98);
}
.fancybox__thumbs {
    display: none;
}
.certificate_slider .owl-nav,
.certificate_about_slider .owl-nav {
    width: fit-content;
    position: absolute;
    right: 0px;
    top: -96px;
    align-items: center;
}
.certificate_slider .owl-nav button.owl-prev,
.certificate_slider .owl-nav button.owl-next,
.certificate_about_slider .owl-nav button.owl-prev,
.certificate_about_slider .owl-nav  button.owl-next {
    height: 44px;
    width: 44px;
    opacity: 0.5;
    background-image: url('data:image/svg+xml,<svg width="35" height="41" viewBox="0 0 35 41" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M34.9297 20.79C34.9297 21.4775 34.4375 22.04 33.75 22.04H5.3258L15.9274 33.7041C16.3913 34.2143 16.3534 35.0056 15.8431 35.4689C15.6016 35.6806 15.2969 35.79 15 35.79C14.6606 35.79 14.3213 35.6533 14.075 35.3798L1.57502 21.6298C1.14166 21.1538 1.14166 20.4259 1.57502 19.9502L14.075 6.20016C14.5413 5.6875 15.3321 5.65328 15.8414 6.11469C16.3517 6.57859 16.3896 7.36938 15.9256 7.87953L5.3258 19.54H33.75C34.4375 19.54 34.9297 20.1025 34.9297 20.79Z" fill="white"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s;
}
.certificate_slider .owl-nav button.owl-next,
.certificate_about_slider .owl-nav button.owl-next{
    transform: scale(-1);
    margin-left: 20px;
}
.certificate_slider .owl-nav button span,
.certificate_about_slider .owl-nav button span{
    display: none;
}
.certificate_slider .owl-nav button:hover,
.certificate_about_slider .owl-nav button:hover{
    opacity: 1;
}



.product-list-section{
    padding: 145px 0px;
}
.product-list-wrap .row {
    row-gap: 48px;
}
.product-list-wrap .product-box{
    position: relative;
}
.product-box .image {
    height: fit-content;
    overflow: hidden;
    position: relative;
}
.product-box .image:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 36px;
    background-color: #fff7f3;
    right: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}
.product-box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.product-box:hover .image img{
    transform: scale(1.1);
}
.product-box .content {
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.product-list-wrap .product-box:hover .content{
    height: 100%;
    opacity: 1;
    visibility: visible;
  
}
.product-box h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 34px;
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
}
.product-box h4 a{
    color: rgb(255, 255, 255);
}
.product-box h4 a:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.product-box:hover h4 a{
    /* color: #000; */
}
.sector-list-section .our-group-box {
    margin-bottom: 70px;
}
.sector-list-section .our-group-box .content {
    justify-content: start;
}
.sector-list-section .our-group-box p{
    margin-top: 0px;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 15px;
    max-width: 100%;
}
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .image,
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(even) .row > * .content{
    margin-left: 20px;
}
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .content,
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(even) .row > * .image{
    margin-right: 20px;
}

.sector-list-section .our-group-box p:nth-last-child(2) {
    margin-bottom: 0px;
}
.product-image-section{
    padding: 140px 0px;
}

.product-image-wrap .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image-wrap .row{
    row-gap: 30px;
}
.product-detail-content-section{
    padding: 150px 0px 95px;
}
.product-detail-content-wrap .image{
    margin-bottom: 70px;
    max-width: 1345px;
    width: 100%;
}
.product-detail-content-wrap .image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.product-detail-content-wrap  h3{
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 40px;
    color: rgba(42, 42, 42, 1);
    margin-bottom: 20px;
}
.product-detail-content-wrap  p{
     font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 20px;
}
.product-detail-content-wrap .txt-wrap{
    margin-top: 14px;
    margin-bottom: 34px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(2, 96, 163, 1);
}
.product-detail-content-wrap .txt-wrap p{
    font-size: 28px;
    color: rgba(2, 96, 163, 1);
    font-weight: 500;
    line-height: 43px;
    margin-bottom: 0px;
}
.product-detail-content-wrap p:last-child{
    margin-bottom: 0px;
}
.team-section{
    padding: 130px 0px;
}
.team-wrap .team-box{
    margin-bottom: 120px;
}   
.team-wrap .team-box:last-child{
    margin-bottom: 0px;
}
.team-box .image {
    max-width: 500px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    position: relative;
}
.team-box .image:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 36px;
    background-color: #fff7f3;
    right: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}
.team-box .image img {
    width: 100%;
}
.team-box .personal-detail-wrap h3 {
    font-size: 40px;
    font-weight: 700;
    color: rgba(14, 18, 29, 1);
    line-height: 34px;
    margin-bottom: 26px;
}
.team-box .personal-detail-wrap h5 {
    font-size: 24px;
    font-weight: 400;
    color: rgba(2, 96, 163, 1);
    margin-bottom: 15px;
    line-height: 26px;
     font-family: var(--font2);
    text-transform: capitalize;
}
.team-box .professional-detail-wrap p br {
    display: none;
}
.team-box .personal-detail-wrap p {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    font-family: var(--font2);
    color: rgba(0, 0, 0, 1);
    margin-bottom: 25px;
    text-transform: capitalize;
}
.team-box .personal-detail-wrap p span {
    text-transform: uppercase;
}
.team-box .professional-detail-wrap h4{
    font-size: 32px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    line-height: 26px;
    margin-bottom: 24px;
      font-family: var(--font2);
}

.team-box .professional-detail-wrap p {
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 15px;
    font-family: var(--font2);
}
.team-box .social_media h4{
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    line-height: 26px;
      font-family: var(--font2);
    margin-bottom: 0px;
}
.social_media a {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font2);
    color: rgba(0, 0, 0, 1);
    line-height: 26px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(2) {
    order: -1;
}
.team-wrap .team-box:nth-child(odd) .row > *:nth-child(2) {
    display: flex;
    justify-content: end;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(1) {
    padding-left: 30px;
}
.team-wrap .team-box:nth-child(odd) .row > *:nth-child(1) {
    padding-right: 18px;
}
.team-box .social_media .icon{
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #0260a3;
    color: #0260a3;
    background-color: #fff;
    border-radius: 25px;
    transition: all 0.5s;
}
.team-box .social_media .icon:hover{
    background-color: #0260a3;
    color: #fff;
}
.get-in-touch-section{
    padding: 125px 0px 100px;
}
.cnt-wrap{
    margin-top: 60px;
}
.cnt-box{
    padding: 30px;
    background-color: #fff;
}
.cnt-box .content{
    margin-top: 50px;
    text-align: right;
}
.cnt-box h4{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0260a3;
    line-height: 30px;
    margin-bottom: 0px;
    letter-spacing: 2px;

}
.cnt-box h4 a {
    color: #0260a3;
}
.cnt-box p{
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0px;
}
.cnt-box p a{
    color: rgba(0, 0, 0, 1);
    transition: all 0.5s;
}
.cnt-box p a:hover{
    color: #0260a3;
}
.contact-form-section{
    padding-bottom: 100px;
}
.contact-form-section h3{
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    color: rgba(42, 42, 42, 1);
    text-transform: uppercase;
    margin-bottom: 50px;
}
.contact-form{
    width: 100%;
}
.contact-form .txt-wrap{
    display: flex;
    gap: 10px;
}
.contact-form .form-field{
    margin-bottom: 10px;
}
.contact-form .txt-wrap .form-field{
    width: 50%;
}
.contact-form .txt-wrap input.form-field{
    width: 100%;
}
.contact-form .txt-wrap input.form-control,
.contact-form textarea.form-control{
    height: 55px;
    padding: 0px 20px;
    border: 0px;
    box-shadow: 1px 1.73px 4px 0px rgba(16, 37, 33, 0.04);
    color: #000;
}
.contact-form .txt-wrap input.form-control::placeholder,
.contact-form textarea.form-control::placeholder{
    color: rgba(117, 117, 117, 1);
}
.contact-form .txt-wrap input.form-control:focus,
.contact-form textarea.form-control:focus{
    transform: unset;
    background-color: #fff;
}
.contact-form textarea.form-control{
    height: 185px;
    padding: 16px 20px;
}
.contact-form .submit-btn {
    margin-top: 10px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    justify-content: center;
    height: 67px;
    text-transform: uppercase;
    font-weight: 600;
    clip-path: none;
}
.contact-form .submit-btn:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background-color: #fff7f3;
    left: auto;
    right: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.get-in-touch-section .container {
    max-width: 1070px;
    width: 100%;
}
.contact-form-section .container{
    max-width: 1070px;
    width: 100%;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(even) .row > *:nth-child(2) {
    order: -1;
}
footer .row > * {
    margin-bottom: 0px !important;
}
section.our-group-section.sector-list-section {
    padding: 130px 0px 100px;
}
.sector-list-section .our-group-wrap {
    margin-top: 0px;
}
.stats-section .container {
    max-width: 100%;
    padding: 0px;
}
.contact-form  p {
    margin-bottom: 0px;
}
section.our-group-section.sector-list-section .title h3 {
    margin-bottom: 20px;
}
section.our-group-section.sector-list-section .title{
    margin-bottom: 75px;
}
section.our-group-section.sector-list-section .title p {
    max-width: 1132px;
    width: 100%;
    margin: 0px auto;
}
.our-story h2.main-heading {
    margin-bottom: 60px;
}
.company-section .row:nth-child(2) > * {
    height: 114px;
    border: 1px solid rgba(218, 218, 218, 1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 15px 24px;

}
.company-section .row:nth-child(2) > * img{
    width: auto;
}
.company-section h2.company-heading {
    margin-bottom: 50px;
    color: #000;
}
.contact-section .contact-form-wrap .form-field:has(textarea) {
    clip-path: polygon(0 0, 97% 0, 100% 10%, 100% 100%, 0 100%) !important;
}
.contact-section .contact-form-wrap .contact-form .submit-btn{
    padding: 15px 101px;
    font-weight: 800;
    font-size: 12px;
    background: #ffffff;
    color: #0c5996;
    border: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
   clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 0 100%);
    letter-spacing: 2px;
    height: 60px;
}

.group-section .company-card a.contact-btn {
    padding: 0px 28px;
    font-weight: 600;
    letter-spacing: 2px;
   clip-path: polygon(0 0, 93% 0, 100% 19%, 100% 100%, 0 100%);
    background: linear-gradient(92.98deg, #0C5996 -13.42%, #2570A3 54.17%, #58A2BE 117.45%);
    height: 62px;
    font-size: 12px;
    gap: 4px;
    text-transform: uppercase;
}
.about .row > *:nth-child(2) {
    padding-left: 35px;
}
.about .left-stack {
    margin-top: 10px;
}
.footer-section .row > *:nth-child(4) h5 {
    font-size: 30px;
}
.team-wrap .team-box:nth-child(even) .row > * {
    padding: 0px;
}
section.product-detail-section {
    padding: 150px 0px 60px;
}
.product-detail-section .image {
    height: 415px;
    position: relative;
}
.product-detail-section .image:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 36px;
    background-color: #fff7f3;
    right: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}
.product-detail-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail-section .content {
    padding-left: 46px;
}
.product-detail-section .content h3{
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 46px;
    color: #2a2a2a;

}
.product-detail-section .content p {
    margin-bottom: 28px;
    max-width: 100%;
    width: 100%;
}
.product-detail-section .content p:last-child {
    margin-bottom: 0px;
}
.product-detail-section p{
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font2);
    line-height: 29px;
    color: #000;
    margin-bottom: 43px;
}
.product-detail-section blockquote {
    margin: 60px 0px ;
}
.product-detail-section blockquote p {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font2);
    line-height: 29px;
    color: #000;
    margin-bottom: 43px;
}
.contact-form-pd-section{
    padding: 58px 0px 64px;
}
.contact-form-pd-section p.contact-content{
    font-size: 24px;
    font-weight: 400;
    color: #000;
    font-family: var(--font2);
    line-height: 29px;
    margin-bottom: 50px;
}
.product-single:has(.certificate-section) .contact-form-pd-section p.contact-content{
  margin-bottom: 50px;
}
.product-single:not(:has(.certificate-section)) .contact-form-pd-section{
    padding-top: 0px;
}

.product-single:not(:has(.certificate-section)) .contact-form-pd-section p.contact-content{
  margin-bottom: 50px;
}
.contact-form-pd-section .contact-form-wrap{
    max-width: 905px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
}
.contact-form-pd-section .container {
    width: 100%;
    max-width: 1320px;
}
.contact-form-pd-section .contact-form-wrap h5{
    font-size: 20px;
    font-weight: 700;
    color: rgba(2, 96, 163, 1);
    letter-spacing: 1.6px;
    line-height: 16px;
    margin-bottom: 15px;
}
.contact-form-pd-section .contact-form-wrap h3{
    font-size: 45px;
    font-weight: 600;
    color: #2a2a2a;
    line-height: 60px;
    margin-bottom: 25px;
}
.contact-form-pd-section .contact-form-wrap .submit-btn-wrap {
    text-align: left;
}
.contact-form-pd-section .contact-form input.form-control,
.contact-form-pd-section .contact-form textarea.form-control,
.contact-form-pd-section .contact-form input.form-control::placeholder,
.contact-form-pd-section .contact-form textarea.form-control::placeholder{
    color: rgba(2, 96, 163, 1);
}
.product-detail-section .container .row:nth-child(2) p:last-child {
    margin-bottom: 0px;
}
.product-detail-section h4 b,
.product-detail-section h5 b {
    font-family: var(--font2);
}
.product-detail-section h4,
.product-detail-section h5 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.product-detail-section ul li {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
    font-family: var(--font2);
}
.product-detail-section ul li:last-child {
    margin-bottom: 0px;
}
.product-detail-section ul li  b{
     font-family: var(--font2);
}
.product-detail-section ul:has(+ h5),
.product-detail-section ul:has(+ h4) {
  margin-bottom: 40px; 
}
.product-detail-section ul{
    margin-bottom: 0px;
}
.product-detail-section .row:nth-child(2) > * > *:first-child {
    margin-top: 60px;
}
section.policy_section {
    padding: 100px 0px;
}
section.policy_section h3:first-child{
    margin-top: 0px;
}
section.policy_section h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font2);
    color: #000;
    margin-top: 35px;
}
section.policy_section  h4 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    font-family: var(--font2);
    margin-bottom: 12px;
    margin-top: 20px;
}
section.policy_section p {
    font-size: 18px;
    color: #000;
}
section.policy_section p:last-child{
    margin-bottom: 0px;
}
section.policy_section  ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}
.page-template-front-page .wpcf7 form.invalid .wpcf7-response-output, .page-template-front-page .wpcf7 form.unaccepted .wpcf7-response-output, .page-template-front-page .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff00008a;
    background-color: #ff00001c;
    border-radius: 6px;
    color: #fff;
}
.page-template-front-page .wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450b0;
    background-color: #46b45038;
    border-radius: 8px;
    color: #fff;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff00008a;
    background-color: #ff00001c;
    border-radius: 6px;
    color: #1d2327;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450b0;
    background-color: #46b45038;
    border-radius: 8px;
    color: #1d2327;
}
.page-template-front-page .wpcf7-not-valid-tip {
    text-align: left;
    font-size: 13px;
    color: #fff;
}
.wpcf7-not-valid-tip {
    text-align: left;
    font-size: 13px;
    color: #dc3232;
}
.contact-form .submit-btn br {
    display: none;
}
.product-detail-section .product_carousel .owl-dots {
    width: fit-content;
    margin: 15px auto 0px;
}
.product-detail-section .product_carousel .owl-dots button.owl-dot {
    height: 6px;
    width: 6px;
    background-color: #000;
    border-radius: 50%;
    margin: 0px 3px;
    opacity: 0.2;
    transition: all 0.5s;
}
.product-detail-section .product_carousel .owl-dots button.owl-dot.active {
    opacity: 1;
    height: 7px;
    width: 7px;
}
.contact-form-pd-section .row.product-image-row > *{
    padding: 15px;
}
.contact-form-pd-section .image {
    height: 400px;
}
.contact-form-pd-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-form-pd-section .row.product-image-row {
    margin-bottom: 100px;
}
body.single-advancedproducts .fancybox__carousel .fancybox__nav,
body.page-template-about-us  .fancybox__carousel .fancybox__nav{
    display: none;
}
.product-detail-section p:nth-last-child(2) {
    margin-bottom: 0px;
}
@media (max-width:1919px) {
    .title h5 {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .our-group-box p {
        margin-top: 15px;
        font-size: 18px;
        max-width: 520px;
    }
    .certificate-section .title h5{
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .certificate-section .title h3 {
        max-width: 1050px;
    }
    .certificate_wrap .certificate_slider .image,
    .certificate_wrap .certificate_about_slider .image {
        padding: 20px 30px;
}

.title h5 {
    margin-bottom: 20px;
}
.our-goals-section .title p {
    max-width: 1100px;
}
.our-goal-icon-box .icon{
    margin-bottom: 10px; 
    width: 80px;
}
.our-goal-icon-box h4 {
    margin-bottom: 15px;
    font-size: 22px;
}
.our-goal-icon-box p {
    font-size: 17px;
    max-width: 480px;
}
.footer-heading {
    font-size: 22px;
}
.team-box .personal-detail-wrap p{
    font-size: 20px;
}
.team-box .personal-detail-wrap h3{ 
    font-size: 35px;
    margin-bottom: 16px;
}
.team-box .personal-detail-wrap p {
    font-size: 20px;
}
.team-box .professional-detail-wrap p{
    font-size: 20px;
}
.our-group-box .image{
    max-width: 620px;
}
.years-content p {

    width: 236px;

    margin-right: 40px;

    margin-left: 30px;

    text-align: left;

    font-weight: 400 !important;
    
}
.dot-years {

    font-size: 24px;

    font-weight: 700;

    position: relative;

    margin-right: 185px;

    margin-left: 25px;

}
.team-box .professional-detail-wrap p {
    font-size: 20px;
}
.footer-logo {
    width: 300px;
}
.footer-section .row > *:nth-child(4) h5 {
    font-size: 22px;
}


}
@media (max-width:1439px) {
    .certificate-section .title h3 {
        max-width: 1000px;
        font-size: 45px;
    }
    .step-wrap {
        padding: 50px 50px;
    }
    .footer-heading {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .footer-list a {
        line-height: 26px;
        font-size: 18px;
    }
    .footer-fluid {
    padding: 0px 0px !important;
    max-width: 1140px;
}
.sector-list-section .our-group-box p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 12px;
}
.about .left-stack .img-box img.bottom-img {
    width: 100%;
}
.about .main-heading {
    font-size: 36px;
}
.contact-form-pd-section .container {
    max-width: 1140px;
}

}
@media (max-width:1400px) {
    .our-group-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .image {
    margin-left: 0px;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(even) .row > * .content{
    margin-left: 16px;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(odd) .row > *:nth-child(2){
    display: flex;
    justify-content: end;
}
.product-detail-section p {
    font-size: 22px;
}
.product-detail-section blockquote p {
    font-size: 22px;
}
.product-detail-section .content {
    padding-left: 35px;
}
.product-detail-section .content h3 {
    font-size: 45px;
    margin-bottom: 35px;
}
.product-detail-section .image {
    height: 400px;
}
.contact-form-pd-section p.contact-content {
    font-size: 20px;
}
.product-single:has(.certificate-section) .contact-form-pd-section p.contact-content {
    margin-bottom: 80px;
}
.product-detail-section blockquote {
    margin: 40px 0px 35px;
}
.product-detail-section .row:nth-child(2) > * > *:first-child{
    margin-top: 40px;
}
}
@media (max-width:1365px) {
    .certificate-section .title h3 {
        font-size: 45px;
        max-width: 900px;
    }
    .step-wrap h3 {
        font-size: 38px;
    }
    .step-wrap {
        padding: 50px;
    }
.certificate-section .title h3 {
    font-size: 42px;
}
  .main-nav::after {
        height: 100%;
    }
.main-nav a.navbar-brand {
    margin-right: 10px !important;
}
.team-box .professional-detail-wrap h4 {
    font-size: 30px;
    margin-bottom: 16px;
}
.team-box .personal-detail-wrap h3 {
    font-size: 32px;
}
.team-box .personal-detail-wrap h5 {
    font-size: 22px;
    margin-bottom: 10px;
}
.team-box .professional-detail-wrap p {
    font-size: 18px;
    margin-bottom: 10px;
}
.social_media a {
    font-size: 22px;
}
.team-box .social_media .icon {
    height: 45px;
    width: 45px;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(1) {
    padding-left: 50px;
}
.group-section .company-card a.contact-btn {
    height: 52px;
}
.company-card h4 {
    font-size: 22px;
}

}
@media (max-width:1279px) {
    .our-group-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .image, 
    .our-group-section .our-group-wrap .our-group-box:nth-child(even) .row > * .content {
        margin-left: 20px;
    }
     .main-nav {
        padding: 22px 0px !important;
    }
    .me-lg-5 {
    margin-right: 0px !important;
    margin-left: 30px;
}
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .image, 
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(even) .row > * .content {
    margin-left: 0;
}
.our-group-section {
    padding: 90px 0px 100px;
}
.certificate-section {
    padding: 100px 0px;
}
section.product-detail-section {
    padding: 100px 0px 60px;
}
.hero-content {
    left: 60px;
}
.main-heading {
    font-size: 42px;
}
.product-single:has(.certificate-section) .contact-form-pd-section p.contact-content {
    margin-bottom: 50px;
}

}
@media (max-width:1199px) {
 .logo-img {
    padding-left: 32px;
    max-width: 160px;
    object-fit: contain;
}
    .navbar-nav .nav-link {
        margin: 0px 10px;
    }
     .inner-banner-section nav {
    margin-top: 100px;
}
.our-group-section {
    padding: 80px 0px;
}
.certificate-section {
    padding: 80px 0px;
}
.our-goals-section {
    padding: 80px 0px;
}
.inner-banner-section h2 {
    font-size: 50px;
}
.certificate-section .title h3 {
    font-size: 34px;
    max-width: 800px;
}
.our-goal-icon-box .icon {
    width: 70px;
}
.certificate_slider .owl-nav button.owl-prev, .certificate_slider .owl-nav button.owl-next,
.certificate_about_slider .owl-nav button.owl-prev ,.certificate_about_slider .owl-nav button.owl-next{
    height: 40px;
    width: 40px;
    background-size: contain;
}
.step-wrap {
    padding: 35px;
    margin: 0px;
}
.certificate_slider .owl-nav ,
.certificate_about_slider .owl-nav{
    gap: 15px;
}
.title h3 {
    font-size: 42px;
}
.title h5 {
    margin-bottom: 8px;
}
.step-wrap h3 {
    font-size: 30px;
}
.our-group-wrap{
    margin-top: 10px;
}
.inner-banner-section {
    padding: 150px 0px 0px;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .image, .our-group-section .our-group-wrap .our-group-box:nth-child(even) .row > * .content {
    margin-left: 0px;
}



.product-box .content {
    padding: 10px 30px;

}
.product-box h4 {
    font-size: 25px;
}
.product-list-wrap .row {
    row-gap: 50px;
}
.product-list-section {
    padding: 80px 0px 100px;
}
.sector-list-section .our-group-box {
    margin-bottom: 50px;
}
.our-group-box h4 {
    font-size: 24px;
}
.our-group-box p {
    font-size: 17px;
}
.product-image-section{
    padding: 90px 0px;
}
.product-detail-content-section {
    padding: 80px 0px;
}
.product-detail-content-wrap .image {
    margin-bottom: 50px;
}
.product-detail-content-wrap .txt-wrap p {
    font-size: 26px;
}
.product-detail-content-wrap .image {
    margin-bottom: 30px;
    height: 400px;
}
.product-detail-content-wrap  h3 {
    font-size: 32px;
    margin-bottom: 8px;
}
.product-detail-content-wrap  p {
    font-size: 17px;
    margin-bottom: 10px;
}
.product-detail-content-wrap .txt-wrap p {
    font-size: 24px;
    line-height: 35px;
}
.product-detail-content-wrap .txt-wrap {
    margin-bottom: 25px;
    padding-bottom: 15px;
}
.team-section {
    padding: 80px 0px;
}
.team-wrap .team-box {
    margin-bottom: 70px;
}
.team-box .personal-detail-wrap h5 {
    font-size: 22px;
    margin-bottom: 12px;
}
.team-box .professional-detail-wrap p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 150%;
}
.get-in-touch-section{
    padding: 80px 0px;
}
.get-in-touch-section .title h3 {
    font-size: 40px;
}
.contact-form-section h3 {
    font-size: 35px;
    margin-bottom: 30px;
}
.iframe-wrap iframe {
    width: 100%;
}
.cnt-wrap .cnt-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.cnt-box .content {
    margin-top: 40px;
}
.contact-form-section {
    padding-bottom: 80px;
}
.contact-form .submit-btn {
    max-width: 350px;
    height: 57px;
}

.get-in-touch-section .container {
    max-width: 960px;
}
.contact-form-section .container {
    max-width: 960px;
}
.team-box .personal-detail-wrap h3 {
        font-size: 24px;
        margin-bottom: 7px;
    }
.team-box .personal-detail-wrap p {
        font-size: 17px;
        line-height: 140%;
        margin-bottom: 14px;
}
.team-box .social_media h4 {
    font-size: 20px;
}

.team-box .social_media .icon {
    height: 40px;
    width: 40px;
}

.team-box .professional-detail-wrap h4 {
    font-size: 25px;
    margin-bottom: 7px;
}
.main-nav .contact-btn {
    padding: 10px 15px;
    font-size: 14px;
    gap: 5px;
}
.main-nav a.navbar-brand {
    width: 100px;
}
.footer-fluid {
    max-width: 960px;
}
.footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-list a {
    line-height: 18px;
    font-size: 16px;
}
.navbar-nav .nav-link {
    font-size: 15px;
    margin: 0px 8px !important;
}
.main-nav {
    padding: 18px 0px !important;
}
.team-wrap .team-box:nth-child(odd) .row > *:nth-child(2), .team-wrap .team-box:nth-child(even) .row > *:nth-child(2) {
    padding-left: 20px;
}
section.our-group-section.sector-list-section {
    padding: 80px 0px;
}

.sector-list-section .our-group-box p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
}
.sector-list-section .our-group-box h4 {
    margin-bottom: -5px;
}
.main-nav .contact-btn {
    font-size: 15px;
    line-height: 55px;
    height: 55px;
    padding: 0px 20px 0px 20px;
}
.step-section {
    padding-bottom: 80px;
}
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(odd) .row > * .content, 
.our-group-section.sector-list-section .our-group-wrap .our-group-box:nth-child(even) .row > * .image {
    margin-right: 0;
}
.our-group-section.sector-list-section .our-group-box .image img{
    height: fit-content;
}
.title p {
    font-size: 17px;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(1) {
    padding-left: 30px;
}
.footer-section .row > *:nth-child(4) h5 {
    font-size: 18px;
}
.footer-logo {
    width: 250px;
}
.product-detail-section .content p {
    margin-bottom: 18px;
}
.product-detail-section p {
    font-size: 20px;
    margin-bottom: 25px;
}
.product-detail-section .content h3 {
    font-size: 38px;
    margin-bottom: 18px;
}
.product-detail-section .content {
    padding-left: 15px;
}
.product-detail-section blockquote p {
    font-size: 20px;
}
.product-single:has(.certificate-section) .contact-form-pd-section p.contact-content {
    margin-bottom: 50px;
}
.contact-form-pd-section p.contact-content {
    font-size: 18px;
}
.contact-form-pd-section .contact-form-wrap h3 {
    font-size: 35px;
}
.contact-form-pd-section .contact-form-wrap h5 {
    font-size: 18px;
    margin-bottom: 5px;
}
section.product-detail-section {
    padding: 80px 0px 60px;
}
.group-section .description {
    font-size: 17px;
}
.group-section {
    padding: 80px 0px;
}
.company-grid {
    gap: 16px;
}
.group-section .company-card a.contact-btn {
    padding: 0px 20px;
    height: 48px;
}
.company-card h4 {
    font-size: 20px;
}
.company-card p {
    font-size: 13px;
}
.card-overlay {
    padding: 30px 15px;
}
.about .main-heading {
    font-size: 26px;
}
.about-title {
    font-size: 18px;
    margin-bottom: 8px;
}
.about .row > *:nth-child(2) {
    padding-left: 20px;
}
.about {
    padding: 0px 0 80px;
}


.our-story h2.main-heading {
    font-size: 38px;
}
.company-section h2.company-heading {
    font-size: 38px;
}
.company-section .row:nth-child(2) > * {
    margin: 0px 10px 20px;
}
.contact-section .contact-form-wrap .contact-form .submit-btn {
    padding: 15px 20px;
}
.product-detail-section ul:has(+ h5),
.product-detail-section ul:has(+ h4) {
    margin-bottom: 30px;
}
.product-detail-section h4, .product-detail-section h5 {
    margin-bottom: 15px;
}
.product-detail-section ul li {
    font-size: 20px;
}
section.policy_section {
    padding: 80px 0px;
}
section.policy_section p {
    font-size: 16px;
    margin-bottom: 12px;
}
section.policy_section  ul li {
    font-size: 16px;
    margin-bottom: 8px;
}
section.policy_section h3 {
    font-size: 25px;
    margin-top: 30px;
}
section.policy_section  h4 {
    font-size: 22px;
    margin-bottom: 8px;
    margin-top: 15px;
}
.contact-form-pd-section .row.product-image-row {
    margin-bottom: 80px;
}
.contact-form-pd-section .image {
    height: 370px;
}
.contact-form-pd-section .row.product-image-row > * {
    padding: 10px;
}
.footer-socials a {
    margin-left: -8px;
}
}
@media (max-width:991px) {
    .our-group-section {
    padding: 70px 0px;
}
.certificate-section {
    padding: 70px 0px;
}
.our-goals-section {
    padding: 70px 0px;
}
.title h5 {
    margin-bottom: 5px;
    font-size: 16px;
}
.title h3 {
    font-size: 32px;
}
.our-group-box h4 {
    font-size: 25px;
}
.our-group-box p {
    margin-top: 5px;
    font-size: 15px;
}
.our-group-box {
    padding-top: 30px;
}
.our-group-box hr {
    /* max-width: 100%; */
}
.our-group-wrap .our-group-box:nth-child(3) hr {
    max-width: 100%;
}
.our-group-box h4 {
    font-size: 18px;
    line-height: 36px;
}
.inner-banner-section nav {
    margin-top: 80px;
}
.certificate-section .title h3 {
    font-size: 25px;
    max-width: 600px;
}
.certificate_slider .owl-nav button.owl-prev, .certificate_slider .owl-nav button.owl-next ,
.certificate_about_slider .owl-nav button.owl-prev, .certificate_about_slider .owl-nav button.owl-next {
    height: 30px;
    width: 30px;
}
.certificate_slider .owl-nav ,
.certificate_about_slider .owl-nav{
    gap: 8px;
    top: -65px;
}
.certificate-section  .certificate_wrap {
    margin-top: 40px;
}
.our-goals-section .title p {
    margin: 5px auto 0px;
    font-size: 17px;
}
.certificate_wrap .certificate_slider .image,
.certificate_wrap .certificate_about_slider .image {
    padding: 20px 22px;
}
.our-goals-section .our-goal-wrap {
    margin-top: 30px;
}
.our-goal-icon-box .icon {
    width: 50px;
}
.our-goal-icon-box h4 {
    margin-bottom: 8px;
    font-size: 20px;
}
.our-goal-icon-box p {
    font-size: 15px;
    max-width: 100%;
}
.step-wrap {
    padding: 30px 30px;
}
.step-wrap h3 {
    font-size: 23px;
}
.step-wrap .hero-buttons a {
    padding: 10px 15px;
}
.step-section .hero-buttons {
    margin-left: -22px;
}
.step-section {
    padding-bottom: 70px;
}   
.product-list-section {
    padding: 70px 0px;
}
.product-list-section .title h3 {
    font-size: 34px;
}
.product-list-wrap .row {
    row-gap: 35px;
}
.sector-list-section .title h3 {
    font-size: 34px;
}
.sector-list-section .our-group-box {
    margin-bottom: 40px;
}
.inner-banner-section h2 {
    font-size: 42px;
}
.sector-list-section .our-group-box h4 {
    line-height: 130%;
}
.product-image-section{
    padding: 70px 0px;
}
.product-detail-content-section {
    padding: 70px 0px;
}
.product-detail-content-wrap  h3 {
    font-size: 30px;
    margin-bottom: 6px;
}
.product-detail-content-wrap .txt-wrap p {
    font-size: 22px;
    line-height: 32px;
}
.product-detail-content-wrap .txt-wrap {
    margin-bottom: 18px;
}
.product-detail-content-wrap .image {
    height: 350px;
}
.team-section {
    padding: 70px 0px;
}
.get-in-touch-section{
    padding: 70px 0px;
}
.contact-form-section {
    padding-bottom: 70px;
}
.get-in-touch-section .container {
    max-width: 720px;
}
.contact-form-section .container {
    max-width: 720px;
}
.get-in-touch-section .title h3 {
    font-size: 32px;
}
.cnt-wrap {
    margin-top: 30px;
}
.cnt-wrap .cnt-box img {
    width: 30px;
    height: 30px;
}
.cnt-box {
    padding: 20px;
}
.cnt-box p {
    font-size: 17px;
    line-height: 100%;
}
.contact-form-section h3 {
    font-size: 25px;
    margin-bottom: 8px;
}
.contact-form .txt-wrap input.form-control, .contact-form textarea.form-control {
    height: 50px;
    font-size: 15px;
}
.contact-form textarea.form-control {
    height: 150px;
}
.contact-form .submit-btn {
    height: 50px;
    max-width: 100%;
    font-size: 15px;
}
.iframe-wrap iframe {
    height: 345px;
}
.team-box .personal-detail-wrap h5 {
    font-size: 18px;
    margin-bottom: 5px;
}
.team-box .personal-detail-wrap p {
    font-size: 16px;
    margin-bottom: 10px;
}
.team-box .personal-detail-wrap p br{
    display: none;
}
.team-box .professional-detail-wrap h4 {
    font-size: 20px;
}
.team-box .professional-detail-wrap p {
    font-size: 14px;
}
.team-box .professional-detail-wrap p br{
    display: none;
}
.team-wrap .team-box {
    margin-bottom: 50px;
}
.team-wrap .team-box:nth-child(odd) .row > *:nth-child(2), .team-wrap .team-box:nth-child(even) .row > *:nth-child(2) {
    padding-left: 0px;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(1) {
    padding-left: 25px;
}
.team-box .personal-detail-wrap h3 {
    font-size: 22px;
    margin-bottom: 2px;
}
.footer-fluid {
    max-width: 720px;
}
.footer-logo {
    max-width: 228px;
    width: 100%;
    display: block;
    margin: 0px auto;
}
.footer-bottom p {
    font-size: 15px;
}
.main-nav::before {
   clip-path: unset;
}
.logo-img {
    padding-left: 0px !important;
    max-width: 160px;
    height: 50px !important;
}
.main-nav a.navbar-brand {
    margin-left: 0px;
}
.main-nav {
    padding: 10px 0px !important;
}
/* .navbar-collapse {
    position: absolute;
    width: 100%;
    top: 75px;
    left: 0;
    box-shadow: 0px 4px 5px -5px #000;
    padding: 10px 20px;
    height: fit-content !important;
} */
.navbar-collapse {
    position: fixed;
    width: 100%;
    top: 75px;
    left: 0;
    box-shadow: 0px 4px 5px -5px #000;
    padding: 10px 20px;
    height: fit-content !important;
    width: 280px;
    right: 0;
    left: auto;
    height: 100vh !important;
    transform: translateX(100%);
	z-index : 9999;
    transition: all 0.3s;
}
.navbar-collapse.show{
     transform: translateX(0%);
}
.main-nav {
    position: sticky !important;
    top: 0;
}
section.our-group-section.sector-list-section {
    padding: 70px 0px;
}
.sector-list-section .our-group-box p {
    font-size: 15px;
    line-height: 23px;
}
.navbar-nav .nav-link {
    padding: 5px 0px !important;
}
.title p {
    font-size: 15px;
}
section.our-group-section.sector-list-section .title {
    margin-bottom: 50px;
}
.social_media a {
    font-size: 20px;
}
section.product-detail-section {
    padding: 70px 0px 30px;
}

.product-detail-section .content {
    padding-left: 0;
}
.product-detail-section .content h3 {
    font-size: 30px;
    margin-bottom: 8px;
}
.product-detail-section .content p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 160%;
}
.product-detail-section blockquote p {
    font-size: 18px;
}
.product-detail-section blockquote {
    margin: 0px 0px 0px;
    padding-bottom: 25px;
    margin-top: 20px !important;
}
.product-detail-section .row:nth-child(2) > * > *:first-child{
    margin-top: 30px;
}
.product-detail-section p.mt-5 {
    margin-top: 30px !important;
}
.product-detail-section p {
    font-size: 18px;
    margin-bottom: 20px;
}
.contact-form-pd-section p.contact-content {
    font-size: 18px;
}
.product-single:has(.certificate-section) .contact-form-pd-section p.contact-content {
    margin-bottom: 50px;
}
.contact-form-pd-section .contact-form-wrap h5 {
    font-size: 16px;
    margin-bottom: 0px;
}
.contact-form-pd-section .contact-form-wrap h3 {
    font-size: 32px;
}
.contact-form-pd-section .contact-form .submit-btn {
    max-width: 350px;
}
.group-section {
    padding: 70px 0px;
}
.about {
    padding: 0px 0 70px;
}

.about-title {
    font-size: 16px;
    margin-bottom: 5px;
}
.about .main-heading {
    font-size: 21px;
}
.about .main-heading {
    font-size: 21px;
    margin-bottom: 15px !important;
}
.about .row > *:nth-child(2) {
    padding-left: 12px;
}
.about .left-stack {
    margin-top: 0;
}
.stats-section h2.main-heading br {
    display: none;
}
.stats-section h2.main-heading {
    font-size: 32px;
}
.stats-title {
    font-size: 18px;
    margin-bottom: 8px;
}
.contact-label {
    font-size: 18px;
    margin-bottom: 6px;
}
.contact-title {
    font-size: 30px;
}
.company-section h2.company-heading {
    font-size: 28px;
    margin-bottom: 40px;
}
.footer-section {
    padding: 70px 0px 22px !important;
}

section.our-story .row {
    margin: 0px -12px;
}
.our-story h2.main-heading {
    font-size: 30px;
    margin-bottom: 40px;
}
.navbar-nav .sub-menu {
    min-width: 170px;
    padding-left: 12px;
}
.navbar-nav .sub-menu li a {
    text-align: left;
}
.product-detail-section h4,
.product-detail-section h5 {
    font-size: 25px;
    margin-bottom: 10px;
}
.product-detail-section ul li {
    font-size: 18px;
}
section.policy_section {
    padding: 70px 0px;
}
section.policy_section p {
    font-size: 15px;
}
section.policy_section  ul li {
    font-size: 15px;
}
section.policy_section h3 {
    font-size: 23px;
    margin-top: 25px;
}
.footer-layer {
    clip-path: unset;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(odd) .row > *:nth-child(2) {
    align-items: center;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(even) .row > *:nth-child(2) {
    display: flex;
    align-items: center;
}
.contact-form-pd-section .row.product-image-row {
    margin-bottom: 70px;
}
.product-detail-section .image {
    height: fit-content;
}
.contact-form-pd-section .image {
    height: 280px;
}
.footer-socials a {
    margin-left: -6px;
}
}
@media (max-width:768px) {
     .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 720px;
    }
}
@media (max-width:767px) {
    .our-group-section {
    padding: 50px 0px;
}
.certificate-section {
    padding: 50px 0px 80px;
}
.our-goals-section {
    padding: 50px 0px 20px;
}

.our-group-box {
    padding-top: 35px;
    text-align: center;
}
.step-section {
    padding-bottom: 50px;
}
.inner-banner-section {
    margin-top: -100px;
}
.inner-banner-section h2 {
    font-size: 34px;
}
.inner-banner-section nav {
    margin-top: 60px;
}
.title h3 {
    font-size: 28px;
   margin: 6px 0px;
}
.title h5 {
    margin-bottom: 2px;
    font-size: 12px;
}

.our-group-wrap .our-group-box:nth-child(odd) .row > *:nth-child(2) {
    order: -1;
}
.our-group-wrap {
    margin-top: 0;
}
.our-group-box .image {
    max-width: 500px;
    height: 230px;
    margin-bottom: 8px;
}
.sector-list-section .our-group-box .image {
    height: fit-content;
    margin-bottom: 20px;
}
.sector-list-section .our-group-box h4 {
    margin-bottom: 0;
}
.sector-list-section .our-group-box {
    margin-bottom: 30px;
}
.our-group-box h4 {
    font-size: 22px;
    line-height: 40px;
    margin: 0px auto;
}
.our-group-box p {
    margin-top: 8px;
    font-size: 14px;
    max-width: 100%;
}
.sector-list-section .our-group-box p{
    max-width: 100%;
}
.certificate-section .title {
    text-align: center;
}
.certificate-section .title h3 {
    font-size: 22px;
    max-width: 100%;
}
.certificate-section .title h5 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}
.certificate-section  .certificate_wrap {
    margin-top: 30px;
}
.certificate_slider .owl-nav,
.certificate_about_slider .owl-nav {
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -50px;
}
.our-goals-section .title p {
    margin: 2px auto 0px;
    font-size: 14px;
}
.our-goal-icon-box {
    text-align: center;
    margin-bottom: 30px;
}
.our-goal-icon-box .icon {
    width: 45px;
    margin: 0px auto 10px;
}
.step-wrap {
    padding: 20px;
}
.step-wrap h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}
.step-wrap:before {
    height: 30px;
    width: 30px;
}
.step-section .hero-buttons {
    margin-left: 0px;
    align-items: center;
    gap: 12px !important;
}
.navbar-collapse {
    top: 55px;
}
.navbar-nav .nav-link {
    padding: 10px 0;
    margin: 0;
}
.product-list-section {
    padding: 50px 0px;
}
.product-list-section .title h3 {
    font-size: 25px;
}
.product-box .image {
    height: 200px;
}
.product-box h4 {
    font-size: 18px;
}
.product-box .content {
    padding: 6px 15px;
}
.product-list-wrap .row {
    row-gap: 25px;
}
.sector-list-section .title h3 {
    font-size: 22px;
}
.sector-list-section .our-group-box .content {
    padding-top: 0px;
}
.product-image-section{
    padding: 50px 0px;
}
.product-detail-content-section {
    padding: 50px 0px;
}
.product-detail-content-wrap .image {
    margin-bottom: 20px;
    height: fit-content;
}
.product-detail-content-wrap  h3 {
    font-size: 28px;
    margin-bottom: 0px;
}
.product-detail-content-wrap  p {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 170%;
}
.product-detail-content-wrap .txt-wrap p {
    font-size: 17px;
    line-height: 160%;
}
.product-image-wrap .row {
    row-gap: 15px;
}
.team-section {
    padding: 50px 0px;
}
.team-box .content {
    padding-bottom: 0;
    max-width: 500px;
    width: 100%;
    margin: 20px auto 0px;
}
.team-box .personal-detail-wrap h5 {
    font-size: 17px;
    margin-bottom: 2px;
}
.team-box .personal-detail-wrap p {
    font-size: 15px;
    line-height: 160%;
}
.team-box .social_media h4 {
    font-size: 22px;
}
.team-box .social_media .icon {
    height: 40px;
    width: 40px;
}
.team-box .social_media .icon svg {
    width: 18px;
}
.team-wrap .team-box {
    margin-bottom: 45px;
}
.team-box .professional-detail-wrap h4 {
    font-size: 21px;
    margin-bottom: 6px;
}
.team-box .professional-detail-wrap p {
    font-size: 15px;
    line-height: 160%;
}
.get-in-touch-section{
    padding: 50px 0px;
}
.contact-form-section {
    padding-bottom: 50px;
}
.get-in-touch-section .title h3 {
    font-size: 24px;
}
.cnt-wrap .row > *:nth-child(2) {
    order: 2;
}
.cnt-box .content {
    margin-top: 20px;
}
.contact-form-section h3 {
    font-size: 24px;
    margin-bottom: 2px;
    text-align: center;
}
.contact-form .txt-wrap .form-field {
    width: 100%;
}
.iframe-wrap iframe {
    margin-top: 20px;
}
.contact-form .txt-wrap {
    display: flex;
    gap: 0px;
    flex-direction: column;
}
.contact-form .txt-wrap input.form-control, .contact-form textarea.form-control {
    height: 42px;
    font-size: 14px;
    padding: 0px 15px;
}
.contact-form textarea.form-control {
    padding: 16px 15px;
}
.contact-section .contact-form-wrap .contact-form .submit-btn {
    padding: 10px 20px;
    height: 48px;
}
.contact-form .submit-btn {
    height: 48px;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(2) {
    display: flex;
    justify-content: center;
    padding: 0px 12px;
}
.team-box .personal-detail-wrap h3 {
    font-size: 21px;
    margin-bottom: 0px;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(1) {
    padding: 0px 12px;
}
.certificate_wrap .certificate_slider .image:before {
    height: 20px;
    width: 26px;
}
.team-wrap .team-box:nth-child(even) .row > *:nth-child(1),
.team-wrap .team-box:nth-child(odd) .row > *:nth-child(1) {
    justify-content: center;
    display: flex;
}
.certificate_wrap .certificate_slider .image,
.certificate_wrap .certificate_about_slider .image {
    padding: 18px;
}
.footer-fluid {
    padding: 0px 20px !important;
}
.footer-section {
    padding: 50px 0px 20px !important;
}
.footer-logo {
    max-width: 180px;
    margin: 0px auto 30px !important;
}
.footer-list a {
    font-size: 14px;
}
.footer-list li {
    margin-bottom: 10px !important;
    padding-left: 25px !important;
}
.footer-svg img {
    margin-top: 0px !important;
}
.footer-svg {
    padding-bottom: 0px !important;
    font-size: 16px !important;
}
.footer-bottom  p.footer-visible {
    justify-content: center;
    font-size: 14px;
}
i.foot-3 {
    font-size: 18px !important;
    padding: 6px 8px !important;
}
section.our-group-section.sector-list-section {
    padding: 50px 0px;
}
.our-group-section .our-group-wrap .our-group-box:nth-child(odd) .row > *:nth-child(2),
.our-group-section .our-group-wrap .our-group-box:nth-child(even) .row > *:nth-child(2) {
    justify-content: center;
    display: flex;
}
section.our-group-section.sector-list-section .title h3 {
    margin-bottom: 10px;
}
section.our-group-section.sector-list-section .title {
    margin-bottom: 30px;
}
.team-wrap .team-box:nth-child(odd) .row > *:nth-child(2) {
    order: -1;
    display: flex;
    justify-content: center;
    padding-left: 12px;
}
.footer-bottom p.footer-visible:first-child {
    margin-bottom: 5px !important;
}
section.product-detail-section {
    padding: 50px 0px 30px;
}
.product-detail-section .image {
    margin-bottom: 20px;
}
.product-detail-section .content p {
    max-width: 100%;
}
.contact-form-pd-section {
    padding: 50px 0px;
}
.product-single:has(.certificate-section) .contact-form-pd-section p.contact-content {
    margin-bottom: 30px;
}
.product-detail-section .content h3 {
    font-size: 25px;
}
.product-detail-section .content p {
    margin-bottom: 8px;
    line-height: 150%;
}
.product-detail-section blockquote {
    padding-bottom: 20px;
}
.product-detail-section .row:nth-child(2) > * > *:first-child{
    margin-top: 20px;
}
.product-detail-section blockquote p {
    font-size: 16px;
}
.product-detail-section p {
    line-height: 170%;
}
.contact-form-pd-section p.contact-content {
    font-size: 15px;
    line-height: 170%;
}
.contact-form-pd-section .contact-form-wrap h3 {
    font-size: 28px;
    line-height: 170%;
}
.group-section {
    padding: 50px 0px;
}
.about {
    padding: 0px 0 50px;
}
.our-story .main-heading {
    font-size: 40px;
}
.hero-content {
    left: 0;
    padding: 0px;
}
 .hero-section video {
        clip-path: none;
    }
 .hero-section {
    margin-top: 0;
    padding-top: 85px;
    height: 65vh;
    height: 500px;
}
    .group-section .main-heading {
    font-size: 30px;
    margin-bottom: 15px;
}
.group-section .description {
    font-size: 15px;
    margin-bottom: 30px;
}
.about .main-heading {
    font-size: 18px;
}

.about .left-stack .img-box {
    height: 325px;
    margin: 0px auto;
    max-width: 300px;
    width: 100%;
}
.about .left-stack .img-box img.bottom-img {
    object-fit: cover;
}
.stats-title {
    font-size: 16px;
    margin-bottom: 5px;
}
.stats-section h2.main-heading {
    font-size: 22px;
}
.contact-section .container {
    padding: 30px 30px;
}
.contact-label {
    font-size: 16px;
    margin-bottom: 5px;
}
.contact-title {
    font-size: 21px;
}
.contact-header {
    margin-bottom: 22px;
}
.company-section h2.company-heading {
    font-size: 22px;
    margin-bottom: 25px;
}
.company-section h2.company-heading br {
    display: none;
}
.company-section .row:nth-child(2) > * {
    height: 100px;
    margin: 0px 10px 15px;
}
.our-story .our-journey-box {
    display: flex;
    position: relative;
    gap: 50px;
}
.our-story h2.main-heading {
    font-size: 22px;
    margin-bottom: 30px;
}
.our-story .our-journey-box h3 {
    min-width: 60px;
    font-weight: 800;
    font-size: 22px;
    height: fit-content;
    position: relative;
}
.our-story .our-journey-box:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    border-right: 1px solid #000;
    left: 80px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.our-story .our-journey-box h3:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #0cb54e;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -28px;
    z-index: 1;
}
.our-story .our-journey-box p {
    font-size: 14px;
}
.our-story .our-journey-box:last-child p {
    margin-bottom: 0px;
}
.about .main-heading {
    text-align: center;
}
.about-title {
    text-align: center;
}
.footer-list li::before {
    top: 3px;
}
.product-detail-section h4,
.product-detail-section h5 {
    font-size: 20px;
}
.product-detail-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
}
section.policy_section {
    padding: 50px 0px;
}
.product-detail-section p.mt-5 {
    margin-top: 20px !important;
}
section.policy_section h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 4px;
}
section.policy_section  h4 {
    font-size: 20px;
    margin-top: 12px;
}
section.policy_section p {
    font-size: 14px;
}
section.policy_section  ul li {
    font-size: 14px;
}
.navbar-collapse{
    width: 100%;
}
.company-card {
    width: 48%;
}
.get-in-touch-section .cnt-wrap .row > * {
    width: 33.33%;
}
.cnt-box p {
    font-size: 15px;
}
.contact-form-pd-section .row.product-image-row {
    margin-bottom: 50px;
    padding: 0px 10px;
}
.contact-form-pd-section .row.product-image-row > * {
    padding: 5px;
}
.contact-form-pd-section .image {
    height: 200px;
}

.product-detail-section .content p {
    font-size: 16px;
}
.product-detail-section p {
    font-size: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 12px;
}
.contact-form-pd-section .contact-form-wrap .submit-btn-wrap {
    text-align: center;
}

}
@media (max-width:666px) {
    .logo-img {
    height: 35px !important;
}
}
@media (max-width:599px) {
    .team-wrap .team-box {
        padding: 0px 10px;
    }
    .sector-list-section .our-group-box {
        padding: 0px 10px;
    }
    .company-card {
    width: fit-content;
}
.get-in-touch-section .cnt-wrap .row > * {
    width: 100%;
}
.contact-form-pd-section .row.product-image-row > * {
    width: 100%;
}
.product-detail-section  .row > * {
    width: 100%;
}
section.product-detail-section {
    padding: 50px 0px 10px;
}
}
@media (max-width:480px) {
    .logo-img {
        height: 30px !important;
    }
    .our-group-box h4 {
        font-size: 18px;
        line-height: 36px;
    }
    .sector-list-section .our-group-box p {
    font-size: 14px;
}
.sector-list-section .our-group-box .image {
    height: 230px;
}
.sector-list-section .our-group-box h4{
    font-size: 20px;
}
.sector-list-section .our-group-box .image img{
    height: 100% !important;
}
.product-detail-section .image {
    height: 250px;
}
}
@media (max-width:374px) {
    .title h3 {
    font-size: 28px;
    margin-top: 2px;
}
.our-group-box .image {
    height: 180px;
    margin-bottom: 10px;
}
.our-group-box h4 {
    font-size: 20px;
}
.our-group-box p {
    margin-top: 6px;
    font-size: 14px;
}
.product-box .image {
    height: 320px;
}
.product-box h4 {
    font-size: 20px;
}
.product-box .content {
    padding: 4px 15px;
    max-width: fit-content;
}
.certificate-section .title h5 {
    font-size: 13px;
    margin-bottom: 5px;
}
.certificate-section .title h3 {
    font-size: 21px;
}
.our-goal-icon-box p {
    font-size: 14px;
}
.our-goals-section .title p {
    font-size: 14px;
}
.our-goal-icon-box {
    margin-bottom: 20px;
}
.our-goals-section {
    padding: 50px 0px 30px;
}
.step-wrap h3 {
    font-size: 18px;
    margin-bottom: 15px;
}   
.product-list-section .title h3 {
    font-size: 20px;
}
.sector-list-section .our-group-box {
    margin-bottom: 20px;
}
.product-detail-content-wrap  h3 {
    font-size: 25px;
}
.product-detail-content-wrap .image {
    margin-bottom: 10px;
}
.product-detail-content-wrap  p {
    font-size: 14px;
    margin-bottom: 4px;
}
.product-detail-content-wrap .txt-wrap p {
    font-size: 16px;
}
.product-detail-content-wrap .txt-wrap {
    margin-bottom: 15px;
}
.certificate_slider .owl-nav button.owl-prev, .certificate_slider .owl-nav button.owl-next,
.certificate_about_slider .owl-nav button.owl-prev, .certificate_about_slider .owl-nav button.owl-next {
    height: 25px;
    width: 25px;
}
.get-in-touch-section .title h3 {
    font-size: 18px;
}
.cnt-box p {
    font-size: 15px;
}
.cnt-box {
    padding: 15px;
}
.cnt-wrap .cnt-box img {
    width: 25px;
    height: 25px;
}
.cnt-box .content {
    margin-top: 10px;
}
.contact-form-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 100%;
}
.inner-banner-section h2 {
    font-size: 30px;
}
.team-box .social_media h4 {
    font-size: 20px;
}
.our-group-box {
    padding-top: 25px;
}
.team-wrap .team-box {
    padding: 0px;
    margin-bottom: 30px;
}
.team-box .content {
    margin: 15px auto 0px;
}
.team-box .personal-detail-wrap h3 {
    font-size: 20px;
}
.team-box .professional-detail-wrap h4 {
    font-size: 20px;
    margin-bottom: 4px;
}
.team-box .professional-detail-wrap p {
    font-size: 14px;
    line-height: 150%;
}
.social_media a {
    font-size: 20px;
    gap: 10px;
}
.sector-list-section .our-group-box {
        padding: 0px;
    }
    .sector-list-section .our-group-box .image {
        height: 200px;
        margin-bottom: 15px;
    }
    .group-section .description {
    font-size: 14px;
}
.group-section .main-heading {
    font-size: 28px;
    margin-bottom: 10px;
}
.about .main-heading {
    font-size: 16px;
}
.about-title {
    font-size: 14px;
}
.stats-section h2.main-heading {
    font-size: 20px;
}
.our-story h2.main-heading {
    font-size: 20px; 
}
.small-title {
    font-size: 14px;
    margin-bottom: 5px;
}
.our-story .our-journey-box {
    gap: 45px;
}
.contact-section .container {
    padding: 22px;
}
.contact-label {
    font-size: 14px;
}
.contact-title {
    font-size: 20px;
}
.our-story .our-journey-box h3 {
    min-width: 50px;
    font-size: 20px;
}
.our-story .our-journey-box p {
    font-size: 13px;
}
.our-story .our-journey-box:after {
    left: 71px;
}
.small-title {
    font-size: 14px;
}
.company-section h2.company-heading {
    font-size: 18px;
}
.product-list-section .product-list-wrap .row > * {
    width: 100%;
}
.product-detail-section ul li {
    font-size: 14px;
}
.product-detail-section h4,
.product-detail-section h5 {
    font-size: 20px;
    margin-bottom: 10px;
}
section.policy_section h3 {
    font-size: 19px;
}
section.policy_section  h4 {
    font-size: 19px;
    margin-top: 10px;
}
}
