/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #1181f3;
	--secondary: #000d1e;
	--button: #175adc;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Roboto Condensed', sans-serif;
}
body {
    font-family:'Inter', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
	 position: absolute;
      left: 0;
      width: 100%;
      z-index: 10;
      background: transparent !important;
	padding: 10px 0;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box img {
    width: 180px;
    height: auto;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a{
    position: relative;
    text-decoration: none;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    display: inline-block;
    color: #fff !important;
}
a.btn-primary {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
}

/* Blue line */
.site-header .nav > li > a::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00aaff;
    box-shadow:
        0 0 5px #00aaff,
        0 0 10px #00aaff,
        0 0 15px #00aaff;
    transition: all .35s ease;
}

/* Hover & Active */
.site-header .nav > li > a:hover::after,
.site-header .nav > li.current-menu-item > a::after,
.site-header .nav > li.current_page_item > a::after{
    width: 55px;
}

.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a{
    color: #fff !important;
    background: transparent;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: var(--secondary);
}
button#mobileMenuClose {
    filter: invert(1);
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #c7c1c19e;
}
#menu-primary-1 li a {
    color: #000 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
/* section.breadcrumb-section {
    background: url();
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
	position: relative;
} */
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: var(--primary);
}
li.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 3px;
    width: 45px;
    background: var(--primary);
    margin: auto;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://nanoteltechnologies.com/wp-content/uploads/2026/06/footer-back.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    z-index: 1;
	padding-top: 60px;
	color: #fff;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 200px;
    display: block;
}
.footer_menu {
    padding: 10px 0 0 0;
}
.footer-details li {
    display: flex;
    position: relative;
    gap: 15px;
    align-items: center;
    padding-right: 15px;
}
.footer-details li:not(:last-child){
    border-right:1px solid rgba(255,255,255,0.3);
}
ul.footer-details li i {
    background: #1181f31a;
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu{
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li {
    padding-left: 0 !important;
    color: #fff !important;
    transition: transform 0.3s ease;
    margin-left: 20px;
    padding-bottom: 12px;
    line-height: 20px;
}
footer .menu li::after {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -20px;
    top: 0;
    transform: translateY(0%) translateX(-10px);
    opacity: 1;
    color: var(--primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
.footer-details {
    display: flex;
    align-items: center;
    align-content: center;
    margin-bottom: 0;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #ffffff36;
    border-bottom: 1px solid #ffffff36;
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 2px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 300;
    position: relative;
    text-decoration: none;
	font-size: 15px;
    color: #ffffff;
}
p.footer-text {
    font-size: 15px;
    margin: 30px 0;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    padding: 10px 0;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
/* Hero Section */
.hero-section {
 min-height: 95vh;
 position: relative;
 display: flex;
 align-items: center;
 overflow: hidden;
}
.hero-bg {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: url('https://nanoteltechnologies.com/wp-content/uploads/2026/06/banner1.png') center center/cover;
}
/* .hero-section::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background:linear-gradient(90deg, rgb(0 0 0 / 48%) 20%, rgb(0 0 0 / 0%) 60%, rgb(0 0 0 / 0%) 100%);
z-index: 1;
} */
.hero-content {
 position: relative;
 z-index: 2;
 max-width: 700px;
}
.hero-content h2 {
 font-size: 40px;
 line-height: 1.2;
 font-weight: 500;
 text-transform: uppercase;
 margin-bottom: 25px;
 color: #fff;
	width: 600px;
}
.hero-content h2 span {
 color: var(--primary);
}
.hero-content h5 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}
.hero-content p {
    color: #ffffff;
    font-size: 16px;
    width: 500px;
    margin-bottom: 35px;
}
.hero-btns {
 display: flex;
 gap: 15px;
}
a.btn-primary-custom {
    color: #fff;
    text-decoration: none;
    background: var(--button);
    padding: 2px 25px;
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-outline-custom {
    border: 1px solid #fff;
    color: #fff;
    padding: 2px 25px;
    text-decoration: none;
    display: flex;
    font-family: 'Roboto Condensed', sans-serif;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
a.btn-outline-custom.download {
    width: 28%;
}
.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}
.banner-bottom .container-fluid{
	margin: 0;
	padding: 0;
}
.banner-bottom {
    background: url(https://nanoteltechnologies.com/wp-content/uploads/2026/06/banner-bottom.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 33.30vh;
}
/* Serice Section */
.services-section{
    position:relative;
    padding:40px 0;
    overflow:hidden;
    background:
    radial-gradient(circle at top center,
    rgba(0,110,255,.25),
    transparent 45%),
    linear-gradient(
    180deg,
    #06172f 0%,
    #031120 40%,
    #020b16 100%);
}
.services-section::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:1px;
    background:rgba(0,153,255,.5);
    box-shadow:0 0 20px rgba(0,153,255,.8);
}
.service-box{
    display:flex;
    gap:10px;
    height:100%;
    padding:0 10px;
    position:relative;
}
.service-box::after{
    content:"";
    position:absolute;
    top:10px;
    right:0;
    width:1px;
    height:85%;
    background:rgba(255,255,255,.15);
}
.col-lg-3:last-child .service-box::after{
    display:none;
}
.service-icon{
    flex-shrink:0;
    width:60px;
}
.service-content h4{
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    line-height:1.3;
    margin-bottom:12px;
}
.service-content p{
    color:#c7d2e0;
    font-size:14px;
    margin:0;
}
/* Industries Section */
.industries-section{
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .25), transparent 45%), linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
    padding: 40px 0;
}
.industries-title {
    color: var(--primary);
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    margin-bottom: 30px;
}
.industries-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: .4s;
    white-space: nowrap;
    border: 1px solid #ffffff2e;
    width: 22%;
}
.industry-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:35px;
    background:rgba(255,255,255,.15);
}
.industry-item i{
    font-size:22px;
    color:#d9e4f5;
    transition:.4s;
}
.industry-item span{
    font-size:14px;
    font-weight:500;
}
.industry-item:hover{
    transform:translateY(-3px);
}
.industry-item:hover i{
    color:#00a3ff;
    transform:scale(1.15);
}
/* AI Data Center */
.data-section {
 min-height: 130vh;
 position: relative;
 display: flex;
 align-items: center;
 overflow: hidden;
}
.data-bg {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: url('https://nanoteltechnologies.com/wp-content/uploads/2026/06/data-background-e1780986789189.png');
background-position: right;
background-size: cover;
background-repeat: no-repeat;
}
.data-section::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background:linear-gradient(90deg, rgb(2 15 37 / 66%) 20%, rgb(0 0 0 / 0%) 60%, rgb(0 0 0 / 0%) 100%);
z-index: 1;
} 
section.data-section h5 {
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 20px;
}
section.data-section .hero-content p{
	margin-bottom: 10px;
}
section.data-section .service-item {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    transition: .3s;
}
section.data-section .service-item:hover{
    transform:translateX(10px);
}
section.data-section .icon-box {
    width: 40px;
    height: 40px;
    border: 1px solid #00a2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a2ff;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0,162,255,.35);
}
section.data-section .service-content h3{
    color:#fff;
    font-size:18px;
    font-weight:500;
    text-transform:uppercase;
}
section.data-section .service-content p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    width: 300px;
}
.col-lg:last-child .service-box::after {
    display: none;
}
section.projects {
    background: radial-gradient(circle at top center,rgba(0,110,255,.25),transparent 45%),linear-gradient(    180deg,    #06172f 0%,#031120 40%,#020b16 100%);
    color: #fff;
    padding: 50px 0;
}
.project-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.project-box img {
    width: 20%;
}
.section1{
	background: radial-gradient(circle at top center,rgba(0,110,255,.25),transparent 45%),linear-gradient(    180deg,    #06172f 0%,#031120 40%,#020b16 100%);
    color: #fff;
    padding: 40px 0;
}
.section1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,153,255,.5);
    box-shadow: 0 0 20px rgba(0,153,255,.8);
}
.list{
	margin-bottom: 0;
}
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.list li::before {
  content: "\f101"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--primary);
}
.value-box {
    border: 1px solid var(--primary);
    padding: 25px;
    border-radius: 6px;
}
.value .project-box {
    display: flex;
    flex-direction: column;
}
.project-box h5 {
    color: var(--primary);
}
/* Critical Mineral Page */
section.mineral-banner {
    background: url(https://nanoteltechnologies.com/wp-content/uploads/2026/06/mineral-banner.png);
    height: 110vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
section.mineral-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(2, 11, 22, 0.95) 0%,
        rgba(2, 11, 22, 0.90) 25%,
        rgba(2, 11, 22, 0.75) 40%,
        rgba(2, 11, 22, 0.35) 60%,
        rgba(2, 11, 22, 0.05) 100%
    );
    z-index:1;
}
.hero-content{
    position:relative;
    z-index:2;
}
.expertise-card{
    width:320px;
    padding:22px;
    border-radius:12px;
    position:relative;
    background:rgba(0,15,35,.95);
    border:1px solid rgba(0,162,255,.4);
    overflow:hidden;
}
.expertise-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:12px;
    padding:1px;
    background:linear-gradient(
        180deg,
        rgba(0,183,255,.7),
        rgba(0,183,255,.1)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}
