*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--color-blue: #2E3192;
	--color-green: #7EBD42;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Montserrat", sans-serif;
	color: #222;
	background: #fff;
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	display: block;
	max-width: 100%;
	height: auto; 
}
p {
	margin: 0;
}
p:not(:last-child) {
	margin-bottom: 1.2rem;
}
#masthead, .site-header, .navbar {
	background-color: #fff;
	box-shadow: 0 1px 0 #e0e0e0;
	position: sticky;
	top: 0;
	z-index: 999;
}
.site-logo {
	display: flex;
	align-items: center;
	gap: 8px;
}
.site-logo img {
	width: 200px;
	object-fit: contain;
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	padding: 23px 0;
}
.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px;
}
/* ── Logo ── */
.site-branding, .nav-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}
.nav-logo-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}
.site-title, .nav-logo-text {
	font-size: 26px;
	letter-spacing: -0.5px;
	line-height: 1;
	font-weight: 400;
	color: #333;
	/* disable WP default link styles */
	text-decoration: none !important;
}
.nav-logo-text .jk, .site-title .jk {
	font-weight: 900;
	color: #2b3990;
	font-style: italic;
}
.nav-logo-text .ement, .site-title .ement {
	font-weight: 300;
	color: #555;
}
#site-navigation, .nav-menu-wrap {
	display: flex;
	align-items: center;
}
ul.sub-menu {
	display: none;
}
#primary-menu, .primary-menu, .nav-links {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}
#primary-menu > li > a, .primary-menu > li > a, .nav-links > li > a {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-blue);
	transition: color .2s;
	white-space: nowrap;
	font-family: "Poppins", sans-serif;
	text-transform: capitalize;
}
#primary-menu > li > a:hover, .primary-menu > li > a:hover, .nav-links > li > a:hover {
	color: var(--color-green);
}
/* Contact button – last menu item */
#primary-menu > li:last-child > a, .primary-menu > li:last-child > a, .nav-links > li:last-child > a, .nav-links .contact-btn {
	border: 2px solid var(--color-blue);
	padding: 7px 22px;
	color: var(--color-blue);
	font-weight: 400;
	transition: all .2s;
	font-family: "Poppins", sans-serif;
	text-transform: none;
}
#primary-menu > li:last-child > a:hover, .primary-menu > li:last-child > a:hover, .nav-links > li:last-child > a:hover, .nav-links .contact-btn:hover {
	border-color: var(--color-green);
	color: var(--color-green);
}
#primary-menu > li.current-menu-item > a, .primary-menu > li.current-menu-item > a {
	color: var(--color-green);
}
/* ── Hamburger button ── */
.menu-toggle, .hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	z-index: 1001;
}
.menu-toggle span, .hamburger span {
	display: block;
	height: 3px;
	border-radius: 2px;
	background-color: var(--color-blue);
	transition: all 0.3s ease;
	transform-origin: center;
	pointer-events: none;
}
.menu-toggle.is-active span:nth-child(1), .hamburger.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2), .hamburger.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.menu-toggle.is-active span:nth-child(3), .hamburger.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile overlay ── */
.mobile-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.3s;
}
.mobile-overlay.open {
	opacity: 1;
}
/* ── Mobile drawer ── */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(320px, 85vw);
	height: 100vh;
	background-color: #fff;
	z-index: 1000;
	padding: 80px 28px 40px;
	box-shadow: -4px 0 30px rgba(0,0,0,0.15);
	transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}
.mobile-drawer.open {
	right: 0;
}

