:root{
  --bg:#f4f7fb; --surface:#ffffff; --surface-2:#eef3fa; --text:#132742; --muted:#647995;
  --line:#d9e3f0; --accent:#0b5cab; --gold:#d3a227; --shadow:0 20px 50px rgba(17,34,60,.08); --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Segoe UI,Arial,sans-serif;background:linear-gradient(180deg,#fbfcff 0%,#f3f6fb 100%);color:var(--text)}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{
  width:min(1600px,94vw);
  margin:0 auto;
}
.hero.project-hero-bg{
  min-height:72vh;
  position:relative;
  overflow:hidden;
}

.hero.project-hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(3,18,35,.72), rgba(3,18,35,.30)),
    linear-gradient(to top, rgba(3,18,35,.45), transparent 40%);
}

.hero.project-hero-bg .container{
  position:relative;
  z-index:2;
}

.hero.project-hero-bg h1{
  font-size:clamp(4rem,8vw,7rem);
  letter-spacing:-3px;
  font-weight:900;
  max-width:1000px;
}

.hero.project-hero-bg p{
  font-size:1.2rem;
  max-width:760px;
  color:#f1f5fb;
}
.site-header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.nav-wrap{display:flex;justify-content:space-between;align-items:center;padding:16px 0;gap:20px}
.brand{display:flex;align-items:center;gap:14px}
.brand-mark{width:46px;height:46px;border-radius:14px;display:grid;place-items:center;font-weight:800;color:#fff;background:linear-gradient(135deg,var(--accent),#083d74)}
.brand-copy{display:flex;flex-direction:column}
.brand-copy strong{font-size:1rem}
.brand-copy small{color:var(--muted);font-size:.8rem}
.site-nav{display:flex;gap:22px;align-items:center}
.site-nav a{font-weight:600;font-size:.95rem}
.menu-btn{display:none;border:none;background:none;font-size:1.55rem}

.hero{
  min-height:56vh;
  display:flex;
  align-items:center;
  background:
  linear-gradient(90deg,rgba(7,16,30,.58) 0%,rgba(7,16,30,.42) 38%,rgba(7,16,30,.18) 100%),
  url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  border-bottom:1px solid var(--line)
}
.hero.project-hero-bg{min-height:54vh}
.hero .container{padding:84px 0 76px}
.kicker{display:inline-flex;padding:10px 16px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.14);font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;font-weight:700}
.hero h1{color:#fff;font-size:clamp(3rem,6vw,5.3rem);line-height:.96;margin:18px 0 16px;max-width:820px}
.hero p{color:#e2ebf8;max-width:760px;line-height:1.75;font-size:1.06rem}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 22px;border-radius:14px;font-weight:700;border:1px solid transparent}
.btn-primary{background:linear-gradient(135deg,var(--gold),#f0cb67);color:#172131;box-shadow:var(--shadow)}
.btn-outline{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18);color:#fff}

.section{padding:76px 0}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:26px}
/* PREMIUM PROJECTS TITLE */

.projects-header{
    margin-bottom:40px;
    position:relative;
}

.section-tag{
    display:inline-block;
    color:#d3a227;
    font-size:13px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.projects-header h2{
    font-size:clamp(2.8rem,5vw,4.5rem);
    line-height:1;
    margin:0;
    color:#0f2747;
    font-weight:900;
    letter-spacing:-2px;
}

.projects-header h2::after{
    content:"";
    display:block;
    width:90px;
    height:5px;
    margin-top:18px;
    border-radius:20px;
    background:linear-gradient(
        90deg,
        #d3a227,
        #f2d477
    );
}

.section-head h2{margin:0;font-size:clamp(2rem,4vw,3rem)}
.section-head p{margin:0;color:var(--muted);max-width:500px;line-height:1.75}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)}

.photo-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px;
  align-items:stretch;
}
.project-card{
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 18px 45px rgba(17,34,60,.10);
  transition:transform .35s ease, box-shadow .35s ease;
}
.project-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(17,34,60,.18);
}
.project-card > a{
  display:block;
  height:420px;
  overflow:hidden;
  position:relative;
  line-height:0;
  background:#dfe7f2;
}

.project-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:
    transform .7s ease,
    filter .4s ease;
  filter:contrast(1.04) saturate(1.06);
}
.project-card{
  display:flex;
  flex-direction:column;
}