.expertise-card::after{
    content:"";
    position:absolute;
    bottom:-30px;
    right:-30px;
    width:120px;
    height:120px;
    background:#00aaff;
    border-radius:50%;
    filter:blur(60px);
    opacity:.25;
}
.heading-small{
    color:#c7d2df;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:0;
}
.feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    color:#ffffff;
    margin-bottom: 12px;
}
.feature-item:last-child{
    margin-bottom:0;
}
.feature-item img {
    width: 12%;
}
.feature-item span{
    font-size:16px;
    color:#e6edf5;
}
.mineral-banner .hero-content p{
	margin-bottom: 20px;
}
.mineral-banner .hero-content h2{
	margin-bottom: 10px;
}
.mineral-card{
    position:relative;
    height:170px;
    border:1px solid rgba(0,170,255,.4);
    border-radius:10px;
    overflow:hidden;
    background:#03101d;
    transition:.4s;
}
.mineral-card:hover{
    transform:translateY(-5px);
    border-color:#00c8ff;
}
.mineral-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:.35;
}
.mineral-info{
    position:absolute;
    left:15px;
    top:12px;
    z-index:2;
}
.symbol{
    color:#fff;
    font-size:34px;
    font-weight:700;
    line-height:1;
}
.name{
    color:#d8d8d8;
    font-size:15px;
}
.mineral-img{
    position:absolute;
    bottom:0px;
    right:5px;
    max-width:100px;
    max-height:100px;
    z-index:2;
}
.consulting-wrapper{
    background:linear-gradient(180deg, #02101e, #03101e);
    border:1px solid rgba(26,183,255,.35);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,150,255,.12);
}

