:root {

    /* Primary Brand Color */
    --primary-color: #2FA84F;
    /* PCB Green */

    /* Secondary Brand Color */
    --secondary-color: #0B2A3C;
    /* Deep Tech Navy */

    /* Accent Colors */
    --accent-color: #1FA3C6;
    /* Cyan Blue Reflection */
    --highlight-color: #6FEA7C;
    /* Light Signal Green */

    /* Neutral Colors */
    --text-light: #F4F7FA;
    /* Soft White */
    --text-dark: #0B2A3C;

    /* Backgrounds */
    --bg-dark: #071C29;
    --bg-main: #0B2A3C;

    /* Optional glow effects */
    --signal-glow: rgba(111, 234, 124, 0.4);
    --cyan-glow: rgba(31, 163, 198, 0.35);

}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Lato", sans-serif;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

button,
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
    transition: all 0.2s ease 0s;
}


a {
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease 0s;
    font-weight: 600;
    color:var(--primary-color);
}
a:hover{
color:var( --secondary-color);
}



fieldset {
    border: none;
    padding: 0px;
}


ol,
ul,
li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 120%;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 120%;
}

h3 {
    font-size: 28px;
    line-height: 120%;
	font-weight: 500;
}

h4 {
    font-size: 24px;
    line-height: 120%;
	font-weight: 500;
}

h5 {
    font-size: 20px;
    line-height: 120%;
	font-weight: 500;
}

p {
    font-size: 18px;
    line-height: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: var(--bg-dark);
}

img {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

.sec-padding {
    padding: 60px 0;
}

.hero-sec {
    min-height: 100vh;
    width: 100%;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at 80% 20%, rgba(31, 163, 198, 0.25), transparent 40%),
        linear-gradient(135deg, #0B2A3C 0%, #071C29 100%);

    color: #F4F7FA;
    overflow: hidden;
}

.hero-sec h1 {
    color: #fff;
}

.hero-sec p {
    color: #fff;
}

.hero-image {
    min-height: 420px;
    border-radius: 20px;
}

.hero-image img {
    border-radius: 20px;
    height: 420px;
    animation: slideInRight 1.2s ease-out forwards;
}

@keyframes slideInRight {
    0% {
        transform: translateX(120px);
        opacity: 0;
    }

    60% {
        transform: translateX(-10px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
}

.flx-row {
    display: flex;
}

.flx-column {
    display: flex;
    flex-direction: column;
}

.jstfy-cent {
    justify-content: center;
}

.jstfy-start {
    justify-content: start;
}

.jstfy-space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.half-box {
    width: 100%;
    max-width: 49%;
}

.align-strch {
    align-items: stretch;
}

.mt-40 {
    margin-top: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}
.mb-20 {
    margin-bottom: 40px;
}
.logo {
    width: 100%;
    max-width: 110px;
}

.site-header {
    position: fixed;
    background-color: #fff;
    z-index: 9;
    width: 100%;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.header-links ul {
    display: flex;
    gap: 40px;
}

.header-links ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header-links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.header-links ul li a:hover {
    color: var(--primary-color);
}

.header-links ul li a:hover::after {
    width: 100%;
}

.site-btn {
    display: inline-block;
    padding: 12px 28px;
    color: var(--text-light);
    background: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* light sweep effect */
.site-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: all 0.6s ease;
}
.menu-toggle {
    display: none;
}
/* hover */
.site-btn:hover {
    background: var(--highlight-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(47, 168, 79, 0.35);
}

/* sweep animation */
.site-btn:hover::before {
    left: 120%;
}

.single-spec img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    margin: 0 auto;
}


.our-specs-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* card style */
.single-spec {
    text-align: center;
    padding: 30px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10),
        0 6px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

/* top accent line */
.single-spec::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 18px;
    border-radius: 3px;
}

/* 2nd & 4th cards */
.single-spec:nth-child(2),
.single-spec:nth-child(4) {
    background: var(--primary-color);
    color: #fff;
}

/* make their accent line white */
.single-spec:nth-child(2)::before,
.single-spec:nth-child(4)::before {
    background: #fff;
}

/* hover effect */
.single-spec:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.our-specs {
    padding-bottom: 120px;
}

.single-spec:nth-child(even) h5,
.single-spec:nth-child(even) p {
    color: #ffff;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    margin-bottom: 15px;
    color: #fff;
}

.section-heading p {
    color: #fff;
}

.section-heading p {
    opacity: 0.8;
}


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


/* card */
.industry-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;

    position: relative;
    overflow: hidden;
}


/* tech accent line */
.industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}


/* icon */
.industry-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    margin-bottom: 18px;
}