.project-card .body{
  margin-top:0 !important;

}
.project-card:hover img{transform:scale(1.06)}
.project-card .body{padding:28px}
.project-card .kicker{
  background:#eef3fa;
  color:var(--accent);
  border:none;
  margin-bottom:12px;
}
.project-heading,
.project-title{
  display:block;
  font-size:1.85rem;
  line-height:1.3;
  font-weight:700;
  color:var(--text);
  margin-bottom:14px;
  letter-spacing:-0.3px;
}

.project-heading a,
.project-title a{
  color:inherit;
  text-decoration:none;
}

.project-heading a:hover,
.project-title a:hover{
  color:var(--gold);
}
.project-card p{
  color:var(--muted);
  line-height:1.6;
  margin:0 0 16px;
}

.clients-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.client-item{padding:20px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow);font-weight:700;text-align:center}



.simple-table,.table-wrap{background:#fff;border:1px solid var(--line);border-radius:24px;overflow:hidden;box-shadow:var(--shadow)}
.simple-table table,.table-wrap table{width:100%;border-collapse:collapse}
.simple-table th,.simple-table td,.table-wrap th,.table-wrap td{padding:15px 14px;border-bottom:1px solid #edf2f8;text-align:left}
.simple-table th,.table-wrap th{background:#f1f6fd;color:#314a6c;font-size:.82rem;text-transform:uppercase;letter-spacing:.05em}
.table-toolbar{display:grid;grid-template-columns:1.2fr .8fr;gap:14px;padding:20px;border-bottom:1px solid var(--line);background:#f8fbff}
.input,select,textarea{width:100%;padding:15px 16px;border:1px solid var(--line);border-radius:16px;background:#fff;color:var(--text);outline:none}
.table-scroll{overflow:auto;width:100%}

.md-wrap{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:center}
.md-box{padding:28px}
.md-box h2{margin:0 0 12px}
.md-box p{margin:0;color:var(--muted);line-height:1.85}

.gallery-wrap{display:grid;grid-template-columns:1.15fr .85fr;gap:26px}

.project-layout{
  display:block !important;
  width:100% !important;
  max-width:1240px !important;
  margin:0 auto !important;
  overflow:hidden !important;
}

.gallery-main{
  width:100% !important;
  height:560px !important;
  border:1px solid var(--line) !important;
  border-radius:26px !important;
  overflow:hidden !important;
  background:#f5f7fa !important;
  box-shadow:var(--shadow) !important;
}

.gallery-main img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.thumb-row{
  display:flex !important;
  gap:14px !important;
  flex-wrap:nowrap !important;
  width:100% !important;
  max-width:100% !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  margin-top:16px !important;
  padding:14px 0 !important;
  white-space:nowrap !important;
}

.thumb{
  flex:0 0 140px !important;
  width:140px !important;
  height:90px !important;
  cursor:pointer !important;
  border:2px solid transparent !important;
  border-radius:16px !important;
  overflow:hidden !important;
  background:#fff !important;
  box-shadow:var(--shadow) !important;
}

.thumb.active{border-color:var(--accent) !important}

.thumb img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.detail-card{padding:24px !important;border:1px solid var(--line) !important;border-radius:24px !important;background:#fff !important;box-shadow:var(--shadow) !important;margin-top:22px}
.detail-card h1{margin:6px 0 12px !important;font-size:2.2rem !important;line-height:1.08 !important}
.detail-card p{color:var(--muted);line-height:1.8}
.detail-list{display:grid;gap:12px;margin-top:18px}
.detail-compact{display:grid !important;gap:12px !important;margin-top:18px !important}
.detail-item{display:flex !important;justify-content:space-between !important;gap:16px !important;padding:14px 16px !important;border-radius:16px !important;background:#f8fbff !important;border:1px solid var(--line) !important}
.nav-projects{display:flex !important;justify-content:space-between !important;gap:16px !important;margin-top:18px !important}
.nav-projects a{padding:12px 16px !important;border:1px solid var(--line) !important;border-radius:14px !important;background:#fff !important}

.form-wrap{display:grid;grid-template-columns:1fr .85fr;gap:22px}
.panel{padding:24px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.notice{padding:14px 16px;border-radius:14px;background:#edf7ee;color:#2d8a46;border:1px solid #d7ecd9}

.site-footer{padding:36px 0;border-top:1px solid var(--line);background:#fff;margin-top:56px}
.footer-grid{display:grid;grid-template-columns:1.1fr 1fr .8fr;gap:24px}
.site-footer h3,.site-footer h4{margin:0 0 12px}
.site-footer p{margin:0 0 10px;color:var(--muted);line-height:1.7}

.table-toolbar{grid-template-columns:1.2fr .8fr !important}
.table-scroll table{table-layout:fixed;width:100%}
.table-scroll colgroup{display:none}
.table-scroll th:nth-child(1), .table-scroll td:nth-child(1){width:56%}
.table-scroll th:nth-child(2), .table-scroll td:nth-child(2){width:18%}
.table-scroll th:nth-child(3), .table-scroll td:nth-child(3){width:26%}

.client-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr)) !important;
  gap:20px !important;
  align-items:center !important;
}

.client-logo-card{
  background:#fff !important;
  border:1px solid var(--line) !important;
  border-radius:18px !important;
  box-shadow:var(--shadow) !important;
  min-height:88px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:16px !important;
  text-align:center;
}

.client-logo-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.client-logo-card img{
  max-width:100% !important;
  max-height:48px !important;
  object-fit:contain !important;
  display:block !important;
  margin:0 auto 10px;
}

.client-name{
  font-weight:600;
  font-size:14px;
  color:#1e2b3a;
}

table{width:100%;border-collapse:collapse;table-layout:fixed}
th,td{padding:14px 12px;vertical-align:top;word-break:break-word}
th:nth-child(1),td:nth-child(1){width:7%}
th:nth-child(2),td:nth-child(2){width:53%}
th:nth-child(3),td:nth-child(3){width:18%}
th:nth-child(4),td:nth-child(4){width:22%}

#projectsTable,
#runningProjectsTable,
#completedProjectsTable{
  width:100% !important;
  border-collapse:collapse !important;
  table-layout:fixed !important;
}

#projectsTable th:nth-child(1), #projectsTable td:nth-child(1),
#runningProjectsTable th:nth-child(1), #runningProjectsTable td:nth-child(1),
#completedProjectsTable th:nth-child(1), #completedProjectsTable td:nth-child(1){
  width:64% !important;
}

#projectsTable th:nth-child(2), #projectsTable td:nth-child(2),
#runningProjectsTable th:nth-child(2), #runningProjectsTable td:nth-child(2),
#completedProjectsTable th:nth-child(2), #completedProjectsTable td:nth-child(2){
  width:16% !important;
}

#projectsTable th:nth-child(3), #projectsTable td:nth-child(3),
#runningProjectsTable th:nth-child(3), #runningProjectsTable td:nth-child(3),
#completedProjectsTable th:nth-child(3), #completedProjectsTable td:nth-child(3){
  width:20% !important;
}

#projectsTable th, #projectsTable td,
#runningProjectsTable th, #runningProjectsTable td,
#completedProjectsTable th, #completedProjectsTable td{
  padding:14px 12px !important;
  vertical-align:top !important;
  word-break:break-word !important;
  white-space:normal !important;
  line-height:1.45 !important;
}

/* FINAL CLIENT SECTION OVERRIDE */

#clients-section .container{
    width:95% !important;
    max-width:1800px !important;
    margin:auto !important;
}

#clients-section .client-grid{

    display:grid !important;

    grid-template-columns:repeat(4,1fr) !important;

    gap:24px !important;

    max-width:none !important;

    width:100% !important;

    margin:0 auto !important;
}

#clients-section .client-logo-card{

    background:#fff !important;
    border-radius:22px !important;
    border:1px solid #e7edf5 !important;

    min-height:150px !important;

    padding:20px !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;

    box-shadow:
    0 10px 25px rgba(15,23,42,.05) !important;
}