.consulting-heading{
    color:var(--primary);
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    padding:18px 25px;
    border-bottom:1px solid rgba(26,183,255,.15);
}

.consulting-grid{
    display:flex;
    flex-wrap:nowrap;
}

.consulting-card{
    flex:1;
    padding:28px 18px;
    text-align:center;
    position:relative;
    border-right:1px solid rgba(255,255,255,.06);
    transition:.4s;
}

.consulting-card:last-child{
    border-right:none;
}

.consulting-card:hover{
    background:rgba(26,183,255,.05);
}

.consulting-icon{
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:18px;
}

.consulting-icon img {
    width: 70px;
    height: auto;
    margin-bottom: 1rem;
}

.consulting-card h4{
    color:#fff;
    font-size:16px;
    line-height:1.4;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:14px;
    min-height:52px;
}

.consulting-card p {
    color: #fff;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.consulting-arrow{
    position:absolute;
    right:-14px;
    top:80px;
    width:0;
    height:0;
    border-top:14px solid transparent;
    border-bottom:14px solid transparent;
    border-left:14px solid var(--primary);
    z-index:5;
    filter:drop-shadow(0 0 8px rgba(26,183,255,.6));
}

.consulting-card:last-child .consulting-arrow{
    display:none;
}
section.consulting-section {
    padding: 40px 0;
    background: radial-gradient(circle at top center,rgba(0,110,255,.25),transparent 45%),linear-gradient(    180deg,    #06172f 0%,#031120 40%,#020b16 100%);
}
.supply-feature-section{
    background:#071a2d;
    border-top:2px solid #0f3454;
    border-bottom:2px solid #0f3454;
    padding:18px 0;
}

.supply-feature-heading{
    color:#16a6ff;
    text-align:center;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:.6px;
    margin-bottom:18px;
    font-size:20px;
}

.supply-feature-heading span{
    color:#fff;
    font-weight:600;
}

.supply-feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    height:100%;
    color:#fff;
}