.industry-card h5 {
    font-size: 12px;
}

/* hover */
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industries-sec {
    background: radial-gradient(circle at 80% 20%, rgba(31, 163, 198, 0.25), transparent 40%),
        linear-gradient(135deg, #0B2A3C 0%, #071C29 100%);
    color: #F4F7FA;
    overflow: hidden;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* card */
.service-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.05);
}

/* image */
.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


/* overlay (hidden initially) */
.service-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;

    background: #fff;

    color: #fff;

    transform: translateY(60%);
    transition: all 0.4s ease;
}


/* text spacing */
.service-overlay h5 {
    margin-bottom: 8px;
}

.service-overlay p {
    font-size: 14px;
    opacity: 0.9;
}


/* hover effects */
.service-card:hover img {
    transform: scale(1.08);
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}


/* subtle glow line */
.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}


/* wrapper */
.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}


/* map */
.map-box {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* content */
.map-content h5 {
    margin-bottom: 15px;
}

.map-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}


/* SECTION BACKGROUND */
.portfolio-sec {
    background: radial-gradient(circle at 80% 20%, rgba(31, 163, 198, 0.25), transparent 40%),
                linear-gradient(135deg, #0B2A3C 0%, #071C29 100%);
    color: #F4F7FA;
    overflow: hidden;
}


/* HEADING */
.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    margin-bottom: 15px;
}

.section-heading p {
    opacity: 0.8;
}


/* CARD */
.portfolio-card {
    position: relative;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);

    border-radius: 16px;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 20px 40px rgba(0,0,0,0.25);

    transition: all 0.4s ease;
}


/* IMAGE */
.portfolio-img img {
    width: 100%;
    height:auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}


/* CONTENT */
.portfolio-content {
    padding: 20px;
}

.portfolio-content h5 {
    margin-bottom: 10px;
    color: #F4F7FA;
    transition: 0.3s;
    min-height: 50px;
}

.portfolio-content p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
    color: #fff;
}


/* HOVER EFFECT */
.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);

    box-shadow: 
        0 30px 70px rgba(0,0,0,0.45),
        0 0 25px rgba(47,168,79,0.25);

    border-color: rgba(111,234,124,0.4);
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card:hover h5 {
    color: var(--highlight-color);
}


/* GLOW LINE */
.portfolio-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );

    opacity: 0;
    transition: 0.4s;
}

.portfolio-card:hover::after {
    opacity: 1;
}

/* make owl items stretch */
.portfolio-slider .owl-stage {
    display: flex;
}

.portfolio-slider .owl-item {
    display: flex;
    height: auto;
}

/* card full height */
.portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* content takes remaining space */
.portfolio-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* push text nicely */
.portfolio-content p {
    flex-grow: 1;
}
/* OWL NAVIGATION */
.portfolio-slider .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
}


/* NAV BUTTONS */
.portfolio-slider .owl-nav button {
    width: 50px;
    height: 50px;

    border-radius: 12px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.1);

    color: #fff;
    font-size: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.35s ease;
}


/* NAV HOVER */
.portfolio-slider .owl-nav button:hover {
    transform: translateY(-4px);

    background: var(--primary-color);

    box-shadow: 
        0 10px 25px rgba(47,168,79,0.35),
        0 0 15px rgba(111,234,124,0.4);

    color: #fff;
}


/* ARROW ICON FIX */
.portfolio-slider .owl-nav button span {
    font-size: 35px;
    line-height: 1;
}