#clients-section .client-logo-card img{

    width:auto !important;
    max-width:130px !important;
    height:60px !important;
    object-fit:contain !important;
}

#clients-section .client-name{

    margin-top:14px !important;
    text-align:center !important;
    font-size:14px !important;
    font-weight:600 !important;
}

@media(max-width:1100px){

#clients-section .client-grid{
    grid-template-columns:repeat(2,1fr) !important;
}

}

@media(max-width:700px){

#clients-section .client-grid{
    grid-template-columns:1fr !important;
}


}

#clients-section .client-logo-card img{
  max-width:100% !important;
  max-height:46px !important;
  object-fit:contain !important;
  display:block !important;
  margin-bottom:10px !important;
}

#clients-section .client-name{
  font-size:.95rem !important;
  line-height:1.35 !important;
  color:var(--text) !important;
  font-weight:600 !important;
}

.fin-grid-4{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:20px !important;
}

@media (max-width:1100px){
  #clients-section .client-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
  .fin-grid-4{grid-template-columns:repeat(3,minmax(0,1fr)) !important}
}

@media (max-width:1080px){
  .photo-grid,.clients-grid,.fin-grid,.footer-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-wrap,.form-wrap,.md-wrap{grid-template-columns:1fr}
}

@media (max-width:760px){
  .menu-btn{display:block}
  .site-nav{display:none;position:absolute;right:4vw;top:72px;flex-direction:column;gap:14px;background:#fff;border:1px solid var(--line);padding:16px;border-radius:18px;box-shadow:var(--shadow)}
  .site-nav.open{display:flex}
  .photo-grid,.clients-grid,.fin-grid,.footer-grid,.form-row,.table-toolbar{grid-template-columns:1fr}
  .table-toolbar{grid-template-columns:1fr !important}
  .project-card > a{height:300px}
  .gallery-main{height:320px !important}
  .thumb{width:110px !important;height:72px !important;flex:0 0 110px !important}
  #clients-section .client-grid{grid-template-columns:1fr !important}
  .fin-grid-4{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
}

/* ================= PREMIUM FULL SCREEN PROJECT GALLERY ================= */

.project-layout{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 auto !important;
  overflow:hidden !important;
}

.project-hero .container{
  width:100% !important;
  max-width:100% !important;
  padding:0 !important;
}

.breadcrumbs{
  width:min(1380px,92vw);
  margin:24px auto 18px;
  font-size:14px;
  color:#647995;
}

.gallery-main{
  width:100vw !important;
  height:calc(100vh - 90px) !important;
  min-height:720px !important;
  border:none !important;
  border-radius:0 !important;
  overflow:hidden !important;
  background:#07101e !important;
  box-shadow:none !important;
  position:relative !important;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(7,16,30,.70), rgba(7,16,30,.08) 45%, rgba(7,16,30,.18)),
    linear-gradient(to right, rgba(7,16,30,.35), transparent 45%);
  pointer-events:none;
}

.gallery-main img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
  transform:scale(1.01);
  transition:transform .6s ease, opacity .4s ease !important;
}