.supply-feature-icon{
    flex-shrink:0;
}

.supply-feature-icon img{
    width:50px;
    height:50px;
    object-fit:contain;
    display:block;
}

.supply-feature-content h5{
    margin:0;
    font-size:15px;
    text-transform:uppercase;
    font-weight:700;
}

.supply-feature-content p{
    margin:3px 0 0;
    color:#bfc8d3;
    font-size:13px;
}

/* Rashmi's Css */
/* ============================================
   ABOUT HERO SECTION
============================================ */
.about-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .25), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-hero-content h5 {
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

.about-hero-content p {
    color: #ffffff;
    font-size: 16px;
    width: 600px;
    margin-bottom: 10px;
}

/* ============================================
   MISSION & VISION SECTION
============================================ */
.mission-vision-section {
    padding: 60px 0;
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .15), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
    border-bottom: 1px solid rgba(0, 153, 255, .2);
}

.mission-box,
.vision-box {
    background: rgba(0, 15, 35, .95);
    border: 1px solid rgba(0, 162, 255, .3);
    border-radius: 12px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 162, 255, .15);
}

.mission-box::after,
.vision-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.05;
    pointer-events: none;
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    background: rgba(17, 129, 243, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    padding: 12px;
}

.mission-icon img,
.vision-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.mission-box:hover .mission-icon img,
.vision-box:hover .vision-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(17, 129, 243, 0.5));
}

.mission-box h3,
.vision-box h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.mission-box p,
.vision-box p {
    color: #c7d2e0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

/* ============================================
   WHY NANOTEL SECTION
============================================ */
.why-nanotel-section {
    padding: 60px 0;
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .25), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
}

.section-header h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary);
}

.why-card {
    background: rgba(0, 15, 35, .9);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 162, 255, .4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

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

.why-icon {
    width: 55px;
    height: 55px;
    background: rgba(17, 129, 243, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.why-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(17, 129, 243, 0.5));
    transform: scale(1.1);
}

.why-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    min-height: 44px;
}

.why-card p {
    color: #c7d2e0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   INDUSTRIES WE SERVE SECTION
============================================ */
.industries-serve-section {
    padding: 60px 0;
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .15), transparent 45%), 
                linear-gradient(180deg, #020b16 0%, #031120 40%, #06172f 100%);
    border-top: 1px solid rgba(0, 153, 255, .15);
    border-bottom: 1px solid rgba(0, 153, 255, .15);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.industry-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-industry-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 15, 35, .7);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    color: #fff;
    transition: all 0.4s ease;
    cursor: default;
}

.about-industry-item:hover {
    background: rgba(17, 129, 243, 0.1);
    border-color: rgba(0, 162, 255, .3);
    transform: translateX(5px);
}

.industry-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.about-industry-item:hover .industry-icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(17, 129, 243, 0.4));
    transform: scale(1.1);
}

