/* ==========================================================================
   RHEA THEME — CUSTOM STYLES
   Edit this file for all visual changes. Organized by section, top to bottom
   in the same order sections appear on the homepage.

   NOTE: font-weight is capped at 600 max throughout this file (including
   headings, which no longer rely on the browser's default bold/700).
   ========================================================================== */

:root {
	--navy: #0f2138;
	--navy-dark: #0a1626;
	--orange: #f1652b;
	--orange-dark: #d9531e;
	--gray-bg: #f5f7fa;
	--text-dark: #1c2b3a;
	--text-muted: #5c6b7a;
	--border-light: #e6e9ee;
	--white: #ffffff;
	--radius: 8px;
	--container-width: 1200px;
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text-dark);
	line-height: 1.6;
	background: var(--white);
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: var(--navy);
	margin: 0 0 16px;
	line-height: 1.25;
	font-weight: 600;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 13px;
	font-weight: 600;
	color: var(--orange);
	margin-bottom: 8px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.2s ease;
	white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); }
.btn-small { padding: 10px 18px; font-size: 14px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--border-light);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.site-branding .logo-link {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-logo-img { height: 44px; width: auto; }

.site-title-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-title-text strong { font-family: var(--font-heading); font-size: 18px; color: var(--navy); letter-spacing: 0.5px; font-weight: 600; }
.site-title-text small { font-size: 10px; letter-spacing: 1.5px; color: var(--orange); font-weight: 600; }

.primary-navigation { flex: 1; display: flex; justify-content: center; }

.primary-menu {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}
.primary-menu a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-dark);
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--orange);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 6px;
}
.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--navy);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	background:
		linear-gradient(to right, #ffffff 0%, #ffffff 28%, rgba(255,255,255,0.85) 42%, rgba(255,255,255,0.15) 58%, rgba(255,255,255,0) 70%),
		url("https://rheaengineeringservices.com/wp-content/uploads/2026/07/home-banner.webp") no-repeat center right;
	background-size: contain;
}
.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 48px;
	align-items: center;
}
.hero-content{padding:30px 0;}
.hero-content h1 {
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
}
.hero-content h1 .accent { color: var(--orange); display: block; }

.hero-tagline {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
}

.hero-desc {
	color: var(--text-muted);
	max-width: 480px;
	margin-bottom: 28px;
}

.hero-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 28px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 20px; color: var(--navy); font-family: var(--font-heading); font-weight: 600; }
.hero-stats span { font-size: 12px; color: var(--text-muted); }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: var(--radius);
}


/*=================================
  Trusted By
==================================*/

.trusted-by{
    padding:50px 0;
    border-bottom:1px solid var(--border-light);
    overflow:hidden;
}

.logo-marquee{
    margin-top:35px;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:logoScroll 35s linear infinite;
}

.logo-marquee:hover .logo-track{
    animation-play-state:paused;
}

.logo-track img{
    width:auto;
    height:60px;
    object-fit:contain;
    margin:0 45px;
    opacity:.75;
  
    transition:.3s;
    flex-shrink:0;
}

.logo-track img:hover{
    opacity:1;
    filter:none;
    transform:scale(1.08);
}

@keyframes logoScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Mobile */

@media(max-width:767px){

    .logo-track{
        animation-duration:22s;
    }

    .logo-track img{
        height:45px;
        margin:0 28px;
    }

}
/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section { padding: 30px 0; }
.about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.about-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: var(--radius);
}
.about-content p { color: var(--text-muted); }
.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
	margin: 24px 0 28px;
}
.about-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 15px;
	color: var(--text-dark);
}
.about-features .icon { font-size: 18px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section { padding: 30px 0; background: var(--gray-bg); }
.services-section h2 { max-width: 560px; font-size: 30px; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 44px;
}
.service-card {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	padding: 28px 20px;
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 10px 24px rgba(15,33,56,0.08); transform: translateY(-3px); }
.service-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.service-card h3 { font-size: 15px; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-section { padding: 30px 0;
    background: #00132e;
    color: var(--white); }
.why-choose-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}
.why-choose-content h2{color:#fff;}
.why-choose-img { width: 100%; border-radius: var(--radius); }
.why-choose-section .eyebrow { color: var(--orange); }
.why-choose-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 28px;
}
.why-choose-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}
.why-choose-list .check {
	color: var(--orange);
	border: 1.5px solid var(--orange);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}
