/* ===================================
   QONCEPT 360 - MAIN STYLES
   =================================== */

:root {
    --primary-blue: #03699A;
    --primary-green: #8CD157;
    --dark-text: #0F172A;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --secondary-text: #64748B;
    --border-color: #E2E8F0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
       --blue: #03699A;
      --green: #8CD157;
      --blue-light: #e8f4fa;
      --green-light: #f2fae8;
      --bg: #f5f7f9;
      --white: #ffffff;
      --dark: #0d1e2b;
      --text: #1a2e3d;
      --muted: #5a7282;
      --border: #dde6ec;
}

/* ===================================
   GLOBAL STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: "Geist", sans-serif !important;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: var(--dark-text);
}

.display-3, .display-4 {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--dark-text);
}

p {
    color: var(--secondary-text);
    line-height: 1.8;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.text-success {
    color: var(--primary-green) !important;
}

.text-secondary {
    color: var(--secondary-text) !important;
}
h3.text-center.fw-bold.mb-5 {
    font-size: 2.5rem;
}
.text-slate {
    color: #94A3B8;
}
body .border-start {
    border-left: 4px solid #80c85e !important;
}

/* ===================================
   NAVBAR
   =================================== */

.navbar-custom {
    background-color: var(--white) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.navbar-custom .logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    margin-right: 0;
}
a.navbar-brand {
    margin-right: 0;
}

.navbar-custom .logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-size: 18px !important;
    font-weight: 600;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white) !important;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient:hover {
    box-shadow: 0 8px 20px rgba(3, 105, 154, 0.3);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white) !important;
    color: var(--primary-blue) !important;
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: var(--light-bg) !important;
    box-shadow: var(--shadow);
}

/* ===================================
   BADGES
   =================================== */

.badge-custom {
    background-color: #E0F7ED;
    color: var(--primary-green);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    margin-top: 80px;
    padding-top: 3rem !important;
    padding-bottom: 5rem !important;
    background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(239, 246, 255, 0.5) 100%);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image img {
    transition: transform 0.5s ease;
    max-width: 100%;
    height: auto;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* ===================================
   CARDS
   =================================== */

.card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}
section.clients-section.py-5 h3.text-center.text-secondary.fw-bold.mb-5 {
    color: #000 !important;
}
.card-custom {
    background: linear-gradient(135deg, rgba(3, 105, 154, 0.05) 0%, rgba(140, 209, 87, 0.05) 100%);
    border: 1px solid var(--border-color);
}
.card.card-mentor p.fw-semibold.mb-2 {
    color: #000;
    font-size: 20px;
}
.card-service {
    background-color: var(--white);
    /* border: 4px solid var(--border-color); */
    border-top: 4px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    padding: 19px 18px;
    box-shadow: 2px 2px 3px 1px #eee;
}

.card-service:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-top-color: var(--primary-green);
}

.card-service .service-icon {
    font-size: 2rem;
    display: inline-block;
}
.card-team {
    background-color: #e6eff87a;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    border-radius: 24px;
    padding: 24px;
}
p.card-text.text-secondary.small {
    font-size: 1rem;
}
.card-team:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.25rem;
}
footer.footer.py-5 ul li a {
    font-size: 1.3rem;
    line-height: 38px;
}
.card-mentor {
    background: linear-gradient(135deg, rgba(3, 105, 154, 0.08) 0%, rgba(140, 209, 87, 0.08) 100%);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-blue);
    border-radius:24px;
}

.card-partner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border: none;
    color: var(--white);
        border-radius: 24px;
}
.card.card-partner h3 {
    font-size: 2.5rem;
    color: #fff;
}
.card-partner p {
    color: var(--white);
    width: 80%;
    margin: 0 auto;
    font-size: 1.25rem;
}
/* ===================================
   SECTION STYLES
   =================================== */