/* WP also places menu inside .mobile-drawer */
.mobile-drawer #primary-menu-mobile, .mobile-drawer .primary-menu-mobile, .mobile-drawer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.mobile-drawer li a {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-blue);
	padding: 16px 0;
	border-bottom: 1px solid #eee;
	transition: color .2s;
}
.mobile-drawer li a:hover {
	color: var(--color-green);
}
.mobile-drawer li:last-child a {
	margin-top: 24px;
	border: 2px solid #2b3990;
	padding: 12px 24px;
	color: #2b3990;
	text-align: center;
	font-weight: 800;
	border-bottom: 2px solid #2b3990;
	transition: all .2s;
}
.mobile-drawer li:last-child a:hover {
	background: #2b3990;
	color: #fff;
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.container-big {
    width: 100%;
    padding: 0 75px;
}
.hero {
	width: 100%;
	position: relative;
}
.hero-bg {
	width: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
	height: 100dvh;
}
.hero-content-wrap {
	width: 100%;
}
.hero-textbox {
    background-color: #fff;
    padding: 19px 32px 23px;
    max-width: 50%;
}
.hero-textbox h1 {
	font-size: 50px;
	font-weight: 700;
	color: var(--color-blue);
	margin-bottom: 8px;
}
.hero-content {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: var(--color-blue);
}
.hero-content strong {
	color: var(--color-green);
}
/* Social sidebar – right edge */
.hero-social {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	z-index: 2;
}
.hero-social a {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: opacity .2s;
}
.hero-social a:hover { opacity: .8; }
.hs-li { background: var(--color-blue); }
.hs-ig { background: var(--color-blue); }
.hs-fb { background: var(--color-blue); }
.hero-social a.hs-li {
    border-radius: 10px 0 0 0;
}
.hero-social a.hs-fb {
    border-radius: 0 0 0 10px;
}
.hero-social a:not(:last-child) {
    border-bottom: 1px solid #fff;
}
/* ─────────────────────────────────────
   TABS STRIP (sits below hero, above path)
───────────────────────────────────── */
.tabs-wrap {
	display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.navigations {
    position: absolute;
    width: 100%;
    left: 0;
    background: url('/wp-content/uploads/2026/04/bg-hero.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    padding: 142px 0 40px;
    bottom: 0;
}
.tab-col {
    cursor: pointer;
	flex: 1;
	padding: 10px 10px 0;
}
.tab-bar {
    display: block;
    height: 1px;
    background-color: #080F00;
    margin-top: 12px;
}
.tab-col:hover .tab-label {
	color: var(--color-blue);
}
.tab-col:hover .tab-bar {
	background-color: var(--color-green);
}
.tab-label {
	font-family: "Poppins", sans-serif;
	display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #080F00;
    line-height: 1.5;
}
.tab-col.active .tab-label {
	color: var(--color-blue);
}
.tab-col.active .tab-bar {
	background-color: var(--color-green);
}

/* ─────────────────────────────────────
   PATH TO SUSTAINABLE CONSTRUCTION
───────────────────────────────────── */
.path-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.path-img-wrap {
	position: relative;
	overflow: hidden;
	min-height: 480px;
}
.path-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.path-text-wrap {
	padding: 68px 80px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.path-text-wrap h2 {
	font-size: 40px;
	font-weight: 600;
	color: #1E1E1E;
	margin-bottom: 36px;
}
.path-text-wrap h2 span {
	display: block;
	font-weight: 700;
}
.path-desc {
    font-size: 18px;
    color: #3D3D3D;
    line-height: 26px;
    margin-bottom: 36px;
    font-weight: 400;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}
.stat-num {
    font-size: 34px;
    font-weight: 600;
    color: #1E1E1E;
}
.stat-lbl {
    font-size: 20px;
    font-weight: 600;
    color: #1E1E1E;
}

/* ─────────────────────────────────────
   DREAM HOME BANNER
───────────────────────────────────── */
.dream-section {
	position: relative;
	width: 100%;
}
.dream-bg {
    width: 100%;
    background: url('/wp-content/uploads/2026/04/Group-2034.png') center / contain no-repeat;
    min-height: 482px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dream-wrapper {
    background-color: #F1F3F4;
    width: 100%;
    padding: 76px 32px 93px;
}
.dream-content {
	position: relative;
	z-index: 2;
}
.dream-info {
	width: 100%;
	margin-bottom: 37px;
	font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dream-info h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    text-align: center;
}
.consult-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 21px;
    margin: -100px 0 0;
    padding: 0 51px;
}
.c-card {
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: block;
    padding: 9px 11px;
    transition: background-color .5s ease-in;
}
.c-card:hover {
    background-color: var(--color-blue);
}
.c-card-img {
    height: 156px;
    overflow: hidden;
	border-radius: 20px;
}
.c-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-card-body {
	padding: 23px 11px;
}
.c-card-name {
    font-size: 15px;
    line-height: 31px;
    font-weight: 600;
    color: var(--color-blue);
}
.c-card-desc {
    font-size: 12px;
    color: #3D3D3D;
    line-height: 1.4;
}
.c-card:hover .c-card-name, .c-card:hover .c-card-desc {
	color: #fff;
}

/* ─────────────────────────────────────
   PRODUCTS
───────────────────────────────────── */
.products-section {
	padding: 72px 170px 80px 146px;
	background: #fff;
}
.sec-head {
	text-align: center;
}
.sec-title {
	font-size: 36px;
	line-height: 46px;
	font-weight: 600;
	color: #1E1E1E;
}
.sec-title .grn {
	color: var(--color-green);
}
.sec-desc {
	font-size: 20px;
    color: #080F00;
    line-height: 28px;
	max-width: 1150px;
	margin: 10px auto 48px;
	text-align: center;
}
.products-row {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 32px;
}
.prod-item {
	text-align: center;
}
.prod-img-box {
	overflow: hidden;
}
.prod-img-box img {
	width: 100%;
	height: 267px;
	object-fit: cover;
	display: block;
}
.prod-name {
	font-size: 22px;
	line-height: 26px;
	font-weight: 500;
	color: #1E1E1E;
	padding: 10px 0 0;
}
.prod-item:hover .prod-name {
    color: var(--color-green);
}

/* ─────────────────────────────────────
   BUILDING INDIA SINCE 1975
───────────────────────────────────── */
.since-section {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	background-color: #F1F3F4;
}
.since-text {
	padding: 83px 80px 68px 78px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.since-text h3 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 500;
	color: #080F00;
	margin-bottom: 29px;
}
.since-text p {
	font-size: 22px;
    color: #080F00;
    font-weight: 400;
    line-height: 30px;
}
.since-visual {
	position: relative;
	overflow: hidden;
	min-height: 460px;
}
.since-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.since-visual .play-btn {
	z-index: 2;
}

/* ─────────────────────────────────────
   PRESTIGIOUS PROJECTS
───────────────────────────────────── */
.projects-section {
	padding: 84px 60px 66px;
	background-color: #fff;
}
.projects-section .sec-head {
	margin-bottom: 40px;
}
.projects-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
}
.proj-item {
	overflow: hidden;
}
.proj-item img {
	width: 100%;
	object-fit: cover;
	display: block;
}

/* ─────────────────────────────────────
   TESTIMONIALS
   5 video thumbnails on dark blue bg.
   Centre card taller, overlaps top/bottom.
───────────────────────────────────── */
.testi-section {
	background-color: var(--color-blue);
	padding: 36px 103px 106px;
}
.testi-title {
	font-size: 36px;
	line-height: 46px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	margin-bottom: 36px;
}
.testi-row {
	display: flex;
	align-items: center;
	justify-content: center;
}
.tv {
	flex: 1;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.tv img {
	object-fit: cover;
}
.tv.tv-c {
	flex: 1.6;
}
.tv-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/* ─────────────────────────────────────
   GLOBAL PRESENCE
───────────────────────────────────── */
.presence-section {
	padding: 93px 177px 57px 188px;
	background-color: #fff;
}
.presence-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 70px;
	align-items: center;
}
.pres-left h2 {
	font-size: 36px;
	font-weight: 600;
	color: #1E1E1E;
}
.pres-left h2 strong {
	display: block;
	font-size: 60px;
	font-weight: 700;
}
.mkt-heading {
	font-size: 28px;
	font-weight: 600;
	color: var(--color-blue);
	padding: 28px 0;
}
.mkt-list {
	list-style: none;
}
.mkt-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-blue);
	padding: 9px 0;
	cursor: pointer;
}
.mkt-list li:last-child {
	border-bottom: none;
}
.mkt-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--color-blue);
	flex-shrink: 0;
}
.pres-map {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
.pres-map img {
	width: 100%;
}

/* ─────────────────────────────────────
   SUSTAINABILITY
───────────────────────────────────── */
.sustain-section {
	position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: self-end;
    justify-content: center;
}
.sustain-bg {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.sustain-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.24);
}
.sustain-card {
	position: relative;
	z-index: 2;
	background: rgba(255,255,255,0.88);
	padding: 86px 86px 34px 51px;
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 34px;
	max-width: 1240px;
}
.sc-l .badge-text {
	display: block;
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
	color: #1E1E1E;
}
.sc-l h3 {
	font-size: 36px;
	font-weight: 600;
	color: var(--color-blue);
	line-height: 46px;
	margin-bottom: 25px;
}
.btn-rm {
	display: inline-block;
	border: 2px solid var(--color-blue);
	color: #1E1E1E;
	padding: 10px 38px;
	font-size: 16px;
	font-weight: 600;
	transition: all .2s;
}
.btn-rm:hover {
	background-color: var(--color-blue);
	color: #fff;
}
.sc-r p {
	font-size: 20px;
	color: #3D3D3D;
	line-height: 28px;
	margin-bottom: 26px;
}
.sc-stats {
	display: flex;
	gap: 98px;
}
.sc-stat .n {
	font-size: 40px;
	font-weight: 600;
	color: var(--color-green);
}
.sc-stat .l {
	font-size: 14px;
	font-weight: 600;
	color: #1E1E1E;
	text-transform: uppercase;
	line-height: 30px;
}