/* ==========================================================================
   FEATURED PROJECTS
   ========================================================================== */
.projects-section {
	padding: 88px 0;
	background: #fff;
}

.projects-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border, #E7EAF0);
}

.projects-header .eyebrow {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--orange);
	margin: 0;
}

.view-all-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--navy, #0B1F3D);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.view-all-link:hover {
	color: var(--orange);
}

.view-all-link span {
	display: inline-block;
	transition: transform 0.25s ease;
}

.view-all-link:hover span {
	transform: translateX(5px);
}

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

@media (max-width: 900px) {
	.projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.projects-grid { grid-template-columns: 1fr; }
	.hero{
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 35%, #cedbf3 100%);
		background-size: cover;
	}
}

.project-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--border, #E7EAF0);
	box-shadow: 0 2px 12px rgba(11, 31, 61, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(11, 31, 61, 0.14);
}

.project-card a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.project-card img {
	width: 100%;
	height:280px;
	object-fit: cover;
	border-radius: 0;
	margin-bottom: 0;
	display: block;
	transition: transform 0.5s ease;
}

.project-card:hover img {
	transform: scale(1.07);
}

.project-card h3,
.project-card p {
	padding: 0 20px;
}

.project-card h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--navy, #0B1F3D);
	margin: 18px 0 6px;
	line-height: 1.35;
}

.project-card p {
	font-size: 13.5px;
	color: var(--text-muted, #6B7280);
	margin: 0 0 20px;
}

/* subtle "view project" cue that appears on hover, no extra markup needed */
.project-card::after {
	content: "View Project →";
	position: absolute;
	top: 16px;
	right: -140px;
	background: var(--orange);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	transition: right 0.3s ease;
	pointer-events: none;
}

.emoji{height: 2em !important;
    width: 2em !important;}

.project-card:hover::after {
	right: 16px;
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band { background: var(--navy-dark); padding: 40px 0; }
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.stat-item { color: var(--white); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-icon { font-size: 26px!important; margin-bottom: 6px; }
.stat-item strong { font-family: var(--font-heading); font-size: 26px; font-weight: 600; }
.stat-item span { font-size: 13px; color: #b6c0cc; }


/* ==========================================================================
   SHARED SECTION HEADING
   ========================================================================== */
.section-heading { margin-bottom: 40px; }
.section-heading.center { text-align: center; }
.section-heading .eyebrow {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--orange);
	margin: 0 0 10px;
}
.section-heading h2 {
	font-size: 30px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
	padding: 30px 0;
	background: var(--gray-bg);
}

.testimonial-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 20px;
}

@media (max-width: 1024px) {
	.testimonial-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.testimonial-cards { grid-template-columns: 1fr; }
}

.testimonial-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 28px;
	border: 1px solid var(--border-light);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
}

.stars {
	color: var(--orange);
	margin-bottom: 12px;
	letter-spacing: 2px;
	font-size: 14px;
}

.testimonial-card p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--text-dark);
	margin-bottom: 18px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-dark);
}

.testimonial-author img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
}


/* ==========================================================================
   FOOTER CTA BAND
   ========================================================================== */
.footer-cta { background: var(--orange); }
.footer-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 40px 24px;
	flex-wrap: wrap;
}
.footer-cta h3 { color: var(--white); margin-bottom: 4px; font-size: 22px; }
.footer-cta p { color: rgba(255,255,255,0.9); margin: 0; }
.footer-cta .btn-primary { background: var(--navy); }
.footer-cta .btn-primary:hover { background: var(--navy-dark); }

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: #c7cfd8; padding: 56px 0 0; }
.footer-columns {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 36px; width: auto; }
.footer-logo span { display: flex; flex-direction: column; color: var(--white); }
.footer-logo strong { font-family: var(--font-heading); font-size: 16px; font-weight: 600; }
.footer-logo small { font-size: 9px; letter-spacing: 1.2px; color: var(--orange); }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	display: flex; align-items: center; justify-content: center;
	font-size: 12px;
	color: var(--white);
}
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-menu li,
.footer-contact li { margin-bottom: 10px; font-size: 13px; }
.footer-menu a:hover { color: var(--orange); }
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	font-size: 12px;
	flex-wrap: wrap;
	gap: 8px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--orange); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
	.hero-inner,
	.about-inner,
	.why-choose-inner,
	.testimonial-leadership-grid { grid-template-columns: 1fr; }
	.services-grid { grid-template-columns: repeat(3, 1fr); }
	.projects-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-columns { grid-template-columns: 1fr 1fr; }
	.testimonial-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.primary-navigation, .header-cta { display: none; }
	.mobile-menu-toggle { display: flex; }
	.hero-content h1 { font-size: 30px; }
	.services-grid { grid-template-columns: repeat(2, 1fr); gap: 0px;}
	.projects-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr 1fr; }.service-card{10px 5px;}
	.footer-columns { grid-template-columns: 1fr; }
	.why-choose-list { grid-template-columns: 1fr; }
	.about-features { grid-template-columns: 1fr; }
	.leadership-card { flex-direction: column; }
	.footer-cta-inner { flex-direction: column; text-align: center; }
}