.about-section {
    padding: 5rem 0;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.services-section {
    padding: 5rem 0;
}

.team-section {
    padding: 5rem 0;
}

.clients-section {
    padding: 4rem 0;
}

.contact-section {
    padding: 5rem 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    padding: 5rem 0;
}

.cta-section h2 {
    color: var(--white);
    line-height: 1.2;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 4rem 0 2rem;
}

.footer h6 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer .text-secondary {
    color: #94A3B8 !important;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-green) !important;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(3, 105, 154, 0.1);
}

.contact-form .form-control::placeholder {
    color: var(--secondary-text);
}

/* ===================================
   BELIEF SECTION
   =================================== */

.card-beliefs {
    background: linear-gradient(135deg, rgba(3, 105, 154, 0.06) 0%, rgba(140, 209, 87, 0.06) 100%);
    border: 1px solid var(--border-color);
}

.belief-icon {
    font-size: 3rem;
    line-height: 1;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   UTILITIES
   =================================== */

.shadow-sm {
    box-shadow: var(--shadow);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded-3 {
    border-radius: 1rem !important;
}

.rounded-2 {
    border-radius: 0.75rem !important;
}

.border-start {
    border-left: 1px solid var(--border-color) !important;
}

.border-5 {
    border-width: 5px !important;
}

.gap-5 {
    gap: 2rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}







/* About Page Styles */
:root {
  --primary-blue: #03699A;
  --primary-green: #8CD157;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-light: #E2E8F0;
}

/* Navigation */
.navbar {
  background-color: var(--bg-white);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 1000;
}

.navbar-logo {
  height: 50px;
  width: auto;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.nav-link.active {
  color: var(--primary-blue) !important;
  border-bottom: 2px solid var(--primary-blue);
}

/* Hero Section */
.hero-section {
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content h1 .text-primary {
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.badge-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.hero-image {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

/* Positioning Section */
.positioning-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.positioning-card {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.positioning-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.position-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.position-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.position-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Section Styling */
.section-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* Who We Work With Section */
.who-we-work {
  padding: 80px 0;
}

.work-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.work-image {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-image:hover img {
  transform: scale(1.05);
}

/* Vision Section */
.vision-section {
  padding: 80px 0;
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vision-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vision-point i {
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.vision-point p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.vision-image {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vision-image:hover img {
  transform: scale(1.05);
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mission-point i {
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.mission-point p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.mission-image {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mission-image:hover img {
  transform: scale(1.05);
}

/* Philosophy Section */
.philosophy-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.philosophy-card {
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-blue);
}

.philosophy-card-blue {
  border-top-color: var(--primary-blue);
  background-color: rgba(3, 105, 154, 0.05);
}

.philosophy-card-green {
  border-top-color: var(--primary-green);
  background-color: rgba(140, 209, 87, 0.05);
}

.philosophy-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.philosophy-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.check-mark {
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.philosophy-card-blue .check-mark {
  color: var(--primary-blue);
}

.philosophy-card-green .check-mark {
  color: var(--primary-green);
}

.philosophy-list li {
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.cta-section .btn {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-text {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.95rem;
}




/* Hero Section */
.leadership-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    padding-top: 6rem !important;
    border-bottom: 1px solid var(--border-color);
}

.leadership-hero .badge-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.leadership-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.leadership-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    background-color: #ffffff;
}

.leader-card {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.leader-card:last-child {
    border-bottom: none;
}

/* Leader Image */
.leader-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.leader-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 105, 154, 0.1) 0%, rgba(140, 209, 87, 0.1) 100%);
    pointer-events: none;
}

/* Leader Content */
.leader-content {
    padding: 2rem 0;
}

.leader-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    background-color: rgba(3, 105, 154, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.leader-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 1rem 0;
    line-height: 1.2;
}

.leader-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leader-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Leader Sections */
.leader-section {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.leader-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* Expertise List */
.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.expertise-list i {
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* Philosophy Quote */
.leader-philosophy {
    background: linear-gradient(135deg, rgba(3, 105, 154, 0.05) 0%, rgba(140, 209, 87, 0.05) 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.philosophy-text {
    color: var(--dark-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Leadership Matters Section */
.why-leadership {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.why-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-card:nth-child(1),
.why-card:nth-child(3) {
    border-top-color: var(--primary-color);
}

.why-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

ul.expertise-list li {
    width: 48%;
}
ul.expertise-list {
    display: flex
;
    flex-wrap: wrap;
}



/* Hero */
    .hero-sec { padding-top: 130px; padding-bottom: 70px; background: linear-gradient(to bottom, #F8FAFC, #fff); }
    .hero-sec .eyebrow { display: inline-block; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #03699A; margin-bottom: 16px; }
    .hero-sec h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 800; color: #0F172A; line-height: 1.15; margin-bottom: 18px; }
    .hero-sec h1 span { color: #03699A; }
    .hero-sec .lead {  color: #64748B; line-height: 1.75; }
    .img-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.14); position: relative; background: #F8FAFC; height: 380px; }
    .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .img-wrap:hover img { transform: scale(1.05); }
    .img-wrap::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.15),transparent); pointer-events:none; }

    /* Service Cards */
    .svc-sec { padding: 80px 0; background: #fff; }
    .svc-card { border-radius: 10px; padding: 30px; height: 100%; display: flex; flex-direction: column; transition: box-shadow .3s; }
    .svc-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.10); }
    .svc-card.b { border-left: 4px solid #03699A; background: linear-gradient(135deg,rgba(3,105,154,.05) 0%,#fff 60%); }
    .svc-card.g { border-left: 4px solid #8CD157; background: linear-gradient(135deg,rgba(140,209,87,.06) 0%,#fff 60%); }
    .svc-card .ico { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
    .svc-card.b .ico { color: #03699A; }
    .svc-card.g .ico { color: #8CD157; }
    .svc-card h3 { font-size: 1.8rem; font-weight: 700; color: #0F172A; margin-bottom: 4px; line-height: 1.3; }
    .svc-card .stag {  font-weight: 600; margin-bottom: 0; }
    .svc-card.b .stag { color: #03699A; font-size: 1.3rem;}
    .svc-card.g .stag { color: #8CD157; }
    .svc-card .sdesc {  color: #64748B; line-height: 1.65; margin: 14px 0 12px; }
    .svc-card .olbl {  font-weight: 700; color: #0F172A; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
    .svc-card .olist { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
    .svc-card .olist li { display: flex; gap: 8px;  color: #64748B; margin-bottom: 6px; line-height: 1.5; }
    .svc-card.b .chk { color: #03699A; font-weight: 700; flex-shrink: 0; }
    .svc-card.g .chk { color: #8CD157; font-weight: 700; flex-shrink: 0; }
    .svc-card .slink { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none; margin-top: 18px; }
    .svc-card.b .slink { color: #03699A; }
    .svc-card.g .slink { color: #8CD157; }
    .svc-card .slink:hover { opacity: .7; }

    /* Web Dev Section */
    .webdev-sec { padding: 80px 0; background: #F8FAFC; border-top: 1px solid #E2E8F0; }
    .webdev-sec .eyebrow { display: inline-block;  font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #03699A; margin-bottom: 10px; }
    .webdev-sec h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: #0F172A; margin-bottom: 6px; }
    .webdev-sec .tagline {  font-weight: 600; color: #64748B; margin-bottom: 16px; }
    .webdev-sec .bodytxt {  color: #64748B; line-height: 1.75; }
    .infobox { background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; padding: 34px; margin-bottom: 26px; }
    .infobox p {  color: #64748B; line-height: 1.75; margin-bottom: 12px; }
    .infobox p:last-child { margin-bottom: 0; }
    .abox { border-radius: 12px; padding: 30px; height: 100%; }
    .abox.bl { border-left: 4px solid #03699A; background: linear-gradient(135deg,rgba(3,105,154,.06),rgba(3,105,154,.01)); }
    .abox.gr { border-left: 4px solid #8CD157; background: linear-gradient(135deg,rgba(140,209,87,.07),rgba(140,209,87,.01)); }
    .abox h3 { font-size: 1.15rem; font-weight: 700; color: #0F172A; margin-bottom: 22px; }
    .aitem { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
    .aitem:last-child { margin-bottom: 0; }
    .achk { font-weight: 700; font-size: .95rem; flex-shrink: 0; margin-top: 1px; }
    .abox.bl .achk { color: #03699A; }
    .abox.gr .achk { color: #8CD157; }
    .atitle {  font-weight: 600; color: #0F172A; margin-bottom: 2px; }
    .adesc {  color: #64748B; margin-bottom: 0; }
    .wbbox {
        background: #03699a;
        border: 1px solid #aeb8c7;
        border-radius: 12px;
        padding: 30px;
        margin-top: 26px;
        margin-bottom: 26px;
        color: #fff;
    }   


.wbbox h3 { font-size:1.8rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
    .bitem { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
    .bdot {  font-size: 1.1rem; font-weight: 700; flex-shrink: 0; line-height: 1.4; }
    /* .btxt { font-size: .9rem; color: #64748B; } */
    .wdcta { text-align: center; padding: 16px 0 8px; }
    .wdcta .ch { font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 6px; }
    .wdcta .cs {  color: #64748B; margin-bottom: 20px; }
    .btn-prim { display: inline-flex; align-items: center; gap: 8px; background: #03699A; color: #fff; font-weight: 600;  padding: 12px 30px; border-radius: 8px; text-decoration: none; transition: background .2s; }
    .btn-prim:hover { background: #025078; color: #fff; }
    .btn-wht { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #03699A; font-weight: 600;  padding: 12px 30px; border-radius: 8px; text-decoration: none; transition: background .2s; }
    .btn-wht:hover { background: #f1f5f9; color: #03699A; }

    /* Growth Section */
.growth-sec {
    padding: 80px 0;
    background: #fff;
    background: linear-gradient(90deg, #03699A 0%, #8CD157 100%);
}
    .growth-sec .eyebrow { display: inline-block;  font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
    .growth-sec h2 { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
    .growth-sec .plabel {  font-weight: 700; color: #fff; margin-bottom: 10px; }
.growth-sec .pdesc {
    color: #fff;
    line-height: 1.75;
    font-size: 1.3rem;
    margin-top: 24px;
}
    .gbanner { background: linear-gradient(135deg, #03699A 0%, #0589c8 50%, #8CD157 100%); border-radius: 16px; padding: 60px 50px; margin-top: 50px; color: #fff; }
    .gbanner .gh3 { font-size: 1.4rem; font-weight: 700; color: #fff; }
    .solbox { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; padding: 32px 36px; }
    .solbox h3 {  font-weight: 700; color: #fff; margin-bottom: 18px; }
    .slist { list-style: none; padding: 0; margin: 0; }
.slist li {
    display: flex
;
    gap: 10px;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
}
    .slist li:last-child { margin-bottom: 0; }
    .schk { color: #c8f283; font-weight: 700; flex-shrink: 0; }
    .stagl {  font-style: italic; font-weight: 600; color: rgba(255,255,255,.85); margin-top: 18px; margin-bottom: 0; }

    /* CTA Section */
    .cta-sec { padding: 80px 0; background: #fff; text-align: center; }
    .cta-sec h2 { font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: #0F172A; margin-bottom: 16px; line-height: 1.2; }
    .cta-sec p { font-size: 1.03rem; color: #64748B; margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; }

    /* Footer */
    .qfooter { background: #0F172A; padding: 50px 0 0; }
    .qfooter .fbrand {  font-weight: 800; color: #fff; margin-bottom: 8px; }
    .qfooter .fbrand span { color: #03699A; }
    .qfooter .ftagline { font-size: .8rem; color: #64748B; line-height: 1.6; }
    .qfooter .fhead {  font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
    .qfooter .flinks { list-style: none; padding: 0; margin: 0; }
    .qfooter .flinks li { margin-bottom: 7px; }
    .qfooter .flinks a {  color: #94A3B8; text-decoration: none; transition: color .2s; }
    .qfooter .flinks a:hover { color: #fff; }
    .qfooter .fcontact {  color: #94A3B8; margin-bottom: 7px; }
    .qfooter .fcontact a { color: #94A3B8; text-decoration: none; }
    .qfooter .fsocial a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,.08); color: #94A3B8; font-size: .95rem; text-decoration: none; margin-right: 6px; transition: background .2s, color .2s; }
    .qfooter .fsocial a:hover { background: #03699A; color: #fff; }
    .qfooter .fbottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 36px; padding: 20px 0;  color: #475569; text-align: center; }

    @media (max-width:991px) { .img-wrap { height: 280px; margin-top: 28px; } .gbanner { padding: 40px 28px; } }
    @media (max-width:767px) { .svc-card { padding: 22px; } .gbanner { padding: 28px 18px; } .solbox { padding: 22px; } }
    
    
     /* HERO BANNER */
    .page-hero {
      background: linear-gradient(135deg, var(--blue) 0%, #025480 100%);
      padding: 160px 6vw 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
    }
    .page-hero .label {
      font-family: var(--fh);  font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--green); margin-bottom: 14px;
    }
    .page-hero h1 {
      font-family: var(--fh); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
      color: #fff; line-height: 1.1; margin-bottom: 16px;
    }
    .page-hero h1 span { color: var(--green); }
    .page-hero p {
      color: rgba(255,255,255,0.75); font-size: 1.4rem;
    }
    .breadcrumb {
      margin-top: 28px;
      font-size: 0.8rem; color: rgba(255,255,255,0.5);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
    .breadcrumb span { color: var(--green); }

    /* MAIN CONTENT */
    .main { max-width: 1200px; margin: 0 auto; padding: 72px 6vw 80px; }

    /* SECTION LABELS */
    .sec-label {
      font-family: var(--fh); font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 10px;
      display: flex; align-items: center; gap: 10px;
    }
    .sec-label::before { content: ''; width: 24px; height: 2px; background: var(--blue); }

    /* INTRO */
    .intro-block {
      text-align: center;
      margin-bottom: 64px;
    }
    .intro-block h2 {
      font-family: var(--fh); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
      color: var(--text); margin-bottom: 16px; line-height: 1.2;
    }
    .intro-block h2 span { color: var(--blue); }
    .intro-block p { color: var(--muted); font-size: 1.4rem; margin: 0 auto; }

    /* PHILOSOPHY STRIP */
    .philosophy {
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 4px solid var(--blue);
      padding: 28px 32px;
      margin-bottom: 64px;
      display: flex; align-items: center; gap: 24px;
    }
    .philosophy-icon { font-size: 2rem; flex-shrink: 0; }
    .philosophy p {
      color: var(--text); font-size: 0.98rem; font-style: italic; line-height: 1.7;
    }
    .philosophy p strong { color: var(--blue); font-style: normal; }

    /* CLIENTS GRID */
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 64px;
    }

    .client-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 32px 28px;
      position: relative;
      transition: all 0.25s ease;
      overflow: hidden;
    }
    .client-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      transition: width 0.35s ease;
    }
    .client-card:hover {
      border-color: rgba(3,105,154,0.3);
      box-shadow: 0 8px 32px rgba(3,105,154,0.1);
      transform: translateY(-3px);
    }
    .client-card:hover::after { width: 100%; }

    .client-num {
      font-family: var(--fh); font-size: 1rem; font-weight: 700;
      letter-spacing: 0.18em; color: var(--green); margin-bottom: 12px;
    }
    .client-name {
      font-family: var(--fh); font-size: 1.5rem; font-weight: 800;
      color: var(--text); margin-bottom: 8px;
    }
    .client-tag {
      font-size: 1rem; color: var(--muted); font-weight: 500;
    }
    .client-card .arrow {
      position: absolute; top: 28px; right: 24px;
      color: var(--border); font-size: 1rem;
      transition: color 0.25s, transform 0.25s;
    }
    .client-card:hover .arrow { color: var(--blue); transform: translate(3px,-3px); }

    /* COMMITMENT BOX */
    .commitment-box {
      background: linear-gradient(135deg, var(--blue) 0%, #025480 100%);
      padding: 52px 48px;
      margin-bottom: 64px;
      display: grid;
      grid-template-columns: 1fr 2px 1fr 2px 1fr;
      gap: 0;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .commitment-box::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
    }
    .commit-divider { background: rgba(255,255,255,0.15); height: 60px; width: 1px; justify-self: center; }
    .commit-item { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
    .commit-num {
      font-family: var(--fh); font-size: 2.8rem; font-weight: 800;
      color: var(--green); line-height: 1; margin-bottom: 6px;
    }
    .commit-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }

    /* CTA SECTION */
    .cta-section {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 52px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
    }
    .cta-left h3 {
      font-family: var(--fh); font-size: 1.6rem; font-weight: 800;
      color: var(--text); margin-bottom: 10px;
    }
    .cta-left h3 span { color: var(--blue); }
    .cta-left p { color: var(--muted); font-size: 0.95rem; max-width: 420px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; font-family: var(--fh); font-weight: 700;
      font-size: 1rem; letter-spacing: 0.04em; text-decoration: none;
      border: none; cursor: pointer; transition: all 0.25s; white-space: nowrap;
    }
    .btn-blue { background: var(--blue); color: #fff; }
    .btn-blue:hover { background: #025480; box-shadow: 0 8px 24px rgba(3,105,154,0.3); transform: translateY(-2px); }
    .btn-green { background: var(--green); color: var(--dark); }
    .btn-green:hover { background: #a0e066; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(140,209,87,0.3); }
    .btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
    .btn-outline:hover { background: var(--blue-light); transform: translateY(-2px); }

    /* FOOTER */
    footer {
      background: var(--dark);
      padding: 60px 6vw 28px;
      margin-top: 0;
    }
    .footer-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand .logo-f {
      font-family: var(--fh); font-weight: 800; font-size: 1.15rem;
      color: #fff; margin-bottom: 14px; display: block;
    }
    .footer-brand .logo-f span { color: var(--green); }
    .footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; }
    .footer-col h4 { font-family: var(--fh); font-weight: 700; font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    .anim { opacity: 0; }
    .anim.in { animation: fadeUp 0.6s ease forwards; }
    .anim:nth-child(2) { animation-delay: 0.08s; }
    .anim:nth-child(3) { animation-delay: 0.14s; }
    .anim:nth-child(4) { animation-delay: 0.2s; }
    .anim:nth-child(5) { animation-delay: 0.26s; }
    .anim:nth-child(6) { animation-delay: 0.32s; }

    @media (max-width: 900px) {
      .clients-grid { grid-template-columns: 1fr 1fr; }
      .commitment-box { grid-template-columns: 1fr; gap: 28px; }
      .commit-divider { display: none; }
      .cta-section { flex-direction: column; align-items: flex-start; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      
      
       .roles-grid { grid-template-columns: 1fr; }
      .values-strip { grid-template-columns: 1fr; }
      .apply-steps { grid-template-columns: 1fr; }
      .cta-right { align-items: flex-start; }
    }
    @media (max-width: 600px) {
      .clients-grid { grid-template-columns: 1fr; }
      .commitment-box { padding: 36px 28px; }
      .cta-section { padding: 32px 24px; }
      .footer-grid { grid-template-columns: 1fr; }
            .apply-box { padding: 32px 24px; }
    }
    
    
    
    /* VALUES STRIP */
    .values-strip {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      margin-bottom: 64px;
    }
    .value-item {
      background: var(--white); border: 1px solid var(--border);
      padding: 28px 24px; display: flex; gap: 16px; align-items: flex-start;
    }
    .value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
    .value-title { font-family: var(--fh); font-size: 1.3rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
    .value-desc { font-size: 1rem; color: var(--muted); line-height: 1.6; }

    /* ROLES */
    .roles-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
    .roles-header div h3 { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; color: var(--text); }
    .roles-header div p { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }

    .roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }

    .role-card {
      background: var(--white); border: 1px solid var(--border);
      padding: 32px 28px; position: relative; overflow: hidden;
      transition: all 0.25s ease; display: flex; flex-direction: column; gap: 12px;
    }
    .role-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 4px; height: 100%; background: var(--border);
      transition: background 0.3s;
    }
    .role-card:hover { border-color: rgba(3,105,154,0.25); box-shadow: 0 8px 32px rgba(3,105,154,0.1); transform: translateY(-2px); }
    .role-card:hover::before { background: var(--blue); }

    .role-dept {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--green); font-family: var(--fh);
    }
    .role-title { font-family: var(--fh); font-size: 1.3rem; font-weight: 800; color: var(--text); }
    .role-desc { font-size: 1rem; color: var(--muted); line-height: 1.65; }
    .role-type {
      display: inline-block; background: var(--blue-light); color: var(--blue);
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
      padding: 3px 10px; font-family: var(--fh);
    }
    .role-arrow {
      position: absolute; top: 28px; right: 24px;
      color: var(--border); font-size: 1rem; transition: color 0.25s, transform 0.25s;
    }
    .role-card:hover .role-arrow { color: var(--blue); transform: translate(2px,-2px); }

    /* HOW TO APPLY */
    .apply-box {
      background: var(--white); border: 1px solid var(--border);
      padding: 48px 40px; margin-bottom: 48px;
    }
    .apply-box h3 { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 24px; }
    .apply-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
    .step { display: flex; gap: 16px; align-items: flex-start; }
    .step-num {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--blue); color: #fff;
      font-family: var(--fh); font-weight: 800; font-size: 0.85rem;
      display: flex; align-items: center; justify-content: center;
    }
    .step-title { font-family: var(--fh); font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
    .step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

    .email-block {
      background: var(--blue-light); border: 1px solid rgba(3,105,154,0.2);
      padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .email-block .email-info { font-size: 0.9rem; color: var(--text); }
    .email-block .email-info strong { color: var(--blue); font-family: var(--fh); font-size: 1rem; display: block; margin-bottom: 2px; }
    .email-block .email-info span { color: var(--muted); font-size: 0.9rem; }
    
.page-hero p {
    margin-bottom: 0;
}
/* MAIN */
    .main { max-width: 1200px; margin: 0 auto; padding: 72px 6vw 80px; }
    .sec-label { font-family: var(--fh); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
    .sec-label::before { content: ''; width: 24px; height: 2px; background: var(--blue); }

    /* IMAGE + INTRO STRIP */
    .intro-visual {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
      margin-bottom: 64px; overflow: hidden; border: 1px solid var(--border);
    }
    .intro-img {
      position: relative; min-height: 340px; overflow: hidden;
      background: linear-gradient(135deg, #031f2d 0%, var(--blue) 50%, #04b067 100%);
    }
    .intro-img-overlay {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
      padding: 36px 32px;
      background: linear-gradient(to top, rgba(3,30,50,0.85) 0%, transparent 60%);
    }
    .intro-img .city-art {
      position: absolute; inset: 0;
      overflow: hidden;
    }
    /* Decorative city skyline SVG art */
    .intro-img-content { position: relative; z-index: 2; }
    .intro-img-content h3 { font-family: var(--fh); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
    .intro-img-content p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
    .badge-navi {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green); color: var(--dark);
      font-family: var(--fh); font-weight: 700; font-size: 0.72rem;
      padding: 5px 12px; margin-bottom: 14px; letter-spacing: 0.08em;
    }

    .intro-text {
      background: var(--white); padding: 40px 36px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .intro-text h2 { font-family: var(--fh); font-size: 1.7rem; font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
    .intro-text h2 span { color: var(--blue); }
    .intro-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
    .avail-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

    /* CONTACT GRID */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; margin-bottom: 24px; }

    /* INFO CARDS */
    .info-stack { display: flex; flex-direction: column; gap: 16px; }
    .info-card { background: var(--white); border: 1px solid var(--border); padding: 24px 24px; display: flex; gap: 16px; align-items: flex-start; transition: border-color 0.25s, box-shadow 0.25s; }
    .info-card:hover { border-color: rgba(3,105,154,0.3); box-shadow: 0 6px 24px rgba(3,105,154,0.08); }
    .info-icon { width: 42px; height: 42px; background: var(--blue-light); border: 1px solid rgba(3,105,154,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .info-label { font-family: var(--fh); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
    .info-value { font-size: 0.92rem; color: var(--text); font-weight: 500; line-height: 1.5; }
    .info-value a { color: var(--text); text-decoration: none; }
    .info-value a:hover { color: var(--blue); }
    .info-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

    /* FORM */
    .form-box { background: var(--white); border: 1px solid var(--border); padding: 36px 32px; }
    .form-box h3 { font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
    .form-box .form-sub { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text); letter-spacing: 0.04em; font-family: var(--fh); }
    .form-group label span { color: var(--blue); }
    .form-group input, .form-group select, .form-group textarea {
      padding: 11px 14px; border: 1px solid var(--border); background: var(--bg);
      font-family: var(--fb); font-size: 0.88rem; color: var(--text);
      outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--blue); box-shadow: 0 0 0 3px rgba(3,105,154,0.08); background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
  
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.card.card-beliefs.mb-0 {
    border-radius: 24px;
}
.card.card-custom.border-start.border-primary.border-5 {
    border-color: transparent !important;
    border-left: 4px solid var(--primary-blue) !important;
    border-radius: 30px;
    padding: 11px;
}
p.card-text.text-secondary {
    font-size: 16px;
}
.card.card-custom.border-start.border-success.border-5{
    border-color: transparent !important;
    border-left: 4px solid #80c85e !important;
    border-radius: 30px;
    padding: 11px;
}
    .btn-blue { background: var(--blue); color: #fff; width: 100%; justify-content: center; }
    .btn-blue:hover { background: #025480; box-shadow: 0 8px 24px rgba(3,105,154,0.3); transform: translateY(-1px); }
    .btn-green { background: var(--green); color: var(--dark); }
    .btn-green:hover { background: #a0e066; transform: translateY(-2px); }
    .btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
    .btn-outline:hover { background: var(--blue-light); }

    /* MAP */
    .map-section { margin-bottom: 24px; }
    .map-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
    .map-header h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 800; color: var(--text); }
    .map-header a { font-size: 0.82rem; color: var(--blue); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 4px; }
    .map-header a:hover { text-decoration: underline; }
    .map-wrap { border: 1px solid var(--border); overflow: hidden; position: relative; }
    .map-wrap iframe { width: 100%; height: 380px; border: none; display: block; filter: saturate(0.9) contrast(1.05); }
    .map-pin-label {
      position: absolute; top: 16px; left: 16px;
      background: var(--white); border: 1px solid var(--border);
      padding: 10px 16px; display: flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .map-pin-label span { font-family: var(--fh); font-size: 0.82rem; font-weight: 700; color: var(--text); }
    .map-pin-label .pin { color: var(--blue); font-size: 1rem; }
    
     /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
    .anim { opacity: 0; }
    .anim.in { animation: fadeUp 0.6s ease forwards; }
    .anim:nth-child(2){animation-delay:0.08s;} .anim:nth-child(3){animation-delay:0.14s;} .anim:nth-child(4){animation-delay:0.2s;} .anim:nth-child(5){animation-delay:0.26s;}

    /* SUCCESS STATE */
    .form-success { display: none; text-align: center; padding: 40px 20px; }
    .form-success .check { font-size: 2.5rem; margin-bottom: 16px; }
    .form-success h4 { font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
    .form-success p { color: var(--muted); font-size: 0.9rem; }

    @media(max-width:900px){
      .intro-visual { grid-template-columns: 1fr; }
      .intro-img { min-height: 260px; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .cta-strip { flex-direction: column; align-items: flex-start; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width:600px){
      .footer-grid { grid-template-columns: 1fr; }
      .main { padding: 48px 5vw 60px; }
      .form-box { padding: 24px 20px; }
    }
    
    /* SIDEBAR */
    .sidebar { position: sticky; top: 88px; }
    .sidebar-box { background: var(--white); border: 1px solid var(--border); padding: 24px 20px; }
    .sidebar-box h4 { font-family: var(--fh); font-size: 1rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
    .sidebar-box ul { list-style: none; }
    .sidebar-box ul li { border-bottom: 1px solid var(--border); }
    .sidebar-box ul li:last-child { border-bottom: none; }
    .sidebar-box ul li a { display: flex; align-items: center; gap: 8px; padding: 10px 4px; font-size: 1rem; color: var(--muted); text-decoration: none; transition: color 0.2s; font-weight: 500; }
    .sidebar-box ul li a:hover { color: var(--blue); }
    .sidebar-box ul li a.active { color: var(--blue); font-weight: 700; }
    .sidebar-box ul li a::before { content: '→'; font-size: 0.75rem; color: var(--green); opacity: 0.7; }

    .sidebar-contact { background: var(--blue-light); border: 1px solid rgba(3,105,154,0.2); padding: 20px; margin-top: 16px; }
    .sidebar-contact p { font-size: 1rem; color: var(--muted); margin-bottom: 10px; line-height: 1.6; }
    .sidebar-contact a { font-size: 1rem; color: var(--blue); font-weight: 700; text-decoration: none; font-family: var(--fh); }
    .sidebar-contact a:hover { text-decoration: underline; }
    .sc-label { font-family: var(--fh); font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }

    /* CONTENT */
    .policy-content {}

    .update-bar {
      background: var(--green-light); border: 1px solid rgba(140,209,87,0.35);
      border-left: 4px solid var(--green);
      padding: 14px 20px; margin-bottom: 40px;
      display: flex; align-items: center; gap: 12px;
      font-size: 0.82rem; color: var(--muted);
    }
    .update-bar strong { color: var(--text); }

    .policy-section { margin-bottom: 48px; scroll-margin-top: 90px; }
    .policy-section .sec-num {
      font-family: var(--fh); font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--green);
      margin-bottom: 6px;
    }
    .policy-section h2 {
      font-family: var(--fh); font-size: 1.8rem; font-weight: 800;
      color: var(--text); margin-bottom: 16px; padding-bottom: 12px;
      border-bottom: 2px solid var(--border);
    }
    .policy-section p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 14px; }
    .policy-section p:last-child { margin-bottom: 0; }

    /* HIGHLIGHT BOXES */
    .highlight-box { background: var(--white); border: 1px solid var(--border); padding: 24px 24px; margin: 20px 0; }
    .highlight-box.blue { border-left: 4px solid var(--blue); background: var(--blue-light); }
    .highlight-box.green { border-left: 4px solid var(--green); background: var(--green-light); }
    .highlight-box h4 { font-family: var(--fh); font-size:1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .highlight-box p { font-size: 1rem; color: var(--muted); margin: 0; }

    /* DATA CARDS */
    .data-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
    .data-card { background: var(--white); border: 1px solid var(--border); padding: 20px; }
    .data-card .dc-icon { font-size: 1.3rem; margin-bottom: 10px; }
    .data-card h4 { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
    .data-card p { font-size: 1rem; color: var(--muted); line-height: 1.6; }

    /* CHECK LIST */
    .check-list { list-style: none; margin: 14px 0; }
    .check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--muted); }
    .check-list li:last-child { border-bottom: none; }
    .check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
    
    
    .main.policy_container{ max-width: 1200px; margin: 0 auto; padding: 72px 6vw 80px; display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
    
    
     @media(max-width:900px){
       .main.policy_container{ grid-template-columns: 1fr; }
      .sidebar { position: static; }
      .data-cards { grid-template-columns: 1fr; }
      .cta-strip { flex-direction: column; align-items: flex-start; }
    }
    @media(max-width:600px){
      .main.policy_container{ padding: 48px 5vw 60px; }
    }
    
    footer.footer ul li a {
    color: #fff !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 9px;
}
footer.footer ul {
    list-style: none;
    padding: 0;
}
footer.footer h6 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 22px !important;
}
    
    .footer-logo {
    width: 130px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}
.copyright.text-center p {
    margin: 0;
    padding: 18px 0;
}
hr.border-secondary {
    border-color: #fff !important;
}
footer.footer p {
    color: #fff !important;
    font-size: 17px;
    line-height: 27px;
}

.social-links a i {
    color: #fff !important;
    font-size: 26px;
}

ul.navbar-nav.ms-auto li {
    margin-right: 16px;
}


.loc_box h6 {
    font-size: 18px;
}

.loc_box p {
    margin-bottom: 0;
    font-size: 16px;
}

.contact_box {
    display: flex
;
}

.loc_box {
    padding-left: 12px;
}

.contact-form .form-control::placeholder {
    font-size: 14px;
}

section.leadership-section.py-5 .leader-card:nth-child(3) {
    border-bottom: unset;
}

.card.card-mentor {
    border-color: transparent;
    border-left: 4px solid var(--primary-blue) !important;
}

.services_btn {
    text-align: center;
    margin-bottom: 34px;
}