/* Custom Global Rules */
:root {
    --maroon: #5C383E;
    --maroon-dark: #4a2c31;
    --cream: #F4F1EA;
    --bg: #F2F5FC;
    --cream-2: rgba(92, 56, 62, 0.20);
    --white: #FFF;
    --ink: #171717;
    --black: #111;
    --gray: #666666;
    --black-light: #514E52;
    --line: rgba(0, 0, 0, 0.20);

    --title-font: "Fjalla One", sans-serif;
    --base-font: "DM Sans", sans-serif;
    --secondary-font: "Russo One", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--base-font) !important;
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6,
.titles {
    font-family: var(--title-font);
}

p {
    color: var(--gray);
    line-height: 1.75;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1480px;
        --bs-gutter-x: 5rem;
    }
}
header, footer, section {
    float: left;
    width: 100%;
}
header{
     transition: all 0.35s ease;
}
.site-header.scroller {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10000 !important;
    box-shadow: 0 3px 10px #00000047;
}
.scroller .brand{  margin: 10px 0; }

.brand img{ max-width: 230px;  transition: all 0.35s ease; }

.scroller .navbar-nav { gap: 22px; }

.scroller .brand img{ max-width: 190px; }

.scroller .navbar {
    padding: 0rem 2.4rem;
}
header.scroller .navbar-nav .nav-link {
    padding: 21px 0.5rem !important;
    font-size: 15px;
}
.titles{
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 48px;
    margin: 0 0 50px;
}
.innerBg{
    background-color: var(--bg);
}

/* ============ BUTTONS ============ */
.btn-maroon {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--maroon);
    color: var(--white);
    padding: 10px 1.6rem;
    font-weight: 500;
    font-size: .95rem;
    border: 1px solid var(--maroon);
    transition: background-color 0.3s, transform 0.2s;
}

.btn-maroon:hover {
    background: var(--maroon-dark);
    color: var(--white);
}

.btn-cream {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--white);
    color: var(--maroon);
    padding: 10px 1.6rem;
    font-weight: 500;
    font-size: .95rem;
    border: 1px solid var(--white);
    transition: background-color 0.3s, transform 0.2s;
}
.btn-cream i, .btn-outline-white i, .btn-maroon i {
    font-size: 18px;
    line-height: 0;
}
.btn-cream .icons, .btn-maroon .icons, .btn-outline-white .icons {
    width: 16px; 
}

.btn-cream:hover {
    background: transparent;
    color: var(--white);
}
.btn-cream:hover .icons, .btn-maroon .icons, .btn-outline-white .icons{
    filter: brightness(0) invert(1);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: transparent;
    color: var(--white);
    padding: .75rem 1.6rem;
    font-weight: 500;
    font-size: .95rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    transition: background-color 0.3s, transform 0.2s;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--maroon);
}
.btn-send{
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
}

