:root {
    --primerycolor: #001C3B;
    --secondarycolor: #012169;
    --white: #ffffff;
    --highlightedcolor: #FF7533;
    --sectionheadingfontsize: 38px;
    --titlefontsize: 32px;
    --subtitlefontsize: 20px;
    --regularfontsize: 16px;
    --regularfonts: 'FigtreeRegular', sans-serif;
    --boldfonts: 'FigtreeBold', sans-serif;
    --mediumfonts: 'FigtreeMedium', sans-serif;
    --semiboldfonts: 'FigtreeSemiBold', sans-serif
}

@font-face {
    font-family: 'FigtreeRegular';
    src: url(../fonts/FigtreeRegular.eot);
    src: url(../fonts/FigtreeRegular.eot) format('embedded-opentype'),
        url(../fonts/FigtreeRegular.woff2) format('woff2'),
        url(../fonts/FigtreeRegular.woff) format('woff'),
        url(../fonts/FigtreeRegular.ttf) format('truetype'),
        url(../fonts/FigtreeRegular.svg#FigtreeRegular) format('svg');
}

@font-face {
    font-family: 'FigtreeBold';
    src: url(../fonts/FigtreeBold.eot);
    src: url(../fonts/FigtreeBold.eot) format('embedded-opentype'),
        url(../fonts/FigtreeBold.woff2) format('woff2'),
        url(../fonts/FigtreeBold.woff) format('woff'),
        url(../fonts/FigtreeBold.ttf) format('truetype'),
        url(../fonts/FigtreeBold.svg#FigtreeBold) format('svg');
}

@font-face {
    font-family: 'FigtreeMedium';
    src: url(../fonts/FigtreeMedium.eot);
    src: url(../fonts/FigtreeMedium.eot) format('embedded-opentype'),
        url(../fonts/FigtreeMedium.woff2) format('woff2'),
        url(../fonts/FigtreeMedium.woff) format('woff'),
        url(../fonts/FigtreeMedium.ttf) format('truetype'),
        url(../fonts/FigtreeMedium.svg#FigtreeMedium) format('svg');
}

@font-face {
    font-family: 'FigtreeSemiBold';
    src: url(../fonts/FigtreeSemiBold.eot);
    src: url(../fonts/FigtreeSemiBold.eot) format('embedded-opentype'),
        url(../fonts/FigtreeSemiBold.woff2) format('woff2'),
        url(../fonts/FigtreeSemiBold.woff) format('woff'),
        url(../fonts/FigtreeSemiBold.ttf) format('truetype'),
        url(../fonts/FigtreeSemiBold.svg#FigtreeSemiBold) format('svg');
}

body {
    font-family: var(--regularfonts);
    font-size: var(--regularfontsize);
    line-height: 1.5;
    background-color: transparent!important;
    
}


* {
    margin: 0;
    padding: 0;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.header-wrapper {
    background: url(../images/header-img.png) no-repeat center center #01226e;
    padding: 80px 0px;
}

.menu-header.is-sticky {
    position: fixed;
    border: 1px solid rgba(0, 0, 0, .09);
    background: rgba(255, 255, 255, .52);
    animation: .80s ease-out slideDown;
    margin-top: 0;
    top: 40px;
    z-index: 999;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0 16px 21px 0 rgba(35, 31, 32, .09);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/*navigation*/
nav {
    display: flex;
    background-color: var(--white);
    border-radius: 100px;
    transition-duration: 0.6s;
    width: 95%;
    max-width: 1140px;
    justify-content: space-between;
    position: absolute;
    align-items: center;
    top: 35px;
    padding: 11px 30px;
}

.navbar-scroll {
    background: #ffffff;
    padding: 0;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
    transition-duration: 0.6s;
}

.nav-dropdown-scroll {
    background: #e7eaea;
    box-shadow: 0px 10px 9px rgba(0, 0, 0, 0.4);
}

/*Styling logo*/
.logo {
    text-align: center;
    display: flex;
}

/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    align-items: center;

}

.nav-links li a {
    text-decoration: none;
    color: var(--primerycolor);
    padding: 0px 18px;

}

.nav-links li a:focus-visible {
    border: 0;
    outline: 0;
}

.nav-links li.active a {
    color: var(--highlightedcolor);
    font-family: var(--boldfonts);
}

.nav-links li.active a:before {
    content: '';
    width: 8px;
    height: 8px;
    font-size: 12px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background: var(--highlightedcolor);
    animation: pulse-animation 2s infinite;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 7px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

.nav-links li a:hover {
    color: var(--highlightedcolor);

}

.nav-links li {
    position: relative;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #000000;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.topheader-wrapper {
    margin-top: 120px;
    display: flex;
    column-gap: 100px;
    align-items: center;
}

.left-header {
    width: 60%;
}

.left-header h1 {
    font-size: var(--sectionheadingfontsize);
    margin-bottom: 10px;
    line-height: 1.2;
}

.left-header h1,
.left-header p {
    color: var(--white);
}

.right-header {
    width: calc(100% - 60%);
}

.aboutus-details {
    background: linear-gradient(180deg, #FFF 0%, #F8F9FC 100%);
    padding: 50px 0px;
}

.about-wrapper {
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.left-about-img {
    width: 50%;
}

.right-aboutdetails {
    width: calc(100% - 50%);
}

h2 {
    font-size: var(--titlefontsize);
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--secondarycolor);
    font-family: var(--boldfonts);
}

.why-uk-machinery {
    padding: 50px 0px
}

.perfomance-wrapper {
    display: flex;
    column-gap: 30px;
    /* align-items: center; */
    margin: 30px 0px 0px 0px;
}

.perfomance-box {
    border-radius: 4px;
    background: #F8F9FC;
    padding: 25px;
    width: 33.33%;
    transition: .4s;
    /* height: -webkit-fill-available; */
}

.perfomance-box p {
    font-size: var(--subtitlefontsize);
    font-family: var(--semiboldfonts);
    color: var(--secondarycolor);
}

.perfomance-box:hover {
    box-shadow: 0 3px 4px rgba(0, 0, 0, .05);
}

.blue-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
}

.header-btn a {
    position: relative;

    padding: 12px 26px;
    color: var(--white);
    font-family: var(--mediumfonts);
    border: solid 2px var(--secondarycolor);
    text-decoration: none;
    transition: .4s;
    background-color: var(--secondarycolor);

    border-radius: 100px;
}

.header-btn a:hover {
    background-color: var(--white);
    color: var(--secondarycolor);
}

.blue-btn a {
    position: relative;

    padding: 12px 50px 12px 26px;
    color: var(--white);
    font-family: var(--mediumfonts);
    text-decoration: none;
    background-color: var(--secondarycolor);

    border-radius: 100px;
}

.blue-btn a:before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.blue-btn a:before {
    top: 50%;
    right: 1.5em;
    width: 1em;
    height: 1em;
    transform-origin: 50% 50%;
    transform: translate(0, -0.5em) rotate(360deg);
    background: url(../images/button-arrow.svg);
}

.blue-btn a:hover:before {
    transform: translate(0.5em, -0.5em) rotate(360deg);
}

.blue-btn a:hover:after {
    transform: translate(0.5em, -0.1em);
}

.who-should-engage {
    background: url(../images/why-should-bg.png) no-repeat center center #012169;
    padding: 50px 0px;
}

.why-should-wrapper {
    display: flex;
    justify-content: center;
    width: 85%;
    margin: 0px auto;
    align-items: center;
}

.left-itsfor {
    width: 40%;
}

.left-itsfor h2 {
    color: var(--white);
    margin: 30px 0px;
}

.left-itsfor .blue-btn {
    text-align: left;
    justify-content: flex-start;
}

.left-itsfor .blue-btn a {
    background-color: var(--white);
    color: var(--primerycolor);
}

.left-itsfor .blue-btn a:before {
    filter: invert(1);
}

.left-itsfor .blue-btn a:after {
    background-color: var(--secondarycolor);
}

.blue-btn.mobile-btn {
    text-align: left;
    justify-content: flex-start;
}

.blue-btn.mobile-btn a {
    background-color: var(--white);
    color: var(--primerycolor);
}

.blue-btn.mobile-btn a:before {
    filter: invert(1);
}

.blue-btn.mobile-btn a:after {
    background-color: var(--secondarycolor);
}

.right-egage-category {
    width: calc(100% - 40%);
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.category-wrapper-box {
    display: flex;
    column-gap: 22px;
}

.category-title {
    width: calc(100% - 60px);
    color: var(--white);
    font-size: var(--subtitlefontsize);
    font-family: var(--semiboldfonts);
}

.icon-img {
    width: 50px;
    height: 50px;
}

.orange-btn {
    background-color: var(--highlightedcolor);
    color: var(--white);
    position: relative;
    padding: 8px 12px 8px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}
.orange-btn:hover{background-color: var(--highlightedcolor);
    color: var(--white);}

.orange-btn:before {
    content: '';
    width: 10px;
    height: 10px;
    font-size: 12px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background: #fff;
    animation: pulse-animation 2s infinite;
    display: inline-block;
    position: absolute;
    left: 11px;
    top: 13px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

.benifits {
    padding: 50px 0px;
    background-color: #F8F9FC;
}

.benifits p {
    width: 70%;
}

.benifits-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
    justify-content: center;
    /* align-items: center; */
}

.benifits-box {
    background-color: var(--white);
    padding: 25px;
    width: 27.33%;
    position: relative;

}

.bullet-number {
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 0px 0px 18px 0px;
    font-size: 25px;
    font-family: var(--boldfonts);
    background-color: var(--highlightedcolor);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benifits-title {
    font-size: var(--subtitlefontsize);
    color: var(--secondarycolor);
    font-family: var(--semiboldfonts);
    margin-left: 50px;
    margin-bottom: 10px;
}

.latest-news {
    padding: 50px 0px;
}

.latest-news h2 {
    margin-top: 30px;
}

.slick-slide {
    margin: 0 5px;
    display: flex !important;
    flex-direction: column;
}

.slick-slider {
    margin-bottom: 0px !important;
}

.slick-initialized .slick-slide:focus-visible {
    outline: 0;
    border: 0;
}

.news-details {
    background-color: #F8F9FC;
    padding: 25px;
}

.news-title {
    font-size: var(--subtitlefontsize);
    font-family: var(--semiboldfonts);
    color: var(--secondarycolor);
    line-height: 1.2;
    margin-bottom: 18px;
}

img {
    max-width: 100%;
}

.footersection {
    background-color: var(--secondarycolor);
    padding: 20px 0px;
}

.footersection p {
    text-align: center;
    font-size: var(--regularfonts);
    color: var(--white);
}

.latest-news .slick-track {
    display: flex !important;
}

.latest-news .slick-slide {
    height: inherit !important;
    background: #F8F9FC;
}

.latest-news .slick-slide img {
    display: block;
    height: 100%;
    /* object-fit: contain; */
    min-height:195px;
}

    .desktop-btn {
        display: block;
    }

.mobile-btn {
    display: none;
}

.inner-header-wrapper {
    background: url(../images/about-us.png) no-repeat center center #032062;
    padding-top: 200px;
    text-align: center;
    color: var(--white);
    background-size: cover;
}
.coalition-benefits{background: url(../images/coalition-benefits.png) no-repeat 0px 0px;background-size: cover;}
.join-coalition{background: url(../images/join-the-coalition.png) no-repeat 0px 0px;background-size: cover;}
.uk-solutions{background: url(../images/uk-solutions.png) no-repeat 0px 0px;background-size: cover;}

.about-details {
    text-align: center;
    padding: 50px 0px;
}

.about-details p {
    width: 60%;
    margin: 0px auto 18px auto;
}

.mission {
    background: #F8F9FC;
}

.coalition-section {
    padding: 40px 0px;
}

.collection-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 30% 70%;
    gap: 40px;
}

.coalition-right-content {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.card .icon {
    width: 59px;
    height: 59px;
    display: flex;
}

.card p {
    width: calc(100% - 59px);
    font-size: var(--subtitlefontsize);
    color: var(--secondarycolor);
    font-family: var(--semiboldfonts);
}

.behind-collection {
    background: url(../images/who-is-behind-the-coalition.png) no-repeat center center;
    background-size: cover;
    padding: 50px 0px;
    color: var(--white);
}

.behind-collection h2 {
    color: var(--white);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

}

.card-box {
    background-color: #F8F9FC;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    transition: 0.3s;
}

.card-box a {
    color: var(--primerycolor);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.client-logo {
    background-color: var(--white);
    border: solid 1px #E5E7EF;
    padding: 25px 0px;
    border-radius: 4px 4px 0px 0px;
}

.client-logo img {
    max-width: 100%;
    max-height: 174px;
    object-fit: contain;
}

.client-details {
    text-align: left;
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.client-details p {
    width: 100%;
    margin: 12px 0px;
    flex: 1;
}

.client-details span {
    text-decoration: underline;
}

.solution-provide .blue-btn {
    margin-bottom: 0px;
}

.solution-provide .blue-btn a {
    background-color: var(--highlightedcolor);
}

.card-box:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.technolgy-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 30% 65%;
    gap: 20px;
}

.uk-technology {
    padding: 30px 0px;
    background: url(../images/UK-technology.png) no-repeat center center;
    background-size: cover;
}

.technology-ttile h2 {
    color: var(--white);
}

.technology-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.technology-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.technology-card .icon {
    width: 59px;
    height: 59px;
    display: flex;
}

.technology-card p {
    width: calc(100% - 59px);
    font-size: var(--subtitlefontsize);
    color: var(--white);
    font-family: var(--semiboldfonts);
}

.technology {
    background: linear-gradient(180deg, #FFF 0%, #F8F9FC 100%);
}

.technology .about-wrapper {
    align-items: flex-start;
}

.whyindian-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.whyindian-wrapper ul li {
    position: relative;
    padding: 15px 18px 15px 46px;
    background-color: var(--white);
    font-size: var(--subtitlefontsize);
    color: var(--secondarycolor);
    font-family: var(--semiboldfonts);
}

.whyindian-wrapper ul li:before {
    content: '';
    width: 10px;
    height: 10px;
    font-size: 12px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background: var(--highlightedcolor);
    animation: pulse-animation 2s infinite;
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 25px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

.application-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.indian-application {
    padding: 50px 0px;
}

.application-box {
    background-color: #F8F9FC;
    padding: 25px;
    border-radius: 4px;
}

.application-box .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}

.application-box p {
    font-size: var(--subtitlefontsize);
    font-family: var(--semiboldfonts);
    color: var(--secondarycolor);
}

.get-involved{background: linear-gradient(180deg, #FFF 0%, #F8F9FC 100%);}
.joining-ukitmc .application-box{background: var(--secondarycolor);}
.joining-ukitmc .application-box p{color: var(--white);}
.engagement{background: #F8F9FC;}
.participate .application-wrapper{margin-top:65px;}
.participate .application-box{position: relative;text-align: center;}
.participate .application-box .icon{background: var(--secondarycolor);
    width: 62px;
    height: 62px;
    border-radius: 100px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;}
 .participate .application-box p{padding-top:18px;line-height: 1.2;}
.participate .blue-btn{margin-bottom:0px;}
.who-should-join{background-color: var(--secondarycolor);padding: 50px 0px;}
.who-should-join h2{text-align: center;color: var(--white);}
.shouldjoin-wrapper{display: grid;grid-template-columns: repeat(3, 1fr);gap: 20px;}
.shouldjoin-box{display: flex;gap: 15px;align-items: center;}
.shouldjoin-box .icon{width:66px;height: 60px;border-radius: 56.757px;display: flex;align-items: center;justify-content: center;
background:#1a3778;padding: 10px;}
.shouldjoin-box p{width: calc(100% - 70px);color: var(--white);font-size: var(--subtitlefontsize);font-family: var(--semiboldfonts);}
.get-involved .blue-btn{margin-bottom:0px;}
.joinwrapper{display: grid;grid-template-columns: repeat(2, 1fr);gap: 20px;}
.how-to-join{padding: 50px 0px;}
.joinus{background: #F8F9FC;padding:18px;}
.joinus .shouldjoin-wrapper{display: grid;grid-template-columns: repeat(1, 1fr);gap: 20px;margin-bottom: 12px;}
.joinus .shouldjoin-wrapper p{color: var(--secondarycolor);font-size: var(--titlefontsize);font-family: var(--boldfonts);}
.orangewrapper{background:url(../images/orange-vector.png) no-repeat right 0px var(--highlightedcolor);padding:30px;margin-bottom: 50px;border-radius: 10px;display: flex;justify-content: space-between;}
.mailerwapper {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: var(--subtitlefontsize);
}
.mailerwapper span{margin-right: 10px;}
.mailerwapper a{color: var(--white);text-decoration: none;padding-left:5px;}
.left-txt{font-size: var(--subtitlefontsize);color: var(--white);}
.support .blue-btn{margin: 0px;}
.support .blue-btn a{background-color: var(--white);color: var(--primerycolor);}
.support .blue-btn a:before {
    filter: invert(1);
}
.founding-partner{background-color: var(--secondarycolor);padding:50px 0px;}
.founding-wrapper{display: flex;gap:50px;align-items: center;justify-content: center;}
.btnma, .f2f-wrapper{display: flex;justify-content: center;align-items: center;column-gap:20px;}
.btma-title, .f2f-title{font-size: var(--subtitlefontsize);color: var(--white);font-family: var(--semiboldfonts);}
.fade.in {
    opacity: 1;
}

.modal-backdrop.fade.in {
    opacity: .5;
}
.modal {
    z-index: 1050;
    display: none;
    outline: 0;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop {
    z-index: 1040;
    background-color: #000;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity .5s linear;
    -o-transition: opacity .5s linear;
    transition: opacity .5s linear;
}
.modal{overflow: hidden;}
.modal, .modal-backdrop {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.modal.fade.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    margin-top: 0;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}
.modal-dialog {
    width: inherit !important;
    margin: 0 auto !important;
    max-width: 980px;
    position: relative;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
   background-clip: padding-box;
    outline: 0;
   
}
.close-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    font-size: 35px;
    opacity: .8;
    cursor: pointer;
    z-index: 9;
        padding: 0 15px;
    background-color: transparent;
}
.modal-body {
    position: relative;
    padding: 0;
}
.bysubmiting{display: none;}

  .ukitmc-inquireyform {
        font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
        padding: 28px 36px 24px;
        background: #fff;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
        position: relative; /* for the close btn */
    }

    /* ── Our custom close button ── */
    .ukitmc-inq-close {
        position: absolute;
       top: 8px;
    right: 10px;
        width: 34px;
        height: 34px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
        transition: background 0.15s;
        z-index: 10;
    }

        .ukitmc-inq-close:hover {
            background: #f0f2f7;
        }

        .ukitmc-inq-close svg {
            width: 18px;
            height: 18px;
            stroke: #0d1f5c;
            stroke-width: 2.5;
            stroke-linecap: round;
        }

    /* ── Title ── */
    .ukitmc-inquireyform .inq-title {
        font-size: 24px;
        font-weight: 700;
        color: #0d1f5c;
        margin: 0 0 20px 0;
        padding-right: 40px; /* don't overlap close btn */
        letter-spacing: -0.3px;
        line-height: 1.2;
    }

    /* ── Inputs & selects ── */
    .ukitmc-inquireyform .form-control {
        height: 46px;
        border: 1.5px solid #c5ccd8;
        border-radius: 8px;
        padding: 0 13px;
        font-size: 13.5px;
        color: #1a1a2e;
        background: #fff;
        transition: border-color 0.18s, box-shadow 0.18s;
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        box-sizing: border-box;
        font-family: inherit;
    }

        .ukitmc-inquireyform .form-control:focus {
            border-color: #c5ccd8;
            box-shadow:none;
            outline: none;
        }

        .ukitmc-inquireyform .form-control::placeholder {
            color: #a8b3c8;
        }

    /* ── Textarea ── */
    .ukitmc-inquireyform textarea.form-control {
        height: 82px;
        padding: 11px 13px;
        resize: none;
        line-height: 1.5;
    }

    /* ── Select chevron ── */
    .ukitmc-inquireyform .sel-wrap {
        position: relative;
    }

        .ukitmc-inquireyform .sel-wrap::after {
            content: '';
            pointer-events: none;
            position: absolute;
            right: 13px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid #5a6480;
        }

    .ukitmc-inquireyform select.form-control {
        padding-right: 34px;
        cursor: pointer;
        color: #1a1a2e;
    }

        .ukitmc-inquireyform select.form-control.sel-chosen {
            color: #1a1a2e;
        }

    /* ── Rows ── */
    .ukitmc-inquireyform .inq-row {
        display: flex;
        gap: 14px;
        margin-bottom: 12px;
        align-items: flex-start;
    }

    .ukitmc-inquireyform .inq-col {
        flex: 1;
        min-width: 0;
    }

    /* ── Validation ── */
    .ukitmc-inquireyform .text-danger {
        font-size: 11px;
        color: #d0363e;
        margin-top: 3px;
        display: block;
    }

    /* ── Submit ── */
    .ukitmc-inq-submit-btn {
        background: #0d1f5c;
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 12px 44px;
        font-size: 14.5px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.18s, transform 0.12s;
        display: inline-block;
        margin-top: 8px;
        letter-spacing: 0.2px;
        font-family: inherit;
    }

        .ukitmc-inq-submit-btn:hover {
            background: #16297a;
            transform: translateY(-1px);
        }

        .ukitmc-inq-submit-btn:active {
            transform: translateY(0);
        }

        .ukitmc-inq-submit-btn.disabled,
        .ukitmc-inq-submit-btn:disabled {
            opacity: 0.55;
            cursor: not-allowed;
            transform: none;
        }

    /* ── Terms ── */
    .ukitmc-inquireyform .inq-terms {
        margin: 12px 0 0;
        font-size: 12.5px;
        color: #4a5268;
        line-height: 1.5;
    }

        .ukitmc-inquireyform .inq-terms a {
            color: #0d1f5c;
            text-decoration: underline;
            font-weight: 500;
        }

    /* ── Messages ── */
    .ukitmc-inquireyform #msgSuccess {
        color:var(--primerycolor);
        font-size:16px;
        font-weight: 500;
        text-align:center;
        padding: 8px 0;
    }

        .ukitmc-inquireyform #msgError.alert {
            border-radius: 8px;
            font-size: 13px;
            padding: 9px 13px;
            margin-bottom: 10px;
        }

    /* ── India fields hidden by default ── */
    #divInquirySerState,
    #divInquirySerTxtState,
    #divInquirySerTxtCity {
        display: none;
    }
    .newsdetails{padding:50px 0px 0px 0px;}
    .newsdetails .container{width:85%;max-width: 780px;margin:0px auto}
    .newsdetails h2{text-align: center;}
    .news-img img{border-radius:10px;}
    
        .newsdetails p{font-size: var(--regularfontsize);color: var(--primerycolor);margin: 18px 0px;font-family: var(--regularfonts);}
    .newsdetails p span{font-size: var(--regularfontsize);color: var(--primerycolor);font-family: var(--regularfonts)!important;}
.news-details-txt h2 {
    font-size: 25px!important;
    font-family: var(--boldfonts)!important;
    text-align: left!important;
}
.news-details-txt h3 {
    font-size: 22px!important;
    font-family: var(--boldfonts)!important;
    text-align: left!important;
}
.news-details-txt h4 {
    font-size: 20px !important;
    font-family: var(--boldfonts)!important;
    text-align: left!important;
}
.news-details-txt h5 {
    font-size: 18px!important;
    font-family: var(--boldfonts)!important;
    text-align: left!important;
}
.news-details-txt img {
    width: unset !important;
    max-width: 100%;
}
.source-tab {
    display: flex;
    column-gap: 18px;
    align-items: center;
    margin-top:18px;
}
.source-ttile {
    font-size: var(--regularfontsize);
    font-family: var(--boldfonts);
}

.latest-news .slick-next:before, [dir=rtl] .latest-news .slick-prev:before {
    content: '';
    background: url(https://static.fibre2fashion.com/staticresources/images/arrow-right.png) no-repeat center center #fff;
}

.latest-news .slick-next:before, .latest-news .slick-prev:before {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    width: 40px;
    height: 40px;
    border-radius: 100px;
        box-shadow: 0 12px 32px rgba(14, 42, 71, 0.08);

}

.latest-news .slick-prev {
    left: -50px;
}

    .latest-news .slick-prev:before {
        content: '';
        background: url(https://static.fibre2fashion.com/staticresources/images/arrow-left.png) no-repeat center center #fff;
    }

    @media (max-width: 600px) {
        .ukitmc-inquireyform {
            padding: 22px 16px 18px;
        }

            .ukitmc-inquireyform .inq-row {
                flex-direction: column;
                gap: 10px;
            }

            .ukitmc-inquireyform .inq-title {
                font-size: 19px;
            }
    }

    #cboxContent, #cboxLoadedContent {
        overflow: auto !important;
    }
    .slick-next, .slick-prev{
        z-index: 1;
    }
@media only screen and (max-width:1300px) {
.slick-next {
    right: 0px;
}
.latest-news .slick-prev {
    left: -18px;
}
}
@media only screen and (max-width:1200px) {
    nav {
        width: 90%;
    }
}

@media only screen and (max-width:1024px) {
    .nav-links li a {
        padding: 0px 11px;
        font-size: 15px;
    }

    nav {
        padding: 11px 18px;
        width: 92%;
    }

    .benifits-box {
        width: 26.33%;
    }
        .modal-dialog{width:93%!important;max-width: unset;}
}

@media screen and (max-width:800px) {
    nav {
        position: fixed;
        z-index: 3;
    }
    .hamburger.toggle div {
        background-color: #fff;
        height: 3px;
    }

    .logo {
        text-align: center;
        display: flex;
        margin-left: 6%;
    }

    .nav-links li a {
        color: var(--white);
        padding:0px;
    }
    .nav-links li.active a:before {
        left: -16px;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 99;
        transition: .7s
    }

    .nav-links {
        position: fixed;
        background: var(--primerycolor);
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 6% -8%);
        -webkit-clip-path: circle(50px at 6% -8%);
        transition: .8s ease-out;
        pointer-events: none;
        margin: 0;
        top: 0;
        left: 0;
        z-index: 9;
        justify-content: center;
        row-gap: 20px
    }

    .nav-links.open {
        clip-path: circle(1500px at 90% -10%);
        -webkit-clip-path: circle(1500px at 90% 0%);
        pointer-events: all
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }

    .benifits-box {
        width: 41.33%;
    }

    .about-details p {
        width: 100%;
    }

    .collection-wrapper {
        grid-template-columns: 100%;
        row-gap: 12px;
    }

    .technology .about-wrapper {
        flex-direction: column;
        row-gap: 18px;
    }

    .left-about-img {
        width: 100%;
    }

    .right-aboutdetails {
        width: 100%;
    
    }

    .whyindian-wrapper ul li {
        text-align: left;
    }
    .orangewrapper{flex-direction: column;row-gap: 18px;background-size:cover;}
    .mailerwapper{text-align: center;
    justify-content: center;}
    .left-txt{text-align: center;}
    .latest-news .slick-slide img {
        min-height:165px;
    }

}

@media screen and (max-width:767px) {
    .right-aboutdetails{text-align: center;}
    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    .container {
        width: 88%;
    }

    .topheader-wrapper,
    .about-wrapper {
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .left-header,
    .left-about-img,
    .right-aboutdetails,
    .left-itsfor,
    .right-egage-category,
    .benifits p,
    .benifits-box {
        width: 100%;
    }

    .right-header {
        display: none;
    }

    .why-should-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .who-should-engage {
        background-size: cover;
    }

    .topheader-wrapper {
        margin-top: 60px;
    }

    .right-egage-category {
        row-gap: 20px;
    }

    .coalition-right-content,
    .card-grid,
    .technolgy-wrapper,
    .application-wrapper, .shouldjoin-wrapper, .joinwrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .inner-header-wrapper {
        padding-top: 150px;
    }
    .participate .application-wrapper{
        margin-top:50px;
            gap: 50px;
    }
    .participate .application-box{
        flex-direction: column;
    }
    .participate .application-box p{padding-top:30px;}
    .ukitmc-inquireyform{padding:18px;}
    .ukitmc-inquireyform .inq-row{flex-direction: column;position: relative;gap:18px;margin-bottom:18px;}
    .ukitmc-inquireyform .inq-col{width: 100%;    gap: 18px;}
    .ukitmc-inquireyform .text-danger{position: absolute;margin-top:0px;}
    .mobilescroll {
    height: 70vh;
    overflow-y: auto;
}
    .latest-news .slick-slide img {
        min-height: 210px;

    }
    .btma-logo img {
    width: 120px;
}
.f2f-logo img {
    width: 200px;
}

    .latest-news .slick-next:before, .latest-news .slick-prev:before {
        display: none;
    }

}

@media screen and (max-width:480px) {
    :root {
        --sectionheadingfontsize: 30px;
        --titlefontsize: 25px;
        --subtitlefontsize: 18px;
    }

    h2 {
        margin-bottom: 12px;
    }

    .aboutus-details,
    .why-uk-machinery,
    .who-should-engage,
    .benifits,
    .latest-news,
    .coalition-section,
    .behind-collection,
    .about-details,
    .indian-application, .who-should-join, .how-to-join, .newsdetails{
        padding: 30px 0px;
    }
.newsdetails{padding-bottom:0px;}
.newsdetails p:last-of-type{margin-bottom:0px;}
    .perfomance-wrapper {
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .perfomance-box {
        display: flex;
        width: 100%;
        column-gap: 18px;
    }

    .perfomance-box img {
        width: 65px;
    }

    nav {
        padding: 11px 18px;
        width: 80%;
    }

    .header-btn a {
        padding: 8px 15px;
        font-size:13px;
    }

    .logo {
        margin-left: 6%;
    }

    .logo img {
        height: 60px;
    }

    .header-wrapper {
        padding-bottom: 35px;
    }

    .hamburger div {
        width: 25px;
        height: 2px;
    }

    .latest-news h2 {
        margin-top: 18px;
    }

   

    .nav-links li a {
        font-size: 18px;
    }

    .application-box {
        display: flex;
        padding: 12px 25px;
        align-items: center;
        column-gap: 18px;
    }

    .application-box .icon {
        margin-bottom: 0px;
    }
    .orangewrapper{margin-bottom:30px;}
      .logo {
              margin-left:8%;
        width: 30%;
    }

    .logo img {
        height:55px;
    }

    .header-btn a {
        font-size: 13px;
        padding: 8px;
    }
    .hamburger{left: 12px;}
    .founding-wrapper{flex-direction: column;gap: 12px;}
    .btnma, .f2f-wrapper{flex-direction: column;gap: 12px;  }
    .ukitmc-inq-submit-btn{display: block;margin: 0px auto;}
    

}

@media screen and (max-width:375px) {
        .logo {
              margin-left: 12%;
        width: 23%;
    }

    .logo img {
        height:40px;
    }

    .header-btn a {
        font-size: 13px;
        padding: 8px;
    }
    .hamburger{left: 12px;}
}