/* ─────────────────────────────────────
   GET IN TOUCH
───────────────────────────────────── */
.contact-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 54px 106px 25px 178px;
}
.contact-left {
	padding: 40px 80px;
	background-color: #fff;
}
.contact-left h4 {
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
	color: var(--color-blue);
	margin-bottom: 20px;
}
.contact-left .c-addr {
    font-size: 20px;
    color: var(--color-blue);
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 22px;
}
.c-icon-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.c-icon-row:not(:last-child) {
	margin-bottom: 14px;
}
.c-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.c-icon-row a {
    font-size: 18px;
    color: var(--color-blue);
    line-height: 26px;
}
.africa-h {
	margin-top: 36px;
}
.contact-right {
	background-color: #C4C4C4;
	padding: 60px 56px;
}
.contact-right h2 {
	font-size: 36px;
    font-weight: 600;
    color: #232323;
    text-align: center;
    margin-bottom: 29px;
}
.form-2col {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
	margin-bottom: 20px;
}
.f-field input, .f-field textarea {
	width: 100%;
	padding: 14px 22px;
	background-color: #fff;
	border: none;
	outline: none;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: #131313;
	font-weight: 400;
}
.f-field input::placeholder, .f-field textarea::placeholder {
	color: #131313;
}
.f-field textarea {
	resize: vertical;
	min-height: 123px;
	display: block;
}
.f-submit {
	display: block;
	width: 100%;
	background: var(--color-blue);
	color: #fff;
	border: none;
	padding: 14px 22px;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
	transition: background .2s;
	font-family: "Poppins", sans-serif;
}
.f-submit:hover {
	background-color: var(--color-green);
}