.about-industry-item span {
    font-size: 14px;
    font-weight: 500;
    color: #e6edf5;
}
/* ============================================
   GLOBAL REACH SECTION
============================================ */
.global-reach-section {
    position: relative;
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .2), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 60px 0;
    background-attachment: fixed;
}

.global-reach-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 11, 22, 0.75);
    z-index: 1;
}

.global-reach-section .container {
    position: relative;
    z-index: 2;
}

.global-content h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.global-content h2 span {
    color: var(--primary);
}
.global-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    justify-content: space-between;
    align-items: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: 'Roboto Condensed', sans-serif;
}

.stat-label {
    color: #c7d2e0;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.global-tagline {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    padding-left: 20px;
}
.tagline-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
/* Responsive */
@media (max-width: 991px) {
    .global-reach-section {
        padding: 60px 0;
    }
    
    .global-content h2 {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
/* ============================================
   HEADQUARTERS SECTION
============================================ */
.headquarters-section {
    padding: 60px 0 60px;
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .15), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
}

.hq-card {
    background: rgba(0, 15, 35, .95);
    border: 1px solid rgba(0, 162, 255, .25);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hq-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.03;
    pointer-events: none;
}

.hq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(17, 129, 243, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.hq-badge i {
    color: var(--primary);
    font-size: 14px;
}

.hq-badge span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hq-card h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hq-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c7d2e0;
    font-size: 15px;
}

.contact-item i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #c7d2e0;
}

.hq-logo {
    text-align: right;
}

.hq-logo img {
    max-width: 200px;
    height: auto;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 991px) {
    .about-hero-content h2 {
        font-size: 36px;
    }
    
    .about-hero-content p {
        font-size: 18px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hq-contact {
        grid-template-columns: 1fr;
    }
    
    .hq-logo {
        text-align: left;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .about-hero-content h2 {
        font-size: 28px;
    }
    
    .mission-box,
    .vision-box {
        padding: 25px 20px;
    }
    
    .global-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .industry-item {
        padding: 12px 15px;
    }
    
    .hq-card {
        padding: 25px 20px;
    }
    
    .hq-card h3 {
        font-size: 22px;
    }
    
    .why-card h4 {
        min-height: auto;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}
	/* ============================================
   FEATURED EXPERTISE SECTION
============================================ */
.featured-expertise-section {
    padding: 60px 0;
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .2), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
    border-bottom: 1px solid rgba(0, 153, 255, .15);
}

.about-expertise-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: default;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, .08);
}

.about-expertise-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 162, 255, .5);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .4);
}

.about-expertise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(2, 11, 22, 0.2) 0%,
        rgba(2, 11, 22, 0.7) 60%,
        rgba(2, 11, 22, 0.9) 100%
    );
    transition: all 0.4s ease;
}

.about-expertise-card:hover .about-expertise-overlay {
    background: linear-gradient(180deg, 
        rgba(2, 11, 22, 0.1) 0%,
        rgba(17, 129, 243, 0.3) 60%,
        rgba(2, 11, 22, 0.8) 100%
    );
}

.about-expertise-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 2;
}

.about-expertise-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.about-expertise-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    transition: all 0.4s ease;
}

.about-expertise-card:hover .about-expertise-content h4::after {
    width: 60px;
    box-shadow: 0 0 20px rgba(17, 129, 243, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .about-expertise-card {
        height: 220px;
    }
    
    .about-expertise-content h4 {
        font-size: 16px;
    }
}
/* Feasibility Studies Wrapper */
.feasibility-studies-wrapper {
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .25), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
    padding: 60px 0;
}

/* The Main 3 Boxes */
.feasibility-card {
    background: rgba(0, 15, 35, .95);
    border: 1px solid rgba(0, 162, 255, .3);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}
.feasibility-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 162, 255, .15);
}