/* ============ HEADER ============ */
.site-header {
    background: var(--maroon);
}
.herowrapper{
    position: relative;
}
.hero.inner{
    clip-path: none;
    padding: 0;
}
.inner .herowrapper {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.herowrapper .breadcrumb {
    justify-content: center;
    color: var(--white);
}
.hero.inner h1{ font-size: 42px;  letter-spacing: 0.5px; }

.herowrapper .breadcrumb a, .herowrapper  .breadcrumb-item+.breadcrumb-item::before{ color: #f4f1eac7; }

.breadcrumb-item.active{ color: var(--white); }

.inner .herowrapper .container{
    position: relative;
    z-index: 10;
}
.inner .herowrapper::after {
    position: absolute;
    content: ' ';
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);
    z-index: 0;
}

header .navbar {
    padding: 0.3rem 2.4rem;
    transition: all 0.35s ease;
}
header .brand {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 400;
    padding: 21px 0.5rem !important;
    opacity: .92;
    border-bottom: 2px solid transparent;
    font-family: var(--base-font);
    letter-spacing: 0.5px;
}
header .navbar-nav {
    gap: 30px;
    margin: -4px 0;
}
header .navbar-nav .nav-link:hover, header .navbar-nav .nav-link.active {
    opacity: 1;
    border-bottom: 2px solid var(--white);
}
header .navbar-toggler {
    border-color: rgba(255, 255, 255, .4);
    box-shadow: inherit;
    outline: 0;
    padding: 5px;
}
.navbar-toggler:focus{
    box-shadow: inherit !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ HERO ============ */
.hero {
    background: var(--maroon);
    padding-top: 0;
    padding-bottom: 6.5rem;
     clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 70%, 0% 100%);
    position: relative;
    z-index: 100;
}

.hero h1 {
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
}

.hero .lead-copy {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-align: right;
    max-width: 380px;
    margin-left: auto;
    font-weight: 300;
}

/* ============ HERO IMAGE / FEATURES ============ */
.hero-feat-section {
    /* background: var(--cream); */
    position: relative;
    padding: 0 0 50px;
}

.hero-img-wrap {
    margin: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: -160px;
    width: 100%;
    padding-left: 400px;
    max-width: 1600px;
}
.hero-img-wrap span.line{
    content: ' ';
    display: inline-block;
    height: 1100px;
    width: 1px;
    background-color: var(--line);
    margin: -80px 0 0;
}
.bor_line{
    position: relative;
}
.bor_line span.line {
    display: inline-block;
    height: 1100px;
    width: 1px;
    background-color: var(--line);
    top: -300px;
    position: absolute;
    left: 0;
    z-index: 0;
}
.sectPad{
    padding: 50px 0;
}
.hero-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: 101;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%, 0 85%);
    transition: transform 0.5s ease;
}
.feat-list {
    padding-top: 1.5rem;
    font-family: var(--title-font);
    color: var(--black-light);
    gap: 30px;
    display: flex;
    flex-direction: column;

    position: relative;
    z-index: 101;
}
.feat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.feat-item:last-child {
    border-bottom: none;
}
.feat-item:hover{
    color: var(--maroon-dark);
}
.feat-icon {
    flex: 0 0 56px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(92, 56, 62, 0.20);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.25rem;
}
.feat-item span {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.14px;
}

/* ============ ABOUT ============ */
.about {
    position: relative;
}
.tall-frame{
    height: 100vh;
}
.about .tall-frame{
    height: 85vh;
    margin-top: 3rem;
}
.about p{
    color: var(--gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}
.about .tall-frame{
    clip-path: polygon(0 0, 100% 0, 100% 80%, 87% 100%, 0 100%);
    overflow: hidden;
}
.about-img {
    width: 100%;
    object-fit: cover;
     transition: transform 0.5s ease;
}
.about .tall-frame:hover img{
    transform: scale(1.04);
}

.about h2 {
    margin-bottom: 1.4rem;
}

.since-badge {
    background: var(--maroon);
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 70%);
    display: inline-block;
    min-width: 185px;
    font-family: var(--title-font);
}

.since-badge small {
    letter-spacing: 2%;
    text-transform: capitalize;
    font-size: 16px;
    opacity: 1;
    font-weight: 400;
}

.since-badge .yr {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1%;
    text-align: end;
    line-height: inherit;
    margin: 30px 0 -10px;
}

.call-line {
    font-weight: 400;
    color: var(--gray) !important;
    font-size: 16px !important;
}
.call-line a{ font-weight: 600 !important;   color: var(--gray) !important; text-decoration: none; }
.call-line a:hover{color: var(--maroon) !important; }
.call-line i {
    color: var(--maroon);
    margin-right: .5rem;
}

/* ============ CORE EXPERTISE ============ */
.expertise {
    text-align: center;
    position: relative;
    z-index: 10;
}

.expertise h2 {
    margin-bottom: 3rem;
}