/* FOOTER BASE */
.site-footer{
    background: linear-gradient(135deg, #071C29 0%, #0B2A3C 100%);
    color: #F4F7FA;
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}


/* subtle glow effect */
.site-footer::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:300px;
    height:300px;
    background: radial-gradient(circle, rgba(47,168,79,0.2), transparent 70%);
}


/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap:40px;
}


/* LOGO */
.footer-logo{
    width:160px;
    margin-bottom:20px;
}


/* TEXT */
.footer-about p{
    opacity:0.75;
    line-height:1.7;
    color: #fff;
}


/* HEADINGS */
.footer-col h5{
    margin-bottom:18px;
    position:relative;
    color: #fff;
}

/* underline accent */
.footer-col h5::after{
    content:"";
    display:block;
    width:30px;
    height:2px;
    background: var(--primary-color);
    margin-top:8px;
}


/* LINKS */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:#F4F7FA;
    opacity:0.7;
    text-decoration:none;
    transition:all 0.3s ease;
}


/* hover */
.footer-col ul li a:hover{
    opacity:1;
    color: var(--highlight-color);
    padding-left:6px;
}


/* social list */
.footer-social{
    list-style:none;
    padding:0;
}

.footer-social li{
    margin-bottom:12px;
}


/* link */
.footer-social a{
    display:flex;
    align-items:center;
    gap:12px;

    padding:10px 14px;

    background: rgba(255,255,255,0.05);
    border-radius:8px;

    color:#F4F7FA;
    text-decoration:none;

    border:1px solid rgba(255,255,255,0.08);

    transition: all 0.3s ease;
}


/* icon */
.footer-social .icon{
    width:32px;
    height:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:6px;

    background: rgba(255,255,255,0.1);

    font-size:14px;
    text-transform:uppercase;
}


/* hover */
.footer-social a:hover{
    background: var(--primary-color);
    transform: translateX(6px);

    box-shadow: 0 10px 25px rgba(47,168,79,0.3);
}

.footer-social a:hover .icon{
    background: rgba(255,255,255,0.2);
}


/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    opacity:0.6;
    font-size:14px;
    color: #fff;
}

button:focus,button:hover,.ast-button:hover,.ast-custom-button:hover .button:hover,.ast-custom-button:hover ,input[type=reset]:hover,input[type=reset]:focus,input#submit:hover,input#submit:focus,input[type="button"]:hover,input[type="button"]:focus,input[type="submit"]:hover,input[type="submit"]:focus,form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,body .wp-block-file .wp-block-file__button:hover,body .wp-block-file .wp-block-file__button:focus {
    color: #ffffff;
    background-color: var( --primary-color);
    border-color: var(--secondary-colo);
}

.menu-toggle{
	background:none !important;
	color:#2FA84F !important
}
#ast-scroll-top{
	  background-color: var( --primary-color) !important;
}


/* SECTION */
.contact-sec {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-main));
   padding: 180px 20px 100px 20px;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.contact-container {
    position: relative;
    max-width: 900px;
    width: 100%;
}