.gallery-main:hover img{
  transform:scale(1.045);
}

.thumb-row{
  width:min(1380px,92vw) !important;
  margin:24px auto 0 !important;
  display:flex !important;
  gap:18px !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  padding:8px 0 22px !important;
  flex-wrap:nowrap !important;
  scrollbar-width:thin !important;
}

.thumb-row::-webkit-scrollbar{
  height:8px;
}

.thumb-row::-webkit-scrollbar-thumb{
  background:#b9c7da;
  border-radius:20px;
}

.thumb{
  flex:0 0 190px !important;
  width:190px !important;
  height:118px !important;
  border-radius:18px !important;
  overflow:hidden !important;
  cursor:pointer !important;
  border:3px solid transparent !important;
  background:#fff !important;
  box-shadow:0 14px 32px rgba(0,0,0,.14) !important;
  transition:all .3s ease !important;
}

.thumb:hover{
  transform:translateY(-5px) scale(1.02);
}

.thumb.active{
  border-color:#d3a227 !important;
  box-shadow:0 18px 42px rgba(211,162,39,.30) !important;
}

.thumb img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.detail-card{
  width:min(1380px,92vw) !important;
  margin:34px auto 0 !important;
  padding:34px !important;
  border:1px solid var(--line) !important;
  border-radius:30px !important;
  background:#fff !important;
  box-shadow:0 24px 60px rgba(17,34,60,.10) !important;
}

.detail-card h1{
  font-size:clamp(2rem,4vw,3.5rem) !important;
  line-height:1.05 !important;
  margin:10px 0 18px !important;
  color:#0f2747 !important;
}

.detail-compact{
  display:grid !important;
  grid-template-columns:repeat(2,1fr) !important;
  gap:18px !important;
  margin-top:22px !important;
}