.exp-card {
    background: var(--white);
    text-align: left;
    height: 100%;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.btmclip{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 92%);
}

.exp-card .exp-body {
    padding: 2rem 1.6rem 1.6rem;
}
.exp-cont {
    min-height: 185px;
}
.exp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
    height: 65px;
}
.exp-icon img{
    min-width: 55px;
    min-height: 55px;
    width: auto !important;
    height: auto !important;
    max-width: 55px;
}
.coreValue .exp-icon img{
    min-width: auto;
    min-height: auto;
    width: 55px;
    height: 55px;
}
.coreValue .exp-card.btmclip {
    clip-path: polygon(0 0, 82% 0, 100% 20%, 100% 100%, 0 100%);
}
.coreValue .exp-cont{min-height: auto;  }
.exp-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: .5rem;
    letter-spacing: 0.15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.exp-card p {
    font-size: 14px;
    margin: 0;
    line-height: 21px;
    font-weight: 400;
}
.exp-card .prdImg{
    height: 180px;
}
.exp-card .prdImg img {
    width: 100%;
    height: auto;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.exp-card:hover h3 { color: var(--maroon); }
.exp-card:hover .prdImg img {
    transform: scale(1.04);
}

/* ============ PRODUCT SPLIT ============ */


.split-col {
    padding: 2rem 1.70rem;
}

.split-col.left {
    border-right: 1px solid var(--line);
    padding-left: 0;
}

.split-col h2 {
    font-size: 36px;
    margin-bottom: .9rem;
}

.split-col>p {
    font-size: 16px;
    margin-bottom: 2rem;
    line-height: 24px;
}

.split-row .split-img {
    width: 100%;
    object-fit: cover;
    min-height: 330px;
    min-width: 280px;
    height: auto;
    transition: transform 0.5s ease;
}
.split-row .img-frame{
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 330px;
    width: 280px;
    flex: 0 0 44%;
      align-self: stretch;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 85% 100%, 0 100%);
}
.split-row {
    display: flex;
    gap: 1.50rem;
}
.split-row .img-frame:hover .split-img  {
    transform: scale(1.04);
}

.feat-title {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 1rem;
    line-height: 24px;
    font-family: var(--title-font);
}

.arrow-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.arrow-list li {
    display: flex;
    gap: .6rem;
    line-height: 22px;
    font-size: 16px;
    color: var(--gray);
    margin-bottom: .65rem;
    align-items: baseline;
}
.arrow-list .arw {
    width: 13px;
}
.arrow-list li i {
    color: var(--maroon);
    margin-top: 3px;
}

/* ============ TOUR BANNER ============ */
.tour {
    position: relative;
    color: var(--white);
    padding: 3.5rem 0 3rem;
    background: linear-gradient(100deg, rgba(92, 56, 62, 0.88) 15%, rgba(92, 56, 62, 0.25) 65%),
        url('../images/others/image9.png') center/cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%, 0 85%);
    background-attachment: fixed;
    overflow: hidden;
}

.tour h2 {
    font-size: 58px;
    font-weight: 400;
    line-height: 70px;
    margin: 2rem 0;
}

.tour-stats {
    display: flex;
    gap: 2.0rem;
    align-items: center;
    padding: 2rem 0rem 1rem 15rem;
    margin: 0;
    flex-wrap: wrap;
    position: relative;
}
.tour-stats::before{
    height: 1px;
    background-color: rgba(255, 255, 255, .25);
    content: ' ';
    width: 8rem;
    position: absolute;
    left: 89px;
}
.tour-stats::after{
    height: 1px;
    background-color: rgba(255, 255, 255, .25);
    content: ' ';
    width: calc(100% - 50rem);
    position: absolute;
    right: 0;
}
.titleBorder {
    position: relative;
}
.titleBorder::before {
    height: 100%;
    background-color: rgba(255, 255, 255, .25);
    content: ' ';
    width: 1px;
    position: absolute;
    left: 90px;
    display: inline;
    top: -300px;
}
.titleBorder::after {
    height: 100%;
    background-color: rgba(255, 255, 255, .25);
    content: ' ';
    width: 1px;
    position: absolute;
    left: 90px;
    display: inline;
    bottom: -300px;
}