/* RIGHT FORM CARD */
.contact-right {
    background: #fff;
    border-radius: 12px;
    padding: 50px 40px 40px 260px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* LEFT FLOAT CARD */
.contact-left {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 300px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-left h2 {
    margin-bottom: 20px;
	color:#fff;
}

.contact-left p {
    font-size: 14px;
    margin-bottom: 20px;
	color:#fff;
}

/* INFO BOX */
.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.info-box i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* FORM */
.contact-form h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    font-size: 13px;
    color: #777;
    transition: 0.3s;
    pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -8px;
    font-size: 11px;
    color: var(--primary-color);
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.site-btn{
	    display: inline-block;
    padding: 12px 28px;
    color: var(--text-light);
    background: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.site-btn:hover{
	background: var(--highlight-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(47, 168, 79, 0.35);

}
footer a.custom-logo-link img {
    width: 110px !important;
    height: 76px !important;
    margin-bottom: 20px;
}
footer a.custom-logo-link{
	width:fit-content !important;
	max-width:fit-content !important;
}
header.entry-header.ast-blog-single-element.ast-blog-meta-container {
    display: none;
}

.service-header {
    position: relative;
  background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
	height:100dvh;
	display: flex;
    justify-content: center;
    align-items: center;
}

.service-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(31, 163, 198, 0.25), transparent 40%), 
        linear-gradient(135deg, #0B2A3C 0%, #071C29 100%);
    z-index: 1;
	opacity: .8;
}

.service-header > * {
    position: relative;
    z-index: 2;
}
.service-header h1{
	color:#ffff;
	text-align:center;
}

.feature-image img{
	height:auto;
}

.service-content-wrapper ul li {
    list-style: circle;
    margin-bottom: 10px;
}
.service-specs h2,.service-specs p{
color: #F4F7FA;
}
.service-specs{
	background: radial-gradient(circle at 80% 20%, rgba(31, 163, 198, 0.25), transparent 40%), linear-gradient(135deg, #0B2A3C 0%, #071C29 100%);
	    color: #F4F7FA;
    overflow: hidden;
}


.footer-col ul li a{
font-size:16px;}


/* =========================
   BASE
========================= */
.nb-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  padding:70px 0;
  font-family: "Inter", sans-serif;
  color:var(--text-dark);
}

/* =========================
   GRID
========================= */
.nb-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* =========================
   ABOUT SECTION
========================= */
.nb-about{
  background:var(--text-light);
}

.nb-highlight-card{
  background:var(--bg-dark);
  color:var(--text-light);
  padding:25px;
  border-radius:14px;
  box-shadow:0 0 30px var(--signal-glow);
}

.nb-highlight-card h3{
  color:var(--highlight-color);
}

.nb-highlight-card ul{
  margin-top:40px;
}

/* =========================
   PHILOSOPHY
========================= */
.nb-philosophy{
  background:var(--bg-main);
  color:var(--text-light);
  text-align:center;
}

.nb-philo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:40px;
}

.nb-philo-box{
  background:rgba(255,255,255,0.05);
  padding:25px;
  border-radius:12px;
  border:1px solid rgba(111,234,124,0.15);
  transition:0.3s;
}

.nb-philo-box:hover{
  transform:translateY(-5px);
  box-shadow:0 0 25px var(--cyan-glow);
}

.nb-philo-box h4{
  color:var(--highlight-color);
}

/* =========================
   DELIVER
========================= */
.nb-deliver{
  background:var(--text-light);
  text-align:center;
}

.nb-deliver-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}

.nb-deliver-item{
  background:#fff;
  padding:18px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  border-left:4px solid var(--primary-color);
  font-weight:500;
}

/* =========================
   WHY US
========================= */
.nb-why-us{
  background:var(--bg-dark);
  color:var(--text-light);
}

.nb-stat{
  margin-bottom:20px;
  padding:15px;
  border-left:3px solid var(--accent-color);
}

/* =========================
   CTA
========================= */
.nb-collab{
  text-align:center;
}
.nb-why-us h2,.nb-why-us p,.nb-why-us h3{
	color:#fff;
}
.nb-philosophy h2{
	color:#fff;
}
.nb-collab p,.nb-about p{
color:var(--secondary-color);
}

.nb-philosophy p{
	color:#fff;
	margin-top:20px;
}
/* =========================
   CEO SECTION
========================= */
.nb-ceo{
  padding: 80px 0;
}

.nb-ceo-wrapper{
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.nb-ceo-image img{
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 2px solid rgba(111,234,124,0.2);
}

/* CONTENT */


.nb-ceo-intro{
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

/* LIST */
.nb-ceo-list{
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.nb-ceo-list li{
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  opacity: 0.85;
}

.nb-ceo-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--signal-glow);
}

/* DESCRIPTION */
.nb-ceo-desc{
  margin-top: 15px;
  opacity: 0.85;
}

/* SIGNATURE */

.nb-ceo-sign strong{
  display: block;
  font-size: 18px;
  color: #fff;
}

.nb-ceo-sign span{
  font-size: 14px;
  opacity: 0.7;
}