.detail-item{
  padding:18px 20px !important;
  border-radius:18px !important;
  background:#f8fbff !important;
  border:1px solid var(--line) !important;
}

.nav-projects{
  width:min(1380px,92vw) !important;
  margin:24px auto 0 !important;
}

@media(max-width:760px){

  .gallery-main{
    height:72vh !important;
    min-height:520px !important;
  }

  .thumb-row{
    width:92vw !important;
    gap:12px !important;
  }

  .thumb{
    flex:0 0 125px !important;
    width:125px !important;
    height:82px !important;
    border-radius:14px !important;
  }

  .detail-card{
    padding:22px !important;
    border-radius:22px !important;
  }

  .detail-compact{
    grid-template-columns:1fr !important;
  }
}

/* SECTORS SECTION */

.sectors-section{
    background:#143a66;
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.sectors-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
    align-items:flex-start;
}

.sectors-left h2{
    font-size:64px;
    line-height:1.15;
    color:#ffffff;
    margin-top:24px;
    margin-bottom:0;
    font-weight:700;
}

.sector-kicker{
    color:#d8dde7;
    font-size:18px;
    letter-spacing:6px;
    font-weight:700;
}

.sectors-right{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.sector-item{
    color:#ffffff;
    font-size:42px;
    line-height:1.3;
    font-weight:400;
    border-bottom:1px solid rgba(255,255,255,0.14);
    padding-bottom:18px;
    transition:0.35s ease;
    cursor:pointer;
}

.sector-item:hover{
    transform:translateX(12px);
    color:#d6b26e;
}

@media(max-width:992px){

    .sectors-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .sectors-left h2{
        font-size:46px;
    }

    .sector-item{
        font-size:28px;
    }

}

@media(max-width:768px){

    .sectors-section{
        padding:90px 0;
    }

    .sectors-left h2{
        font-size:36px;
    }

    .sector-item{
        font-size:22px;
    }

}

/* GEOGRAPHIC PRESENCE */

.geo-section{
    background:#eef2f7;
    padding:130px 0;
}

.geo-content{
    max-width:1200px;
}

.geo-kicker{
    color:#6c7482;
    font-size:16px;
    letter-spacing:5px;
    font-weight:700;
    text-transform:uppercase;
}

.geo-content h2{
    font-size:88px;
    line-height:1.05;
    color:#031223;
    margin-top:22px;
    margin-bottom:28px;
    font-weight:800;
}

.geo-content p{
    font-size:42px;
    line-height:1.5;
    color:#68707d;
    margin-bottom:70px;
    font-weight:400;
}

.geo-tags{
    display:flex;
    flex-wrap:wrap;
    gap:34px;
    align-items:center;
}

.geo-tag{
    background:#ffffff;
    border-radius:100px;
    color:#031223;
    font-weight:500;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    border:1px solid #dde4ed;
    transition:0.35s ease;
    cursor:pointer;
}

.geo-tag:hover{
    transform:translateY(-6px);
    background:#143a66;
    color:#ffffff;
}

.geo-tag.large{
    padding:28px 48px;
    font-size:34px;
}

.geo-tag.medium{
    padding:24px 42px;
    font-size:30px;
}

.geo-tag.small{
    padding:22px 38px;
    font-size:28px;
}

@media(max-width:992px){

    .geo-content h2{
        font-size:58px;
    }

    .geo-content p{
        font-size:30px;
    }

    .geo-tag.large,
    .geo-tag.medium,
    .geo-tag.small{
        font-size:22px;
        padding:18px 28px;
    }

}

@media(max-width:768px){

    .geo-section{
        padding:90px 0;
    }

    .geo-content h2{
        font-size:42px;
    }

    .geo-content p{
        font-size:22px;
        margin-bottom:50px;
    }

    .geo-tags{
        gap:18px;
    }

    .geo-tag.large,
    .geo-tag.medium,
    .geo-tag.small{
        width:100%;
        text-align:center;
        font-size:20px;
    }

}
.nav-projects a:first-child{
    margin-right:60px !important;
}
/* ================= FINANCIAL SECTION ================= */

.financial-section{
    background:#f7f9fc;
    padding:80px 0;
}

.financial-section .section-head{
    display:block;
    text-align:center;
    margin-bottom:50px;
}

.financial-section .section-head h2{
    margin:15px 0 10px;
    font-size:clamp(2rem,4vw,3rem);
    color:#132742;
}

.financial-section .section-head p{
    max-width:700px;
    margin:auto;
    color:#647995;
    line-height:1.7;
}

.financial-note{
    margin:10px auto 20px;
    font-size:14px;
    color:#647995;
}

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

.fin-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:30px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:all .35s ease;
}

