/* =========================
FOUNDATION SECTION
========================= */

.foundation-area{
    padding:55px 0;
    background:#f7f7f7;
    overflow:hidden;
}

/* Heading */

.foundation-heading{
    margin-bottom:38px;
}

.foundation-heading .sub-title{
    font-size:13px;
    letter-spacing:4px;
    color:#2b77d1;
    font-weight:600;
    display:inline-block;
    position:relative;
    margin-bottom:10px;
}

.foundation-heading .sub-title::before{
    content:"";
    width:30px;
    height:2px;
    background:#2b77d1;
    position:absolute;
    left:-40px;
    top:50%;
    transform:translateY(-50%);
}

.foundation-heading h2{
    font-size:52px;
    font-weight:800;
    color:#13233d;
    margin:0;
    line-height:1;
}

.foundation-heading h2 span{
    color:#2b77d1;
}

/* Box */

.foundation-box{
    border-radius:18px;
    padding:24px 22px;
    height:100%;
    transition:0.3s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

/* Small Height */

.vision-box{
    background:#f3f7fb;
    border-top:4px solid #2b77d1;
    min-height:360px;
}

.mission-box{
    background:#faf8f3;
    border-top:4px solid #d7a11c;
    min-height:360px;
}

.motto-box{
    background:#045fae;
    border-top:4px solid #045fae;
    min-height:360px;
}

/* Tag */

.box-tag{
    font-size:12px;
    letter-spacing:4px;
    font-weight:600;
    margin-bottom:16px;
    display:block;
}

.vision-box .box-tag{
    color:#2b77d1;
}

.mission-box .box-tag{
    color:#d7a11c;
}

.motto-box .box-tag{
    color:#b8d8f8;
}

/* Title */

.foundation-box h3{
    font-size:22px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:18px;
    color:#13233d;
}

.motto-box h3{
    color:#fff;
}

/* Text */

.foundation-box p{
    font-size:14px;
    line-height:1.9;
    color:#42556d;
    margin:0;
}

.motto-box p{
    color:#dfeaf5;
}

/* Mission List */

.mission-list{
    padding:0;
    margin:0;
    list-style:none;
}

.mission-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
    font-size:14px;
    line-height:1.6;
    color:#33465d;
}

.mission-list li span{
    width:22px;
    height:22px;
    min-width:22px;
    border-radius:50%;
    background:#d7a11c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    margin-top:2px;
}

/* Line */

.line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.18);
    margin:18px 0;
}

/* Motto Text */

.motto-box h4{
    color:#fff;
    font-size:20px;
    line-height:1.5;
    font-style:italic;
    font-family:Georgia, serif;
    font-weight:700;
    margin:0;
}

/* Hover */

.foundation-box:hover{
    transform:translateY(-5px);
}

/* Responsive */

@media(max-width:991px){

    .vision-box,
    .mission-box,
    .motto-box{
        min-height:auto;
    }

    .foundation-heading h2{
        font-size:42px;
    }
}

@media(max-width:767px){

    .foundation-area{
        padding:45px 0;
    }

    .foundation-heading h2{
        font-size:34px;
    }

    .foundation-box{
        padding:22px 18px;
    }

    .foundation-box h3{
        font-size:20px;
    }

    .foundation-box p,
    .mission-list li{
        font-size:13px;
    }

    .motto-box h4{
        font-size:18px;
    }
}



/* =========================
SMART SYSTEM SECTION
ATTRACTIVE UI
========================= */

.smart-system-section{
    padding:90px 0;
    background:linear-gradient(to bottom,#edf5fd,#f8fbff);
    overflow:hidden;
    position:relative;
}

/* Heading */

.system-heading{
    margin-bottom:60px;
}

.system-heading .sub-title{
    color:#2b77d1;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    position:relative;
    display:inline-block;
    padding-left:42px;
    margin-bottom:16px;
}

.system-heading .sub-title::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:30px;
    height:2px;
    background:#2b77d1;
}

.system-heading h2{
    font-size:64px;
    font-weight:800;
    color:#13233d;
    line-height:1.1;
    margin-bottom:18px;
}