/* Mobile nav open state (toggled by custom.js) */
.primary-navigation.is-open {
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--white);
	flex-direction: column;
	padding: 16px 24px;
	border-bottom: 1px solid var(--border-light);
}
.primary-navigation.is-open .primary-menu {
	flex-direction: column;
	gap: 14px;
}



/**/
/* ==========================================================================
   ABOUT PAGE — append to assets/css/custom.css
   Reuses existing variables (--navy, --orange, --gray-bg, etc.) from the
   main theme stylesheet, so make sure this is loaded after that :root block.

   UPDATED per RHEA.pptx: adds stats bar, service-category cards, and a
   deliverables tag grid; leadership section now uses the single-card layout
   (image + content + highlight stats) since the deck's Core Team confirms
   one leader.
   ========================================================================== */

.section-intro { max-width: 640px; margin: 0 auto 40px; color: var(--text-muted); }
.rounded-img { width: 100%; border-radius: var(--radius); object-fit: cover; }

/* ---- Page banner ---- */
.about-banner {
	background: var(--navy);
	color: var(--white);
	padding: 64px 0 56px;
	text-align: center;
}
.about-banner .eyebrow { color: var(--orange); }
.about-banner h1 { color: var(--white); font-size: 40px; margin-bottom: 10px; }
.about-banner-sub { color: #c7cfd8; font-size: 15px; margin: 0; }

/* ---- Generic two-col about block (Who We Are / Our Story) ---- */
.about-block { padding: 72px 0; }
.about-block.alt-bg { background: var(--gray-bg); }
.about-block-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.about-block-inner.reverse { direction: rtl; }
.about-block-inner.reverse > * { direction: ltr; }
.about-block-media img { height: 380px; }
.about-block-content p { color: var(--text-muted); margin-bottom: 14px; }

/* ---- Stats bar / "By the Numbers" ---- */
.stats-bar-section { padding: 28px 0; background: var(--navy); }
.stats-bar-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 28px;
}
.stat-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}
.stat-check {
	color: var(--orange);
	font-weight: 600;
}

/* ---- Mission / Vision / Values ---- */
.mvv-section { padding: 72px 0; background: var(--gray-bg); }
.mvv-section > .container > .eyebrow.center { margin-bottom: 8px; }
.mvv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 24px;
}
.mvv-card {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	padding: 32px 26px;
}
.mvv-icon { font-size: 30px; display: block; margin-bottom: 14px; }
.mvv-card h2 { font-size: 19px; margin-bottom: 12px; }
.mvv-card p { color: var(--text-muted); font-size: 14px; margin: 0; }
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.values-list li { margin-bottom: 8px; font-size: 14px; color: var(--text-dark); }

/* ---- What We Do: service category cards ---- */
.service-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 36px;
}
.service-category-card {
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	padding: 26px 22px;
	background: var(--white);
}
.service-category-card h3 {
	font-size: 17px;
	color: var(--navy);
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--orange);
}
.checklist-item-list { list-style: none; margin: 0; padding: 0; }
.checklist-item-list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 13.5px;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 10px;
}
.checklist-item-list .check {
	color: var(--orange);
	border: 1.5px solid var(--orange);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	flex-shrink: 0;
	margin-top: 2px;
}

/* ---- Legacy "What We Do" checklist grid (kept for other pages reusing this block) ---- */
.checklist-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 32px;
	margin-top: 36px;
}
.checklist-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 15px;
	color: var(--text-dark);
	line-height: 1.5;
}
.checklist-item .check {
	color: var(--orange);
	border: 1.5px solid var(--orange);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
}