/* ─────────────────────────────────────
   QR / FOOTER BAR
───────────────────────────────────── */
.qr-bar {
	background: #F1F3F4;
	padding: 26px 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.qr-left {
	display: flex;
	align-items: center;
	gap: 22px;
}
.qr-box {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.qr-info .qt1 {
	font-size: 22px;
	font-weight: 600;
	color: var(--color-blue);
	line-height: 28px;
}
.qr-info .qt2 {
	font-size: 18px;
	color: var(--color-blue);
	font-weight: 400;
	max-width: 520px;
	line-height: 26px;
	margin-bottom: 10px;
}
.btn-access {
	display: inline-block;
	background-color: var(--color-blue);
	color: #fff;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: 600;
	transition: background .2s;
	line-height: 22px;
}
.btn-access:hover {
	background-color: var(--color-green);
}
.qr-icons {
	display: flex;
	align-items: center;
	gap: 18px;
}
.qr-icons a {
	color: #1a1a2e;
	transition: color .2s;
}
.qr-icons a:hover svg {
	fill: var(--color-green);
}
.qr-icons a:nth-child(2):hover svg {
	stroke: var(--color-green);
	fill: none;
}
/* ─────────────────────────────────────
   FOOTER NAV
───────────────────────────────────── */
.footer-nav-bar {
	background: #F1F3F4;
	border-top: 1.5px solid var(--color-blue);
	padding: 16px 80px;
}

/* WP-friendly: footer widget area or nav menu */
.footer-nav-bar ul, #footer-menu {
	display: flex;
	list-style: none;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.footer-nav-bar ul a, #footer-menu a {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-blue);
	text-transform: uppercase;
	transition: color .2s;
	font-family: "Poppins", sans-serif;
}
.footer-nav-bar ul a:hover, #footer-menu a:hover {
	color: var(--color-green);
}
.footer-copy {
	background: #fff;
	text-align: center;
	font-size: 14px;
	color: #D2C8B7;
	padding: 12px 0;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
}
.play-btn img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