.tour-stat {
    text-align: center;
}

.tour-stat .ic {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 0;
    border-radius: 55px;
    background: rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .6rem;
    font-size: 1.2rem;
}

.tour-stat small {
    letter-spacing: 2%;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--title-font);
}

/* ============ WORKFLOW ============ */

.workflow .counters{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wf-track {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.wf-track::before {
    content: "";
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
}
.pulse {
    animation: pulse 1.9s infinite;
    transform-origin: center;

    background-color: #5C383E26;
    width: 40px;
    height: 40px;
    margin: -11px;
    border-radius: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.5);
  }
}
.wf-step {
    flex: 1;
    position: relative;
    padding: 0 .5rem;
}

.wf-step .step-label {
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 1.4rem;
}

.wf-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--maroon);
    border: 5px solid var(--cream-2);
    margin: 0 auto 1.0rem;
    position: relative;
    z-index: 2;
}

.wf-num {
    font-size: 70px;
    font-weight: 400;
    color: #242627;
    opacity: 0.2;
    letter-spacing: 0;
    margin-bottom: .4rem;
    font-family: var(--secondary-font);
}
.counters .wf-num {
    margin: 0;
    line-height: 90px;
}

.wf-step h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: .6rem;
}

.wf-step p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

/* ============ CTA ============ */
.cta-band {
    padding: 0 0 5rem;
}
.cta-band .texts{  max-width: 530px; }

.cta-inner {
    background: var(--maroon);
    color: var(--white);
    padding: 3.2rem 7rem 3.2rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 73%);
    position: relative;
    overflow: hidden;
}
.cta-inner::after{
    content: ' ';
    background: url(../images/others/globe_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 495px;
    height: 250px;
    position: absolute;
    right: 0;
    bottom: -30px;
    z-index: -1;
}

.cta-inner h2 {
    font-size: 36px;
    font-weight: 400;
    margin: 0px 0 10px;
    padding: 0;
    line-height: 48px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.5px;
}
.cta-inner .btn-cream {
    color: var(--maroon);
}
.cta-inner .btn-cream:hover{
    color: var(--white);
}


/* ============ FOOTER ============ */
footer {
    background: var(--maroon);
    color: var(--white);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 94% 0, 100% 20%, 100% 100%, 0 100%);
}
footer::after{
    background: url(../images/icons/thread.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    content: ' ';
    width: 200px;
    height: 300px;
    display: inline-block;
}
.footer-top {
    padding-top: 6rem;
    padding-bottom: 3rem;
}
.footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 1rem 0 2rem;
}

footer .leftSpace {  padding-left: calc(var(--bs-gutter-x) * .5); }
.footer-logo .logo-ftr {
    width: 310px;
}
footer h5 {
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 1.4rem;
    font-family: var(--title-font);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: .8rem;
}

footer a.flink {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 400;
}

footer a.flink:hover {
    color: var(--white);
}

.contact-line {
    display: flex;
    gap: .7rem;
    margin-bottom: 1rem;
    font-size: 15px;
    font-weight: 400;
}

.contact-line i {
    color: var(--white);
    margin-top: 3px;
}

.newsletter-input {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    max-width: 340px;
    margin-top: 1rem;
}

.newsletter-input input {
    background: transparent;
    border: 0;
    color: var(--white);
    padding: .8rem 1rem;
    flex: 1;
    font-size: .92rem;
    outline: 0;
    box-shadow: inherit;
}

.newsletter-input input::placeholder {
    color: var(--white);
}