/* ---- Why choose us: stacked list variant ---- */
.why-choose-list.stacked {
	display: grid;
	margin-top: 16px;
}
.why-choose-list.stacked li {
	display: flex;font-size:13px;
	align-items: center;
	gap: 10px;
	margin-bottom: 00px;
	color: var(--white);
}
.why-choose-section .why-choose-content p { color: #c7cfd8; }

/* ---- Milestones / timeline ---- */
.milestones-section { padding: 72px 0; }
.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 44px;
	position: relative;
}
.timeline-item {
	position: relative;
	padding-top: 28px;
	border-top: 3px solid var(--orange);
}
.timeline-dot {
	position: absolute;
	top: -9px;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--orange);
}
.timeline-item strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 8px; font-weight: 600; }
.timeline-item p { font-size: 13px; color: var(--text-muted); margin: 0; }



/* ===============================
   Leadership Section
   (Single-card layout — used because the deck's "Core Team" slide
   currently confirms one leader, Mr. Naveen Rohira)
=================================*/

.leadership-section{
    padding:30px 0;
    background:var(--gray-bg);
}

.leadership-card{
    margin-top:50px;
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--border-light);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.leadership-image{
    flex:0 0 40%;
}

.leadership-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.leadership-content{
    flex:0 0 60%;
    padding:20px;
}

.leader-tag{
    display:inline-block;
    background:rgba(255,121,0,.12);
    color:var(--orange);
    font-weight:600;
    font-size:13px;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:18px;
}

.leadership-content h3{
    font-size:28px;font-weight: 500;
    margin-bottom:10px;
    color:var(--navy);
}

.leadership-content p{
    margin-bottom:18px;
    line-height:1.9;
    color:var(--text-muted);
}

.leader-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin:35px 0;
}

.highlight-item{
    text-align:center;
    background:#f8f9fb;
    padding:10px;
    border-radius:14px;
}

.highlight-item h4{
    font-size:20px;
    color:var(--orange);
    margin-bottom:8px;
    font-weight:600;
}

.highlight-item span{
    font-size:14px;
    color:var(--text-dark);
    display:block;
    line-height:1.5;
}

.team-table-title { margin-top: 56px; font-size: 20px; color: var(--navy); }

/* ---- Our Team table ---- */
.team-table-wrap {
	margin-top: 24px;
	overflow-x: auto;
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	background: var(--white);
}
.team-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}
.team-table thead th {
	background: var(--orange);
	color: var(--white);
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 14px 20px;
}
.team-table tbody td {
	padding: 16px 20px;
	font-size: 14px;
	color: var(--text-dark);
	border-top: 1px solid var(--border-light);
	vertical-align: top;
}
.team-table tbody tr:nth-child(even) {
	background: var(--gray-bg);
}
.team-table tbody tr:hover {
	background: rgba(255, 121, 0, 0.06);
}
.team-table tbody td:nth-child(4) {
	white-space: nowrap;
	font-weight: 600;
	color: var(--navy);
}

@media (max-width: 576px) {
	.team-table thead th,
	.team-table tbody td { padding: 12px 14px; font-size: 13px; }
}

/* Tablet */
@media(max-width:991px){

    .leadership-card{
        flex-direction:column;
    }

    .leadership-image,
    .leadership-content{
        flex:100%;
        width:100%;
    }

    .leadership-image img{
        min-height:450px;
    }

    .leadership-content{
        padding:40px;
    }

    .leader-highlights{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:576px){

    .leadership-content{
        padding:30px 24px;
    }

    .leadership-content h3{
        font-size:20px;
    }

    .leader-highlights{
        grid-template-columns:1fr;
    }

    .leadership-image img{
        min-height:350px;
    }

}

/* ---- Industries we serve ---- */
.industries-section { padding: 72px 0; }
.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.industry-card {
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	padding: 24px;
	text-align: center;
}
.industry-icon { font-size: 26px; display: block; margin-bottom: 10px; }
.industry-card h3 { font-size: 15px; margin-bottom: 6px; }
.industry-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---- Certifications ---- */
.certifications-section { padding: 72px 0; background: var(--gray-bg); }
.cert-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.cert-media img { height: 360px; }
.cert-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-weight: 500;
}
.cert-list .check {
	color: var(--orange);
	border: 1.5px solid var(--orange);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}