@media (max-width: 1600px) {
	.consult-row {
		padding: 0 30px;
		gap: 10px;
	}
	.hero-textbox {
		max-width: 60%;
	}
	.products-section {
		padding-right: 120px;
		padding-left: 120px;
	}
	.contact-left {
		padding-left: 0;
	}
}
@media (max-width: 1439px) {
	.nav-inner {
		padding: 20px;
	}
	.container-big {
		padding: 0 40px;
	}
	.hero-textbox h1 {
		font-size: 44px;
	}
	.hero-content {
		font-size: 22px;
		line-height: 32px;
	}
	.path-text-wrap {
		padding: 60px;
	}
	.consult-row {
        padding: 0;
	}
	.c-card-body {
		padding: 11px;
	}
	.c-card-img {
		height: auto;
	}
	.products-section, .testi-section, .presence-section, .contact-section {
        padding-right: 80px;
        padding-left: 80px;
    }
	.prod-name {
		font-size: 18px;
		line-height: 24px;
	}
	.since-text {
		padding: 60px 40px;
	}
	.sustain-card {
		max-width: 80%;
	}
	.contact-right {
		padding: 30px;
	}
	.contact-left .c-addr {
		font-size: 16px;
		line-height: 24px;
		margin: 0 0 16px;
	}
	.c-icon-row a {
		font-size: 14px;
		line-height: 24px;
	}
}
@media (max-width: 1239px) {
	.site-logo img {
		width: 160px;
	}
	#primary-menu > li > a, .primary-menu > li > a, .nav-links > li > a {
		font-size: 16px;
	}
	#primary-menu, .primary-menu, .nav-links {
		gap: 20px;
	}
	.hero-textbox h1 {
        font-size: 32px;
    }
	.hero-content {
        font-size: 18px;
        line-height: 28px;
    }
	.tab-label {
		font-size: 12px;
	}
	.tabs-wrap {
		gap: 10px;
	}
	.path-text-wrap, .since-text {
		padding: 30px;
	}
	.path-text-wrap h2 {
		font-size: 30px;
		margin-bottom: 16px;
	}
	.path-desc {
		font-size: 16px;
		margin-bottom: 16px;
	}
	.stat-num {
		font-size: 24px;
	}
	.stat-lbl {
		font-size: 16px;
	}
	.dream-info h2 {
		font-size: 30px;
	}
	.dream-bg {
		background-size: cover;
		border-radius: 30px;
	}
	.dream-info {
		margin-bottom: 16px;
		font-size: 18px;
		line-height: 28px;
	}
	.consult-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	.products-section, .testi-section, .presence-section, .contact-section {
        padding-right: 40px;
        padding-left: 40px;
    }
	.sec-title {
		font-size: 30px;
		line-height: 36px;
	}
	.sec-desc {
		font-size: 18px;
		line-height: 26px;
		max-width: 100%;
	}
	.products-row {
		gap: 16px;
	}
	.since-text h3, .contact-right h2 {
		font-size: 30px;
		line-height: 36px;
	}
	.since-text p {
		font-size: 16px;
		line-height: 26px;
	}
	.projects-section {
		padding: 60px 40px;
	}
	.presence-section, .contact-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.pres-left h2 strong {
		font-size: 50px;
	}
	.sustain-card {
        max-width: 90%;
    }
	.qr-bar {
		padding: 26px 40px;
	}
	.footer-nav-bar {
		padding: 16px 40px;
	}
	.contact-left {
		padding: 0 40px 0 0;
	}
}
@media (max-width: 1023px) {
	.prod-name {
        font-size: 16px;
        line-height: 22px;
    }
	.projects-row {
		gap: 30px;
		max-width: 100%;
	}
	.pres-left h2 strong {
        font-size: 38px;
    }
	.mkt-heading {
		font-size: 22px;
	}
	.sustain-card {
		padding: 60px 40px;
	}
	.sc-r p {
		font-size: 18px;
		line-height: 26px;
	}
	.sustain-card {
        max-width: 95%;
    }
}
@media (max-width: 991px) {
	#site-navigation, .nav-menu-wrap {
		display: none;
	}
	.menu-toggle, .hamburger {
		display: flex;
	}
	.mobile-overlay, .mobile-drawer {
		display: flex;
	}
	.nav-inner {
		padding: 10px 20px;
	}
	.container-big, .container {
        padding: 0 20px;
    }
	.hero-textbox {
        max-width: 65%;
		padding: 16px;
    }
	.hero-textbox h1 {
        font-size: 30px;
    }
	.hero-content {
        font-size: 16px;
        line-height: 26px;
    }
	.navigations {
		padding: 40px 0 20px;
	}
	.path-section {
		grid-template-columns: repeat(1, 1fr)
	}
	.path-img-wrap {
		min-height: auto;
	}
	.path-img-wrap img {
		height: auto;
	}
	.path-text-wrap {
		padding: 40px 24px;
	}
	.stat-num {
		font-size: 34px;
	}
	.dream-wrapper {
		padding: 60px 20px;
	}
	.dream-bg {
		min-height: 380px;
	}
	.dream-content h2 {
		font-size: 24px;
	}
	.dream-info {
        font-size: 16px;
        line-height: 26px;
    }
	.products-section, .projects-section, .testi-section, .presence-section {
		padding: 60px 20px;
	}
	.products-row {
		grid-template-columns: repeat(2,1fr);
	}
	.since-section, .projects-row, .presence-grid, .sustain-card, .contact-section, .form-2col {
		grid-template-columns: repeat(1,1fr);
	}
	.since-text {
		padding: 40px 20px;
		order: 2;
	}
	.since-visual {
        min-height: auto;
        order: 1;
    }
	.since-visual img {
		height: auto;
	}
	.projects-row {
		gap: 16px;
	}
	.proj-item img {
		height: auto;
	}
	.testi-title {
        font-size: 30px;
        line-height: 36px;
		margin-bottom: 18px;
    }
	.presence-grid {
		gap: 32px;
	}
	.pres-left h2 strong {
        font-size: 32px;
    }
	.pres-map {
		justify-content: center;
	}
	.sustain-section {
		min-height: auto;
	}
	.sustain-card {
		margin: 32px 20px 0;
		gap: 24px;
		padding: 28px 24px;
		max-width: 100%;
	}
	.sc-r p {
        font-size: 16px;
    }
	.sc-stats {
		gap: 32px;
	}
	.contact-section {
		padding: 60px 20px;
		gap: 20px;
	}
	.contact-left {
		padding: 0;
	}
	.contact-right {
		padding: 40px 20px;
	}
	.qr-bar {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 20px;
		gap: 18px;
	}
	.qr-info .qt2 {
		max-width: 100%;
		font-size: 16px;
	}
	.qr-icons {
		align-self: flex-end;
	}
	.footer-nav-bar {
		padding: 16px 20px;
	}
	.footer-nav-bar ul, #footer-menu {
		gap: 20px;
	}
	.footer-nav-bar ul a, #footer-menu a {
		font-size: 12px;
	}
}