/* Card Header Titles */
.feasibility-card-title {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* List Styling inside the card */
.feasibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feasibility-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.feasibility-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feasibility-list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    object-fit: contain;
    /* Reuses your global white icon filter */
    filter: brightness(0) invert(1); 
}

.feasibility-list-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}
	
	/* Dashboard Section Wrapper */
.dashboard-section {
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .25), transparent 45%), 
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 153, 255, .2);
    border-bottom: 1px solid rgba(0, 153, 255, .2);
}

/* Dashboard Card Container */
.dash-card {
    background: rgba(0, 15, 35, .95);
    border: 1px solid rgba(0, 162, 255, .3);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%; /* Ensures all 3 columns stretch to equal height */
    transition: all 0.3s ease;
}
.dash-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 162, 255, .15);
}

/* Dashboard Headings */
.dash-heading {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    letter-spacing: 0.5px;
}

/* Dashboard Description (For Technical Due Diligence) */
.dash-desc {
    color: #c7d2e0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Dashboard Unordered List */
.dash-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dash-list-item {
    display: flex;
    align-items: flex-start; /* Aligns perfectly if text wraps to 2 lines */
    gap: 14px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.dash-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Icon Wrapper */
.dash-list-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Image (for Who We Support & Types of Projects) */
.dash-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Keeps icons crisp white */
}

/* Checkmark Icon (for Technical Due Diligence list) */
.dash-check-icon {
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
}

.dash-list-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}
	
	/* Custom 5-column width for large screens (20% width each) */
@media (min-width: 992px) {
    .col-lg-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Readiness Section Background */
.readiness-section {
    background: radial-gradient(circle at top center, rgba(0, 110, 255, .25), transparent 45%),
                linear-gradient(180deg, #06172f 0%, #031120 40%, #020b16 100%);
    padding: 60px 0;
}

/* Readiness Header (Main Title & Subtitle) */
.readiness-header {
    text-align: center;
    margin-bottom: 40px;
}

.readiness-main-title {
    color: var(--primary);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.readiness-main-desc {
    color: #ffffff;
    font-size: 18px;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Outer Bordered Box */
.readiness-wrapper {
    background: rgba(0, 15, 35, .85);
    border: 1px solid rgba(0, 162, 255, .3);
    border-radius: 12px;
    padding: 30px 0;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, .4);
    transition: all 0.3s ease;
}
.readiness-wrapper:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 162, 255, .15);
}

/* Individual Readiness Column */
.readiness-item {
    padding: 20px 25px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.readiness-item:hover {
    transform: translateY(-5px);
}

/* Vertical Divider Lines between items */
.readiness-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .08);
}

/* Icon Styling */
.readiness-icon-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.readiness-icon-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* Trick to turn white icons into exactly your primary blue color */
    filter: brightness(0) saturate(100%) invert(43%) sepia(98%) saturate(1974%) hue-rotate(185deg) brightness(102%) contrast(101%);
    transition: all 0.3s ease;
}

.readiness-item:hover .readiness-icon-img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(43%) sepia(98%) saturate(1974%) hue-rotate(185deg) brightness(102%) contrast(101%) drop-shadow(0 0 10px rgba(17, 129, 243, 0.6));
}

/* Text Styling */
.readiness-title {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Roboto Condensed', sans-serif;
}

.readiness-desc {
    color: #c7d2e0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .readiness-item::after { display: none; }
    .readiness-item { 
        border-bottom: 1px solid rgba(255,255,255,.08); 
        padding: 30px 20px; 
    }
    .readiness-item:last-child { border-bottom: none; }
    .readiness-main-title { font-size: 28px; }
}
	/* Global Experience Section Wrapper */
.global-insight-section {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
}

/* Dark Overlay for Background Image */
.global-insight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 22, 0.70); /* Dark overlay to make text pop */
    z-index: 1;
    pointer-events: none;
}

/* Header Text (placed above overlay) */
.global-insight-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}
.global-insight-header h2 {
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 15px;
}
.global-insight-header p {
    color: #fff;
    font-size: 18px;
    max-width: 650px;
    margin: 0;
}