.newsletter-input button {
    background: transparent;
    border: 0;
    color: var(--white);
    padding: 0 1rem;
    font-size: 1.1rem;
    outline: 0;
    box-shadow: inherit;
}
.newsletter-input .icons{
    filter: brightness(0) invert(1);
    rotate: -35deg;
    width: 24px;
}
.social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: .4rem;
    background: rgba(255, 255, 255, 0.10);
    font-size: 15px;
}

.social-row a:hover {
    background: var(--white);
    color: var(--maroon);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .6rem;
}

.footer-bottom a {
    color: var(--white);
    margin-left: 1.2rem;
}

.footer-bottom a:hover {
    color: var(--white);
}

.frameArng {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;  
}

.frameArng .tall-frame {
    width: 100%;
    height: 400px;
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}
.frameArng .tall-frame.frameEven{
    margin-top: 5rem;
}
.bullets{
    list-style: none;
    margin: 10px 0;
    padding: 0 0 0 32px;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.bullets li::before{
    background: url(../images/icons/bullet.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    display: inline-block;
    content: ' ';
    position: absolute;
    left: -30px;
    top: 5px;
    z-index: 0;
}
.bullets li{
    position: relative;
    line-height: 22px;
}
.abtdecp h5{
    font-size: 24px;
    margin: 10px 0 5px;
}
.coreValue .exp-body{
    position: relative;
}
.coreValue .exp-body .wf-num {
    font-size: 66px;
    opacity: 0.08;
    position: absolute;
    right: 35px;
    top: 21px;
    z-index: 0;
}
.coreValue .rightSide {
    max-height: 450px;
}
.coreValue .imgAlign{
    justify-content: end;
    display: flex;
    align-items: center;
}
.coreValue .exp-card h3 { min-height: 35px; }


.social-circle{
    width: 40px;
    height:40px;
    background: rgba(17, 17, 17, 0.10);
    color:var(--maroon);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}
.social-circle:hover{
    background: var(--maroon);
    color:var(--white);
}
.contact-icon-box{
    background-color: var(--maroon);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
 
.form-card{
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    padding: 2.75rem;
    border-radius: 2px;
}
.form-card h2{
    font-size: 40px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--black);
}
.form-card p, .text-muted{
    color: var(--gray) !important;
    font-size: 16px;
    line-height: 24px;
}

.form-control, .form-select{
    border: none;
    border-bottom: 1px solid #d8d3ce;
    border-radius: 0;
    padding: 0.65rem 0.1rem;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus{
    box-shadow: none;
    border-bottom: 1px solid var(--maroon);
}
.contact-label {
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 3px;
}
.contact-value {
    color: var(--gray);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ===== Map ===== */
.map-wrap iframe{
    width: 100%;
    height: 420px;
    border: 0;
    display:block;
}
.coreValue .ftsize{
    font-size: 20px;
}
.titleDescp {
    max-width: 750px;
    margin: 0 auto;
    line-height: 24px;
}
.fontAdj{
    color: var(--maroon);
    font-size: 18px !important; 
}

.exportInfra{
    background-color: var(--white);
}
.grdiList {
    background-color: #F8F4F5;
    padding: 2rem;
    min-height: 350px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}
.grdiList .fontAdj{
    font-size: 22px !important; 
    text-transform: uppercase;
    margin-bottom: 15px;
}


/*industries styles start*/
.solutions-section{
    background:var(--bg-soft);
    padding:80px 0;
}
.collage-wrap{
    position:relative;
    display:flex;
    gap:0;
}
.alignGutter{  --bs-gutter-y: 0.5rem;   --bs-gutter-x: 0.2rem; }
.alignGutter .industry-card{ border-radius: 0; }
.collage-wrap img{
    width:100%;
    height:280px;
    object-fit:cover;
    margin-left:-25px;
}
.collage-wrap img:first-child{
    margin-left:0;
    height: auto;
    width: 100%;
}
.solutions-heading{
    color:var(--text-dark);
}
.solutions-text{
    color:#666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
 
/* ===== Section: Industries We Support ===== */
.support-section{
    padding:90px 0 70px;
}
.support-section .section-title{
   margin-bottom: 1rem;
}
.support-section .section-subtitle{
    color:var(--gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.industry-card{
    background:var(--white);
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(20,20,40,0.06);
    height:100%;
    transition:transform .25s ease, box-shadow .25s ease;
}
.industry-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(20,20,40,0.12);
}
.industry-card img{
    width:100%;
    height:160px;
    object-fit:cover;
}
.industry-card .card-body{
    padding:1.1rem 1.1rem 1.4rem;
}
.industry-card h3{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.industry-card p{
    color:var(--gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
 
/* ===== Section: How We Support Every Industry ===== */
.howwesupport-section{
    background:var(--bg-soft);
    padding:80px 0 100px;
}
.howwesupport-section h2{
    margin-bottom:2rem;
}
.feature-item{
    display:flex;
    gap:1.1rem;
    position:relative;
    padding-bottom:0.7rem
}
.feature-item:not(:last-child)::before{
    content:"";
    position:absolute;
    left:29px;
    top:60px;
    bottom:0;
    border-left:2px dashed rgba(92,42,58,0.35);
}
.feature-icon{
    flex:0 0 60px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--maroon);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
}
.feature-icon img{
    width:28px;
    height:28px;
}
.feature-text h5{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    color:var(--maroon-dark);
}
.feature-text p{
    color: var(--gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.delivery-banner{
    position:relative;
    border-radius:6px;
    overflow:hidden;
    min-height:460px;
    background-size:cover;
    background-position:center;
}
.delivery-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(100deg, var(--maroon) 0%, var(--maroon) 42%, rgba(92,42,58,0.94) 43%, rgba(92,42,58,0.94) 100%);
    color:var(--white);
    padding:1.75rem 1.5rem;
    clip-path:polygon(0 22%, 100% 0, 100% 100%, 0% 100%);
}
.delivery-caption h3{
    font-weight:700;
    font-size:1.4rem;
    margin-bottom:0;
    line-height:1.3;
}
.delivery-caption p{
    font-size:.85rem;
    color:rgba(255,255,255,0.9);
    margin-bottom:0;
    line-height:1.55;
}



/* ========================== MEDIA QUERY ============================== */

@media (max-width: 1200px) {
    header .navbar-nav {
        gap: 18px;
    }

}
@media (max-width: 991px) {
    .hero {
        clip-path: none;
        padding-bottom: 3rem;
    }
    .hero .lead-copy {
        text-align: left;
        margin: 1rem 0 0;
        line-height: 26px;
    }
    .hero-img-wrap {
        margin-top: 2rem;
    }
    .split-col.left {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }
    .split-col { padding: 0; }
    header .navbar-nav, .scroller .navbar-nav {  gap: 0; }
    .navbar-collapse {         
        padding: 0;
        border-top: 1px solid #eeeeee3d;
        margin: 25px 0 0; 
    }
    .scroller .navbar-collapse {         
        padding: 10px 0 0;
        border-top: 1px solid #eeeeee3d;
        margin: 0; 
    }
    header .navbar-nav .nav-link, header.scroller .navbar-nav .nav-link {   padding: 15px 0.5rem !important; }
    .hero h1 {
        font-size: 28px;
        line-height: 40px;
        margin: 0;
        padding: 0;
    }
     header .navbar {
        padding: 1.3rem 1rem;
    }
    .counters .wf-num{ font-size: 50px; }

    .counters .wf-step h3 { font-size: 18px; }

    .coreValue  .row.g-4{ flex-direction: column-reverse; }
    .hero.inner h1{ margin: 0 0 20px;}
     .collage-wrap{flex-wrap:wrap;}
    .collage-wrap img{width:50%;height:220px;margin-left:-20px;}
    .collage-wrap img:nth-child(odd){margin-left:0;}
    .delivery-banner{margin-top:2.5rem;    min-height: inherit;        margin-top: 0rem;}
    .howwesupport-section { background: var(--bg-soft); padding: 0px 0 100px;}

}
@media (max-width: 768px) {
    .btn-outline-white{
        width: auto !important;
        max-width: 220px;
        justify-content: center;
    }
    .hero-img-wrap{
        margin-top: 0;
        top: -30px;
    }
    .hero .lead-copy{
        margin-top: 1.5rem;
    }
     .hero .btn-outline-white.mt-4{
        margin-top: 1rem !important;
    }
    .feat-list { display: block;}
    .feat-icon{ margin: 0 auto; }
    .feat-item span { margin: 10px 0 0; display: block; }
    .about .tall-frame {  height: 70vh;   margin: 0 0 20px; }
    .frameArng .tall-frame {  height: 400px; }
    .titles {
        font-size: 34px;
        line-height: 40px;
    }
    .about .btn-maroon.mt-4 { margin-top: 1rem !important; }

    .hero-img-wrap span.line{
        display: none;
    }
    .expertise h2 {  margin-bottom: 2rem; }

    .exp-cont, .exp-card h3 { min-height: auto; }
    .exp-card{ height: auto; }
    .split-col h2 { font-size: 24px; margin-bottom: .8rem; line-height: 28px; }

    .split-col>p { font-size: 15px;  line-height: 20px; }

    .tour h2 {
        font-size: 46px;
        line-height: 60px;
        margin: 1rem 0;
    }
    .titleBorder::before {top: -260px; }
    .titleBorder::after, .tour-stats::before { display: none; }
    .tour-stats {
        gap: 1.0rem;
        padding: 1rem 0rem;
        margin: 0;
    }
    .wf-track::before{ width: 200%; }
    .wf-step h3{         
        display: flex;
        font-size: 16px;
        min-height: 30px;
        align-items: center;
        justify-content: center; 
    }
    .wf-num {font-size: 50px; }
    .wf-step p {
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
    }
    .wf-step .step-label {
        font-weight: 600;
        font-size: 10px;
        margin: 1.4rem 0 15px;
    }
    .wf-track::before{ top: 65px; }
    .cta-inner h2 {
        font-size: 30px;
        line-height: 38px;
    }
    .cta-inner p {
        margin: 20px 0 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 23px;
        position: relative;
        z-index: 10;
    }
    footer, .cta-inner, .tour, .exp-card {  clip-path: none;  }
    .footer-bottom { justify-content: center; }

    .footer-top {  padding: 4rem 1.5rem 3rem; }

    .cta-inner {  padding: 3.2rem 3rem; }

    .exp-card .prdImg { height: 250px;  }
    .exp-card .prdImg img { min-height: 250px;  }
    .wf-track { overflow-y: auto; max-width: 700px; }

    .wf-step { min-width: 130px; }
    .hero-feat-section {
        flex-direction: column-reverse;
        display: flex;
    }
    .hero-img-wrap img {  clip-path:none; height: 400px; }
    .hero-img-wrap {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
        padding-left: 0;
    }
    .feat-item {   
        flex-direction: column;
        width: 49%;
        display: inline-block;
        text-align: center;
        margin: 0 0 20px;
    } 
    .workflow .counters { flex-direction: column;}

    .grdiList{ min-height: auto; }

    .exportInfra  .col-md-6.col-lg-4 { margin-top: 25px; }

    .grdiList .fontAdj { font-size: 20px !important; }

    .grdiList { padding: 2rem 1.3rem; }


}
@media (max-width: 580px) {
    .container{
        --bs-gutter-x: 2.5rem;
    }
    .split-col.left, .split-col { padding-left: 1rem; }
    .cta-inner::after {
        width: 300px;
        height: 130px;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
    .frameArng .tall-frame.frameEven {  margin-top: 0; }
    .about .call-line { font-size: 14px !important; }
    .cta-inner .btn-cream {
        position: relative;
        z-index: 10;
    }   
    header .navbar, .scroller .navbar {
        padding: 1.3rem 1.5rem;
    }
    .feat-title { font-size: 18px; margin-bottom: 0.5rem; }

    .arrow-list li {  line-height: 18px; font-size: 15px; }

    .exp-card h3 { font-size: 18px; }
    .tour h2 {
        font-size: 36px;
        line-height: 48px;
    }
    .cta-inner {
        padding: 2rem 2rem;
    }
    .split-row .img-frame, .split-row .split-img {
        width: 100%;
    }
    header .brand img{ max-width: 180px; }
    .solutions-section .col-lg-6{ margin-top: 0; }
    .collage-wrap {
        margin-bottom: 20px;
    }
    .hero h1 {
        font-size: 20px;
        line-height: 31px;
        margin: 0;
        padding: 0;
        font-weight: 400;
    }
    .hero .lead-copy {
        font-size: 15px;
        line-height: 21px;
    }
    .about .tall-frame {
        height: 300px;
        clip-path: none;
    }
    .about .row.g-5{ --bs-gutter-y: 2rem; }
    .about .col-lg-5 , .formSection .col-lg-5{  margin-top: 0; }
    .about p { font-size: 15px; }
    .herowrapper .mt-5 { margin-top: 1.5rem !important; }
    .btn-cream, .btn-outline-white { font-size: 15px; }
    .about .btnSpace {
        align-items: inherit;
        gap: 0;
        flex-direction: column;
        justify-content: left;
    }
    .about .btn-maroon.mt-4{justify-content: center; max-width: 200px;  }
    .hero-img-wrap img {  height:300px; }
    .about .btnSpace{ flex-direction: row; }
    .hero.inner { margin: 0 0 2rem; }
    .hero.inner h1 {  font-size: 34px;  margin: 0 0 15px;  line-height: 48px;}
    .scroller .brand, .scroller .brand img{  margin:  0; }
    .form-card h2 { font-size: 36px; margin: 10px 0 20px; }
    .form-card {
        padding: 1.5rem;
        border-radius: 10px;
    }
    .btn-send{
        margin-bottom: 15px;
    }
    .collage-wrap img{ width:100%;height:200px;margin-left:0;clip-path:none;border-radius:8px;margin-bottom:8px; }
    .delivery-caption{ clip-path:none;} 
}

@media (max-width: 480px) {

    .split-row {
        flex-direction: column;
    }
    .cta-inner h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .cta-band .container{
        padding: 0;
    }
    .cta-inner {
        padding: 2rem 1.5rem;
    }
    .cta-band {
        padding: 0 0 2rem;
    }
    .wf-num {  font-size: 40px; line-height: 52px; }

    header .brand img{ max-width: 160px; }

    .scroller .brand img { max-width: 160px; margin: 0;}

    header .navbar-toggler { border: 0; padding: 0; }

    .navbar-toggler-icon { width: 1.2em;  height: 1.3em; }

    .about .call-line a{ display: block;padding-left: 20px;} 

    .titles {
        font-size: 30px;
        line-height: 34px;
    }
    .expertise h2 , .about h2 { margin-bottom: 1.3rem;  }
    .about .btnSpace{ flex-direction: column; }
    .about .btnSpace {
        display: flex;
        align-items: inherit;
        gap: 0;
    }
    .tour-stat {
        text-align: center;
        width: 47%;
    }
    .inner .herowrapper { height: 220px; }


}
@media (max-width: 380px) {
    
    footer .col-lg-2.col-6, footer .col-lg-3.col-6 {
        width: 100%;
    }
    .tour h2{
         text-align: center; 
    }
    .hero.inner h1 {
        font-size: 26px;
        line-height: 30px;
    }


}