.system-heading h2 span{
    color:#2b77d1;
}

.system-heading p{
    max-width:700px;
    margin:auto;
    font-size:19px;
    line-height:1.9;
    color:#5b6c80;
}

/* Card */

.system-card{
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(10px);
    border-radius:22px;
    padding:34px 18px;
    min-height:170px;
    position:relative;
    overflow:hidden;
    text-align:center;
    transition:0.45s ease;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border:1px solid rgba(255,255,255,0.5);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

/* Glow Effect */

.system-card::before{
    content:"";
    position:absolute;
    top:-100%;
    left:-100%;
    width:220%;
    height:220%;
    background:linear-gradient(
    135deg,
    transparent,
    rgba(43,119,209,0.08),
    transparent
    );

    transform:rotate(25deg);
    transition:0.7s;
}

.system-card:hover::before{
    top:-40%;
    left:-40%;
}

/* Bottom Border */

.system-card::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:0;
    background:linear-gradient(to right,#2b77d1,#64b5ff);
    transition:0.4s ease;
}

.system-card:hover::after{
    height:5px;
}

/* Hover Animation */

.system-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:
    0 18px 40px rgba(43,119,209,0.18);
}

/* Active Card */

.active-card{
    transform:translateY(-6px);
}

.active-card::after{
    height:5px;
}

/* Icon */

.system-card .icon{
    font-size:44px;
    margin-bottom:18px;
    position:relative;
    z-index:2;
    transition:0.4s ease;
}

.system-card:hover .icon{
    transform:scale(1.2) rotate(8deg);
}

/* Title */

.system-card h4{
    font-size:17px;
    font-weight:600;
    color:#13233d;
    line-height:1.5;
    margin:0;
    position:relative;
    z-index:2;
    transition:0.3s;
}

.system-card:hover h4{
    color:#2b77d1;
}

/* Floating Animation */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }
}

.system-card{
    animation:floatCard 4s ease-in-out infinite;
}

/* Responsive */

@media(max-width:1199px){

    .system-heading h2{
        font-size:54px;
    }
}

@media(max-width:991px){

    .system-heading h2{
        font-size:44px;
    }

    .system-heading p{
        font-size:17px;
    }
}

@media(max-width:767px){

    .smart-system-section{
        padding:60px 0;
    }

    .system-heading{
        margin-bottom:40px;
    }

    .system-heading h2{
        font-size:36px;
    }

    .system-heading p{
        font-size:15px;
        line-height:1.8;
    }

    .system-card{
        min-height:140px;
        padding:28px 12px;
        border-radius:18px;
    }

    .system-card .icon{
        font-size:34px;
    }

    .system-card h4{
        font-size:14px;
    }
}



.process-section{
    background: #f7f8fa;
    overflow: hidden;
}

.small-title{
    color: #2b7cd3;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.small-title::before{
    content: "";
    width: 50px;
    height: 2px;
    background: #2b7cd3;
    position: absolute;
    left: -60px;
    top: 50%;
}

.main-title{
    font-size: 60px;
    font-weight: 800;
    color: #132238;
}

.main-title span{
    color: #2b7cd3;
}

/* Timeline */

.timeline-wrapper{
    position: relative;
    margin-top: 60px;
}

.timeline-line{
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ddd;
    z-index: 1;
}