.fin-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(15,23,42,.14);
}

.fin-card strong{
    display:block;
    font-size:30px;
    font-weight:800;
    color:#0f2747;
    margin-bottom:12px;
}

.fin-card span{
    display:block;
    color:#647995;
    line-height:1.5;
}

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

@media(max-width:700px){
    .fin-grid{
        grid-template-columns:1fr;
    }

    .fin-card{
        padding:22px;
    }

    .fin-card strong{
        font-size:24px;
    }
}
.financial-grid{
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:24px !important;
}

.financial-grid .fin-card{
  background:#fff !important;
  border:1px solid #dbe4f0 !important;
  border-radius:22px !important;
  padding:30px !important;
  box-shadow:0 12px 35px rgba(15,23,42,.08) !important;
}

.financial-grid .fin-card strong{
  display:block !important;
  font-size:30px !important;
  color:#0f2747 !important;
  margin-bottom:10px !important;
}

.financial-grid .fin-card span{
  display:block !important;
  color:#647995 !important;
  line-height:1.5 !important;
}

@media(max-width:1100px){
  .financial-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:700px){
  .financial-grid{
    grid-template-columns:1fr !important;
  }
}
/* ===== PREMIUM HOME PROJECT SHOWCASE ===== */

.index-projects{
    padding:120px 0;
    background:
    linear-gradient(
    180deg,
    #f4f7fb 0%,
    #ffffff 100%
    );
}

.index-projects .container{
    width:99%;
    max-width:2200px;
    margin:auto;
    padding:0 24px;
}

.index-projects .projects-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    width:100%;

}

/* CARD */

.index-projects .project-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.05);

    box-shadow:
    0 15px 35px rgba(15,23,42,.04),
    0 30px 80px rgba(15,23,42,.07);

    transition:all .55s ease;
}

.index-projects .project-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(15,23,42,.08),
    0 40px 90px rgba(15,23,42,.15);

}

/* IMAGE */

.index-projects .project-image-wrap{

    height:380px;
    overflow:hidden;
    position:relative;
    background:#eef2f7;

}

.index-projects .project-image-wrap::after{

    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.18),
    transparent
    );

}

.index-projects .project-image-wrap{

    height:380px;
    overflow:hidden;
    position:relative;
    background:#eef2f7;
    border-radius:32px 32px 0 0;

}

.index-projects .project-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .9s ease;
}



.index-projects .project-card:hover img{

    transform:scale(1.08);

}

/* CONTENT */

.index-projects .project-content{

    padding:32px;

}

.index-projects .project-category{

    color:#c89b3c;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:14px;

}

.index-projects .project-title{

    font-size:28px;
    line-height:1.25;
    margin-bottom:14px;
    font-weight:800;

}

.index-projects .project-title a{

    text-decoration:none;
    color:#102b55;
    transition:.3s;

}

.index-projects .project-title a:hover{

    color:#c89b3c;

}

.index-projects .project-desc{

    font-size:15px;
    color:#64748b;
    line-height:1.8;

}

/* RESPONSIVE */

@media(max-width:1400px){

.index-projects .projects-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:950px){

.index-projects .projects-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.index-projects .projects-grid{

grid-template-columns:1fr;

}

.index-projects .project-image-wrap{

height:300px;

}

}/* HOME PAGE MOBILE MENU FIX */

@media(max-width:768px){

    .menu-btn{
        display:block !important;
        background:none;
        border:none;
        font-size:32px;
        color:#102b55;
        cursor:pointer;
    }

    .site-nav{
        display:none !important;
    }

    .site-nav.open{
        display:flex !important;
        flex-direction:column !important;
        position:absolute !important;
        top:85px !important;
        right:15px !important;
        width:220px !important;
        padding:25px !important;
        gap:20px !important;
        background:#fff !important;
        border-radius:24px !important;
        box-shadow:0 15px 40px rgba(0,0,0,.18) !important;
        z-index:99999 !important;
    }

}