/* Map Wrapper - Now only acts as a flex container for the bottom items */
.global-insight-map-wrapper {
    position: relative;
    z-index: 2;
    min-height: 280px; /* Adjust this height depending on your map graphic */
    display: flex;
    align-items: flex-end; 
    padding-bottom: 20px;
}

/* Countries Row */
.global-insight-countries {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 20px;
}

.global-insight-country-item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 15px;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
}

/* Vertical Divider between items */
.global-insight-country-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, .25);
}

/* Mobile Responsive */
@media(max-width: 1024px){
	.industry-item{
		width: 30%;
	}
	.service-box{
		flex-direction: column;
	}
}
@media (max-width: 991px) {
    .global-insight-map-wrapper { min-height: 150px; }
    .global-insight-country-item {
        flex: 0 0 50%; /* 2 items per row on tablets */
        padding: 12px 0;
    }
    .global-insight-country-item::after { display: none; }
    .global-insight-country-item { border-bottom: 1px solid rgba(255,255,255,.1); }
    .global-insight-country-item:nth-last-child(-n+2) { border-bottom: none; }
.hero-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
	
}
@media(max-width: 767px){
	.footer-details {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer-details li:not(:last-child){
		border-right: none;
	}
	.service-box::after{
		display: none;
	}
	.industry-item {
		width: 45%;
	}
	.industries-title{
		font-size: 28px;
	}
	.hero-btns {
		display: flex;
		gap: 15px;
		flex-direction: column;
		align-items: flex-start;
	}
	a.btn-outline-custom.download {
    width: auto;
}
	a.btn-primary-custom,
	.btn-outline-custom{
		padding: 6px 25px;
	}
	.hero-content p{
		margin-bottom: 16px;
	}
	.project-box img {
		width: 14%;
	}
	section.projects,
	.section1,
	.ct-contact-split-section,
	.ct-conversation-section,
	.featured-expertise-section,
	.mission-vision-section,
	.why-nanotel-section,
	.industries-serve-section,
	.headquarters-section,
	.feasibility-studies-wrapper,
	.dashboard-section,
	.readiness-section{
		padding: 30px 0 !important;
	}
	.about-expertise-card {
        height: 200px;
    }
    .global-reach-section {
        padding: 30px 0;
    }
    
    .global-content h2 {
        font-size: 30px;
    }
    
    .global-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .global-tagline {
        font-size: 16px;
    }
    .about-expertise-content {
        padding: 20px;
    }
	.about-hero-content p{
		width: auto;
		font-size: 16px;
	}
    .about-expertise-content h4 {
        font-size: 14px;
    }
	.consulting-grid {
		flex-direction: column;
	}
	.consulting-card h4{
		min-height: auto;
	}
	.consulting-icon{
		margin-bottom: 0;
	}
	.readiness-item{
		padding: 10px 20px;
	}
}
@media (max-width: 568px) {
    .global-insight-header h2 { font-size: 26px; }
	.hero-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    width: 97%;
}
	.expertise-card{
		width: auto;
	}
	footer{	
		padding-top: 25px;
	}
	.about-hero-content h2 {
        font-size: 24px;
    }
    
    .global-stats {
        flex-direction: column;
        gap: 15px;
		align-items: flex-start;
    }
}
@media (max-width: 479px){
	.industry-item{
		width: 100%;
	}
	.industries-menu {
		flex-direction: column;
	}
	.hero-content h2{
		font-size: 22px;
	}
	.hero-content h5{
		font-size: 18px;
	}
	.hero-content p {
		margin-bottom: 16px;
		font-size: 14px;
	}
	.readiness-wrapper{
		padding: 0;
	}
}
@media(max-width: 414px){
	.hero-content p{
		display: none;
	}
	.supply-feature-section .col-6{
		width: 100%;
	}
	.ct-hero-wrapper .left-contact h1{
		font-size: 28px !important;
	}
}