/* ---- Pan-India presence ---- */
.presence-section { padding: 72px 0; }
.presence-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.presence-card {
	background: var(--navy);
	color: var(--white);
	border-radius: var(--radius);
	padding: 28px 24px;
}
.presence-card h3 { color: var(--orange); font-size: 16px; margin-bottom: 10px; }
.presence-card p { font-size: 14px; color: #c7cfd8; margin: 0; }

/* ---- CSR ---- */
.csr-section { padding: 72px 0; background: var(--gray-bg); }
.csr-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.csr-media img { height: 340px; }
.csr-content p { color: var(--text-muted); }

/* ---- Client success / testimonials ---- */
.client-success-section { padding: 72px 0; }
.portfolio-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 40px 0 48px;
}
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.portfolio-item img { width: 100%; height: 140px; object-fit: cover; }
.portfolio-item span {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	background: linear-gradient(to top, rgba(15,33,56,0.85), transparent);
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	padding: 24px 10px 8px;
}
.testimonial-cards.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- Partners ---- */
.partners-section { padding: 72px 0; background: var(--gray-bg); }
.partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px;
	align-items: center;
	margin-top: 40px;
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	padding: 36px;
}
.partners-grid img { max-height: 40px; width: auto; margin: 0 auto; filter: grayscale(100%); opacity: 0.8; }

/* ---- Let's Build Together CTA ---- */
.build-together-section { background: var(--orange); padding: 48px 0; }
.build-together-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.build-together-inner h2 { color: var(--white); margin-bottom: 8px; }
.build-together-inner > div > p { color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.cta-contact-list li { color: var(--white); font-size: 14px; margin-bottom: 6px; }
.build-together-inner .btn-primary { background: var(--navy); flex-shrink: 0; }
.build-together-inner .btn-primary:hover { background: var(--navy-dark); }

/* ==========================================================================
   RESPONSIVE — About page
   ========================================================================== */
@media (max-width: 991px) {
	.about-block-inner,
	.cert-inner,
	.csr-inner { grid-template-columns: 1fr; }
	.about-block-inner.reverse { direction: ltr; }
	.mvv-grid,
	.industries-grid,
	.presence-grid { grid-template-columns: 1fr 1fr; }
	.service-categories-grid { grid-template-columns: 1fr 1fr; }
	.timeline { grid-template-columns: 1fr 1fr; }
	.portfolio-strip { grid-template-columns: 1fr 1fr; }
	.partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
	.about-banner h1 { font-size: 30px; }
	.checklist-grid { grid-template-columns: 1fr; }
	.mvv-grid,
	.industries-grid,
	.presence-grid,
	.timeline { grid-template-columns: 1fr; }
	.service-categories-grid { grid-template-columns: 1fr; }
	.values-list { grid-template-columns: 1fr; }
	.testimonial-cards.two-col { grid-template-columns: 1fr; }
	.partners-grid { grid-template-columns: repeat(2, 1fr); }
	.build-together-inner { flex-direction: column; text-align: center; }
	.stats-bar-grid { justify-content: flex-start; }
}



/* ==========================================================================
   SERVICES PAGE — append to assets/css/custom.css (after about-page.css)
   Reuses .services-section, .stats-bar-section, .build-together-section
   from custom.css / about-page.css. Content verified against RHEA.pptx
   "SERVICES" and "DELIVERABLES" slides — 4 service categories + one
   deliverables grid, kept to 4 content sections total on the page.
   ========================================================================== */

.service-card { cursor: pointer; }

/* ---- Service category cards (image box + checklist) ---- */
.category-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 44px;
}
.category-card {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15,33,56,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(15,33,56,0.14);
}
.category-card-img {
	position: relative;
	height: 210px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.category-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,33,56,0) 35%, rgba(10,22,38,0.65) 100%);
	pointer-events: none;
}
.category-icon-badge {
	position: absolute;
	bottom: 14px;
	left: 16px;
	z-index: 2;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	box-shadow: 0 8px 18px rgba(241,101,43,0.35);
}
.category-card-body { padding: 26px 26px 30px; }
.category-card-body h3 { font-size: 19px; margin-bottom: 16px; }
.category-checklist {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px 16px;
}
.category-checklist li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.5;
}
.category-checklist .check { color: var(--orange); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* ---- Deliverables grid: soft gradient section + alternating tinted tiles ---- */
.deliverables-section {
	padding: 72px 0;
	background: linear-gradient(180deg, var(--gray-bg) 0%, #eef1f6 100%);
}
.deliverables-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 40px;
}
.deliverable-tile {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 24px 14px;
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.deliverable-tile:nth-child(even) {
	background: linear-gradient(160deg, #fff6f0 0%, #ffe9dc 100%);
	border-color: #f6c9ab;
}
.deliverable-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(15,33,56,0.12);
	background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
	border-color: transparent;
}
.deliverable-tile:hover span,
.deliverable-tile:hover .deliverable-icon { color: var(--white); }
.deliverable-icon { display: block; font-size: 26px; margin-bottom: 10px; }
.deliverable-tile span {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
}

/* ==========================================================================
   RESPONSIVE — Services page
   ========================================================================== */
@media (max-width: 991px) {
	.category-grid { grid-template-columns: 1fr; }
	.deliverables-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
	.category-checklist { grid-template-columns: 1fr; }
	.deliverables-grid { grid-template-columns: repeat(2, 1fr); }
}





/* ==========================================================================
   INDUSTRIES PAGE — append to assets/css/custom.css (after services-page.css)
   Reuses .about-banner, .stats-bar-section, .services-section, .category-card
   (image box + icon badge), .build-together-section from earlier blocks.
   Sector groupings and project names verified against RHEA.pptx
   "PROJECT DELIVERED" slides.
   ========================================================================== */

.industries-grid-v2 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 44px;
}
.industries-grid-v2 .category-card-body { padding: 22px 22px 24px; }
.industries-grid-v2 .category-card-body h3 { font-size: 16px; margin-bottom: 10px; min-height: 42px; }
.industry-blurb {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0 0 14px;
}
.industry-examples { display: flex; flex-direction: column; gap: 6px; }
.industry-examples li {
	position: relative;
	padding-left: 14px;
	font-size: 12.5px;
	color: var(--text-dark);
	line-height: 1.5;
}
.industry-examples li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
}