.step-box{
    text-align: center;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.step-circle{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.blue{
    background: linear-gradient(135deg,#0072ff,#0052cc);
}

.yellow{
    background: linear-gradient(135deg,#ffcc33,#d4a000);
}

.step-box h5{
    font-size: 18px;
    font-weight: 700;
    color: #132238;
}

.step-box p{
    color: #6c757d;
    font-size: 14px;
    max-width: 170px;
    margin: auto;
}

/* Hover Effect */

.wow-effect{
    transition: all 0.4s ease;
}

.wow-effect:hover{
    transform: translateY(-10px);
}

.wow-effect:hover .step-circle{
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 20px 35px rgba(0,0,0,0.18);
}

/* Responsive */

@media(max-width:991px){

    .main-title{
        font-size: 42px;
    }

    .timeline-line{
        display: none;
    }

    .step-box{
        margin-bottom: 20px;
    }

}

@media(max-width:576px){

    .main-title{
        font-size: 32px;
    }

    .step-circle{
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .step-box h5{
        font-size: 16px;
    }

    .step-box p{
        font-size: 13px;
    }

}

.core-values-section{
    background: linear-gradient(135deg,#004b93,#0b66b3);
    padding: 90px 0;
    overflow: hidden;
}

/* Heading */

.section-subtitle{
    color: rgba(255,255,255,0.6);
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-subtitle::before{
    content: "";
    width: 35px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    position: absolute;
    left: -45px;
    top: 50%;
}

.section-title{
    color: #102039;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 0;
}

.section-title span{
    color: #ffc107;
}

/* Cards */

.value-card{
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Shine Effect */

.value-card::before{
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transform: rotate(25deg);
    transition: 0.8s;
}

.value-card:hover::before{
    top: 100%;
    left: 100%;
}

.value-card:hover{
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.icon{
    font-size: 42px;
    margin-bottom: 20px;
}

.value-card h4{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.value-card p{
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

/* Responsive */

@media(max-width:991px){

    .section-title{
        font-size: 42px;
    }

    .value-card{
        padding: 35px 20px;
    }

}

@media(max-width:576px){

    .section-title{
        font-size: 32px;
    }

    .section-subtitle{
        font-size: 12px;
        letter-spacing: 2px;
    }

    .value-card h4{
        font-size: 20px;
    }

    .value-card p{
        font-size: 14px;
        line-height: 1.6;
    }

}


/* =============================================
   VMTC - Core Values Section Styles
   File: core-values.css
   All classes are prefixed with "vmtc-" to avoid
   conflicts with your existing website styles.
============================================= */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@300;400;500&display=swap');

/* ---- Section Wrapper ---- */
.vmtc-values-section {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 40%, #1e88e5 70%, #42a5f5 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow overlay */
.vmtc-values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Section Label ---- */
.vmtc-section-label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

/* ---- Section Title ---- */
.vmtc-values-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.2;
}

.vmtc-values-title span {
  color: #f0a500;
}

/* ---- Cards Row ---- */
.vmtc-values-cards-row {
  position: relative;
  z-index: 1;
}

/* ---- Single Value Card ---- */
.vmtc-value-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.vmtc-value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ---- Icon ---- */
.vmtc-value-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

/* ---- Card Title ---- */
.vmtc-value-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* ---- Card Description ---- */
.vmtc-value-desc {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Responsive Tweaks ---- */
@media (max-width: 991.98px) {
  .vmtc-values-section {
    padding: 60px 0 70px;
  }
}

@media (max-width: 575.98px) {
  .vmtc-values-title {
    font-size: 28px;
  }
  .vmtc-value-card {
    padding: 24px 16px 20px;
  }
}

/* =============================================
   VMTC - Commitment / Promise Section Styles
   File: commitment.css
   All classes prefixed with "vmtc-commit-" to
   avoid conflicts with existing website styles.
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@300;400;500&display=swap');

/* ---- Section Wrapper ---- */
.vmtc-commit-section {
  background: #ffffff;
  padding: 80px 0 90px;
}

/* ---- Section Label ---- */
.vmtc-commit-label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1976d2;
  margin-bottom: 10px;
}

/* ---- Section Title ---- */
.vmtc-commit-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #1a2340;
  line-height: 1.15;
  margin-bottom: 16px;
}

.vmtc-commit-title span {
  color: #ffffff;
  background-color: #1976d2;
  padding: 0 10px;
  border-radius: 4px;
  display: inline-block;
}

/* ---- Subtitle ---- */
.vmtc-commit-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #5a6a85;
  max-width: 500px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ---- Cards Row ---- */
.vmtc-commit-cards-row {
  margin-top: 10px;
}

/* ---- Single Commitment Card ---- */
.vmtc-commit-card {
  background: #f5f8ff;
  border: 1px solid #dde8f8;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.vmtc-commit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(25, 118, 210, 0.12);
  border-color: #b3cff5;
}

/* ---- Icon Wrapper ---- */
.vmtc-commit-icon-wrap {
  min-width: 52px;
  height: 52px;
  background: #e3eefb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* ---- Card Body ---- */
.vmtc-commit-body {
  flex: 1;
}

/* ---- Card Title ---- */
.vmtc-commit-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

/* ---- Card Description ---- */
.vmtc-commit-desc {
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: #5a6a85;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .vmtc-commit-section {
    padding: 60px 0 70px;
  }
  .vmtc-commit-title {
    font-size: 28px;
  }
  .vmtc-commit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* =============================================
   VMTC - Projects & References Section Styles
   File: projects.css
   All classes prefixed "vmtc-proj-" — safe to
   drop into any existing website without conflicts.
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@300;400;500&display=swap');

/* ─── Section Wrapper ─── */
.vmtc-projects-section {
  background: #f4f7fc;
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Faint circuit-dot pattern */
.vmtc-projects-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c5d8f0 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

/* ─── Section Label ─── */
.vmtc-proj-label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1976d2;
  margin-bottom: 10px;
}

/* ─── Section Title ─── */
.vmtc-proj-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #0d1e35;
  line-height: 1.15;
  margin-bottom: 14px;
}

.vmtc-proj-title span {
  color: #1976d2;
}

/* ─── Subtitle ─── */
.vmtc-proj-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #5a6a85;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Stats Bar ─── */
.vmtc-proj-stats-row {
  margin-top: 44px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.vmtc-proj-stat {
  background: #ffffff;
  border: 1px solid #dde8f8;
  border-top: 3px solid #1976d2;
  border-radius: 10px;
  padding: 22px 16px 18px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.vmtc-proj-stat:hover {
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.12);
}

.vmtc-proj-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1976d2;
  line-height: 1;
}

.vmtc-proj-stat-lbl {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #8a9ab5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── Projects Grid ─── */
.vmtc-proj-grid {
  position: relative;
  z-index: 1;
}

/* ─── Single Project Card ─── */
.vmtc-proj-card {
  background: #ffffff;
  border: 1px solid #dde8f8;
  border-radius: 12px;
  padding: 22px 20px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vmtc-proj-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #1976d2;
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.28s;
}

.vmtc-proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(25, 118, 210, 0.13);
  border-color: #b3cff5;
}

.vmtc-proj-card:hover::after {
  opacity: 1;
}

/* Featured card */
.vmtc-proj-featured {
  border-color: #f0a500;
  background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

.vmtc-proj-featured::after {
  background: #f0a500;
}

.vmtc-proj-featured:hover {
  border-color: #f0a500;
  box-shadow: 0 14px 36px rgba(240, 165, 0, 0.13);
}

/* ─── Type Badge ─── */
.vmtc-proj-type {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #e3eefb;
  color: #1565c0;
  padding: 3px 9px;
  border-radius: 20px;
}

.vmtc-type-commercial {
  background: #e8f5e9;
  color: #2e7d32;
}

.vmtc-type-luxury {
  background: #fff8e1;
  color: #e65100;
}

/* ─── Diamond Bullet ─── */
.vmtc-proj-diamond {
  width: 10px;
  height: 10px;
  background: #1976d2;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-top: 2px;
  transition: background 0.2s;
}

.vmtc-proj-featured .vmtc-proj-diamond {
  background: #f0a500;
}

/* ─── Project Info ─── */
.vmtc-proj-info {
  flex: 1;
  padding-right: 60px; /* space for badge */
}

.vmtc-proj-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d1e35;
  margin-bottom: 4px;
  line-height: 1.3;
}

.vmtc-proj-name small {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #8a9ab5;
}

.vmtc-proj-location {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #8a9ab5;
  letter-spacing: 0.3px;
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  .vmtc-projects-section {
    padding: 60px 0 72px;
  }
}

@media (max-width: 575.98px) {
  .vmtc-proj-title {
    font-size: 28px;
  }

  .vmtc-proj-card {
    padding: 18px 16px;
  }

  .vmtc-proj-info {
    padding-right: 50px;
  }
}