/* ── Mobile ≤ 480px ── */
@media (max-width: 767px) {
	.hero-textbox {
        max-width: 100%;
    }
	.hero-textbox h1 {
		font-size: 25px;
	}
	.tab-col {
		flex: 1 1 calc(50% - 10px);
	}
	.dream-wrapper {
        padding: 60px 0;
    }
	.dream-bg {
		border-radius: 0;
        padding: 0 20px;
    }
	.dream-content h2 {
        font-size: 24px;
        line-height: 32px;
    }
	.dream-info p br {
		display: none;
	}
    .consult-row {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 20px;
    }
	.sec-title {
		font-size: 28px;
	}
	.sec-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }
	.products-row {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.since-text {
        padding: 40px 20px;
    }
	.testi-row {
		flex-wrap: wrap;
	}
	.tv {
		flex: 0 0 calc(50% - 4px);
	}
	.tv.tv-c {
		flex: 0 0 100%;
		order: -1;
	}
	.stat-num {
		font-size: 28px;
	}
	.sustain-card {
		margin: 20px 20px 0;
		padding: 22px 16px;
	}
	.sc-l h3 {
		font-size: 30px;
		line-height: 36px;
	}
	.sc-l .badge-text {
		font-size: 20px;
		line-height: 26px;
	}
	.sc-stat .n {
		font-size: 26px;
	}
	.sc-stat .l {
		font-size: 12px;
	}
	.qr-bar {
		padding: 20px;
	}
	.qr-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.footer-nav-bar {
		padding: 16px 20px;
	}
	.footer-nav-bar ul, #footer-menu {
		gap: 10px;
	}
	.footer-copy {
		font-size: 12px;
	}
}