/* ==========================================================================
   RESPONSIVE — Industries page
   ========================================================================== */
@media (max-width: 1100px) {
	.industries-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
	.industries-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.industries-grid-v2 { grid-template-columns: 1fr; }
}



/* ==========================================================================
   CONTACT PAGE — append to assets/css/custom.css (after services-page.css)
   Reuses .about-banner, .build-together-section etc. from earlier files.
   ========================================================================== */

.section-intro-left { color: var(--text-muted); margin-bottom: 28px; }

/* ---- Form + info card layout ---- */
.contact-main-section { padding: 72px 0; }
.contact-main-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: start;
}

/* ---- Form ---- */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { width: 100%; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
	font-family: var(--font-body);
	font-size: 14px;
	padding: 12px 14px;
	border: 1px solid var(--border-light);
	border-radius: 6px;
	color: var(--text-dark);
	background: var(--white);
	width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(241,101,43,0.12);
}
.form-group textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; border: none; cursor: pointer; font-size: 15px; }

/* ---- Info card ---- */
.contact-info-card {
	background: var(--navy);
	color: var(--white);
	border-radius: var(--radius);
	padding: 36px 30px;
}
.contact-info-card h3 { color: var(--white); font-size: 18px; margin-bottom: 24px; }
.contact-info-item {
	display: flex;
	gap: 14px;
	margin-bottom: 24px;
	align-items: flex-start;
}
.contact-info-icon { font-size: 20px; flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--orange); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; font-weight: 600; }
.contact-info-item p { margin: 0 0 2px; font-size: 14px; }
.contact-info-item a { color: #dbe2ea; }
.contact-info-item a:hover { color: var(--orange); }
.contact-social { display: flex; gap: 10px; margin-top: 8px; }
.contact-social a {
	width: 34px; height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex; align-items: center; justify-content: center;
	font-size: 12px;
	color: var(--white);
}
.contact-social a:hover { background: var(--orange); }

/* ---- Studio locations ---- */
.locations-section { padding: 72px 0; background: var(--gray-bg); }
.locations-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 40px;
}
.location-card {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius);
	padding: 24px;
}
.location-card h3 { font-size: 17px; margin-bottom: 8px; }
.location-address { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.location-map {
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 16px;
	border: 1px solid var(--border-light);
}
.location-map iframe { display: block; }

/* ==========================================================================
   RESPONSIVE — Contact page
   ========================================================================== */
@media (max-width: 991px) {
	.contact-main-inner { grid-template-columns: 1fr; }
	.locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.form-row { grid-template-columns: 1fr; }
}