/* =========================================================
   BSK CONSTRUCTION - WHITE PREMIUM THEME
   Section-wise CSS | Same font family applied globally
========================================================= */

:root {
  /* --primary: #1238D8; */
   --primary: #0714ca;
  --primary-dark: #0B2394;
  --accent: #ff6926;
  --accent-dark: #C11212;

  --white: #ffffff;
  --light: #F7F9FF;
  --light-blue: #EEF4FF;

  --text: #172033;
  --muted: #393b41;
  --border: #E4EAF5;

  --shadow: 0 18px 45px rgba(18, 56, 216, .10);
  --shadow-red: 0 14px 32px rgba(240, 24, 24, .14);

  --radius: 24px;
  --transition: all .32s ease;

  --font-main: "Outfit", "Segoe UI", sans-serif;
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
small,
label {
  font-family: var(--font-main);
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 50px 0;
}

.bg-dark-soft {
  background: var(--light);
}

.text-gold,
.text-red {
  color: var(--accent) !important;
}

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

.text-secondary {
  color: var(--muted) !important;
}

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

.brand-link {
    color: #ff6926 !important; 
}

/* ================= MODERN FLOATING NAVBAR ================= */

.navbar-custom {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1280px;

  padding: 14px 0;

  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.65);

  border-radius: 22px;

  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.04);

  z-index: 999;
  transition: all .35s ease;
}

/* subtle hover feel */
.navbar-custom:hover {
  box-shadow:
    0 16px 50px rgba(15, 23, 42, 0.12),
    0 4px 16px rgba(15, 23, 42, 0.05);
}

/* ================= LOGO ================= */

.brand-logo {
  width: 190px;
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: 100%;
  object-fit: contain;
}


/* ================= NAV LINKS ================= */

.navbar-nav {
  gap: 10px;
}

.nav-link {
  position: relative;

  color: var(--text) !important;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2px;

  padding: 12px 18px !important;

  border-radius: 14px;

  transition: all .3s ease;
}

/* soft hover background */
.nav-link:hover {
  color: var(--primary) !important;
  background: rgba(58, 89, 163, .06);
  transform: translateY(-1px);
}

/* active modern pill */
.nav-link.active {
  color: #fff !important;

  background: var(--primary);


  box-shadow:
    0 8px 20px rgba(58, 89, 163, .25);

  padding-inline: 22px !important;
}

/* animated dot */
.nav-link::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 6px;

  width: 5px;
  height: 5px;

  background: #fff;

  border-radius: 50%;

  transform: translateX(-50%) scale(0);
  transition: .3s ease;
}

.nav-link.active::after {
  transform: translateX(-50%) scale(1);
}


/* ================= SMALL LABEL ================= */

.small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(18, 56, 216, .08);
  border: 1px solid rgba(18, 56, 216, .14);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
}

.small-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

/* ================= PREMIUM GLASS BUTTONS ================= */

.btn-gold,
.btn-outline-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 60px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: all .45s cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ================= PRIMARY BUTTON ================= */

.btn-gold {
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, .22),
      rgba(255, 255, 255, .05)),
    var(--primary);

  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;

  box-shadow:
    0 14px 34px rgba(18, 56, 216, .20),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

/* glossy light */
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .35),
      transparent);
  transform: skewX(-22deg);
  transition: .9s ease;
  z-index: -1;
}

/* glow */
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top,
      rgba(255, 255, 255, .25),
      transparent 70%);
  opacity: .8;
  z-index: -2;
}

.btn-gold:hover {
  transform: translateY(-5px) scale(1.02);
  color: #fff;

  box-shadow:
    0 22px 45px rgba(18, 56, 216, .28),
    0 8px 18px rgba(240, 24, 24, .10),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}

.btn-gold:hover::before {
  left: 140%;
}

/* ================= OUTLINE GLASS BUTTON ================= */

.btn-outline-gold {
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(15, 23, 42, .08);
  color: var(--text);

  box-shadow:
    0 10px 28px rgba(15, 23, 42, .05),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

/* animated border glow */
.btn-outline-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg,
      rgba(240, 24, 24, .0),
      rgba(240, 24, 24, .4),
      rgba(58, 89, 163, .35),
      rgba(240, 24, 24, .0));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: .45s ease;
}

/* soft floating shine */
.btn-outline-gold::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(rgba(240, 24, 24, .10),
      transparent 70%);
  top: -90px;
  right: -60px;
  transition: .45s ease;
}

.btn-outline-gold:hover {
  color: var(--accent);
  border-color: rgba(240, 24, 24, .18);
  background: rgba(255, 255, 255, .85);

  transform: translateY(-5px);

  box-shadow:
    0 18px 40px rgba(240, 24, 24, .10),
    0 8px 18px rgba(15, 23, 42, .05);
}

.btn-outline-gold:hover::before {
  opacity: 1;
}

.btn-outline-gold:hover::after {
  transform: scale(1.3);
}

/* ================= PRESS EFFECT ================= */

.btn-gold:active,
.btn-outline-gold:active {
  transform: translateY(-1px) scale(.98);
}

/* ================= MOBILE ================= */

@media(max-width:575px) {

  .btn-gold,
  .btn-outline-gold {
    width: 100%;
    padding: 14px 24px;
  }

}

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

.hero {
  min-height: 100vh;
  padding-top: 130px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, .82),
      rgba(255, 255, 255, .62)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80");

  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 56, 216, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 56, 216, .035) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 65px solid rgba(240, 24, 24, .06);
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--text);
}

.hero h1 span,
.hero .text-gold {
  color: var(--primary) !important;
}

.hero p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 18px;
}

.hero-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-6px);
}

.hero-card h3 {
  color: var(--primary);
  font-size: 46px;
  font-weight: 900;
}

/* ================= STATS SECTION ================= */
.stats-section {
  position: relative;
  z-index: 5;
  padding: 20px 0;
}

.stats-box {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(31, 58, 101, .12);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(31, 58, 101, .10);
  backdrop-filter: blur(14px);
}

.stat-item {
  position: relative;
  padding: 42px 20px;
  text-align: center;
  border-right: 1px solid rgba(31, 58, 101, .10);
  transition: .35s ease;
  overflow: hidden;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(198, 156, 109, .12), rgba(31, 58, 101, .05));
  opacity: 0;
  transform: scale(.92);
  transition: .35s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.stat-item h2 {
  position: relative;
  color: var(--primary);
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-item p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

@media(max-width:991px) {
  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(31, 58, 101, .10);
  }
}

@media(max-width:575px) {
  .stats-box {
    border-radius: 24px;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 58, 101, .10);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-item h2 {
    font-size: 38px;
  }
}

/* ================= SECTION TITLE ================= */

.section-title {
  max-width: 820px;
  text-align: center;
  margin: 0 auto 58px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  margin-top: 16px;
  color: var(--text);
}

.section-title p {
  color: var(--muted);
  line-height: 1.85;
}

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

.modern-card {
  height: 100%;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.modern-card::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(240, 24, 24, .055);
  transform: rotate(45deg);
}

.modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 56, 216, .20);
  box-shadow: var(--shadow);
}

.modern-card h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 12px;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--light-blue);
  border: 1px solid rgba(18, 56, 216, .10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
}

.our-expertise {
  background: linear-gradient(135deg,
      #f3f6ff 0%,
      #fff4f4 100%) !important;
}

/* ================= PROCESS SECTION ================= */
.process-orbit-section {
  background: #ffffff;
  overflow: hidden;
  position: relative;
}


.process-orbit-section .section-title {
  margin-bottom: 10px;
}


.process-orbit-section .small-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #2563eb;
  margin-bottom: 10px;
}


.process-orbit-section h2 {
  font-size: 42px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 14px;
}


.process-orbit-section .section-title p {
  max-width: 720px;
  margin: auto;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}


/* ================================
   MAIN CIRCLE
================================ */


.process-cycle {
  width: 470px;
  height: 470px;
  margin: 60px auto 0;
  position: relative;
  border-radius: 50%;
  overflow: hidden;


  background: conic-gradient(
    from -90deg,


    #4f7de8 0deg,
    #4f7de8 56deg,
    #ffffff 57deg,
    #ffffff 59deg,


    #4fc3cf 60deg,
    #4fc3cf 116deg,
    #ffffff 117deg,
    #ffffff 119deg,


    #75c943 120deg,
    #75c943 176deg,
    #ffffff 177deg,
    #ffffff 179deg,


    #ffd23f 180deg,
    #ffd23f 236deg,
    #ffffff 237deg,
    #ffffff 239deg,


    #ffa13b 240deg,
    #ffa13b 296deg,
    #ffffff 297deg,
    #ffffff 299deg,


    #ed765d 300deg,
    #ed765d 356deg,
    #ffffff 357deg,
    #ffffff 359deg
  );
}


/* ================================
   CENTER CONTENT
================================ */


.process-center {
  position: absolute;
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 50%;
  z-index: 5;


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


  text-align: center;
  padding: 20px;
}


.process-center span {
  font-size: 12px;
  font-weight: 900;
  color: #2563eb;
  letter-spacing: 1px;
}


.process-center h3 {
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
  margin: 8px 0;
}


.process-center p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}


/* ================================
   SEGMENTS
================================ */


.process-segment {
  position: absolute;
  width: 118px;
  height: 80px;
  text-align: center;
  z-index: 4;
  color: #ffffff;
  pointer-events: none;
}


.segment-content {
  width: 100%;
  height: 100%;


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


/* NUMBER */


.segment-content span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);


  align-items: center;
  justify-content: center;


  font-size: 13px;
  font-weight: 900;
  color: #ffffff;


  margin-bottom: 8px;
}


/* TITLE */


.segment-content h5 {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}


/* ================================
   POSITIONS
================================ */


.segment-1 {
  top: 20px;
  left: 170px;
}


.segment-2 {
  top: 100px;
  right: 30px;
}


.segment-3 {
  bottom: 120px;
  right: 34px;
}


.segment-4 {
  bottom: 34px;
  left: 180px;
}


.segment-5 {
  bottom: 120px;
  left: 34px;
}


.segment-6 {
  top: 105px;
  left: 24px;
}


/* ================================
   MOBILE
================================ */


@media (max-width: 575px) {


  .process-orbit-section h2 {
    font-size: 30px;
  }


  .process-orbit-section .section-title p {
    font-size: 14px;
  }


  .process-cycle {
    width: 330px;
    height: 330px;
    margin-top: 40px;
  }


  .process-cycle::after {
    width: 165px;
    height: 165px;
  }


  .process-center {
    width: 150px;
    height: 150px;
    padding: 14px;
  }


  .process-center span {
    font-size: 10px;
  }


  .process-center h3 {
    font-size: 15px;
  }


  .process-center p {
    font-size: 10px;
  }


  .process-segment {
    width: 88px;
    height: 62px;
  }


  .segment-content span {
    width: 26px;
    height: 26px;
    font-size: 11px;
    margin-bottom: 4px;
  }


  .segment-content h5 {
    font-size: 10px;
  }


  .segment-1 {
    top: 20px;
    left: 121px;
  }


  .segment-2 {
    top: 70px;
    right: 15px;
  }


  .segment-3 {
    bottom: 85px;
    right: 20px;
  }


  .segment-4 {
    bottom: 15px;
    left: 121px;
  }


  .segment-5 {
    bottom: 72px;
    left: 24px;
  }


  .segment-6 {
    top: 78px;
    left: 17px;
  }
}

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

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 56, 216, .08), rgba(240, 24, 24, .06)),
    #fff;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 56, 216, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 56, 216, .04) 1px, transparent 1px);
  background-size: 54px 54px;
}

.cta-box {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: var(--text);
}

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

.footer {
  position: relative;
  background: #0f172a;
  padding: 40px 0 25px;
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-logo img {
  height: 60px;
}

.footer-desc {
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 420px;
}

.footer-heading {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: .3s;
}

.footer a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
 
}

.footer-contact-item span {
  color: var(--accent);
}

.footer-contact-item small {
  color: rgba(255, 255, 255, .45);
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 30px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
}

.footer-bottom p a {
  color: #fff;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

@media(max-width:575px) {
  .footer {
    text-align: start;
  }

  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social,
  .footer-bottom,
  .footer-bottom-links {
    justify-content: start;
  }
}

/* LOCATION ROW */

.footer-location {

  padding-top: 28px;

}

.location-box {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  transition: .3s ease;
}

.location-box:hover {
  background: rgba(255, 255, 255, .05);
  transform: translateY(-3px);
}

.location-box span {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
}

.location-box small {
  display: block;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 6px;
}

.location-box p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  font-size: 14px;
}

/* ================= ANIMATION ================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {
  .section-padding {
    padding: 72px 0;
  }

  .stats-section {
    margin-top: 0;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .hero-card {
    margin-top: 35px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #e9e5e5;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .navbar-toggler {
    background: var(--primary);
  }
}

@media(max-width:575px) {
  .hero {
    padding-top: 125px;
  }

  .btn-gold,
  .btn-outline-gold {
    width: 100%;
    text-align: center;
  }

  .cta-box {
    padding: 36px 22px;
  }

  .brand-logo {
    width: 150px;
    height: auto;
  }

  .brand-logo img {
    width: 150px;
  }
}

.core-pillars {
  background:
    radial-gradient(circle at top left, rgba(198, 156, 109, .12), transparent 32%),
    #fff;
}

.pillar-block {
  height: 100%;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 58, 101, .12);
  box-shadow: 0 24px 70px rgba(31, 58, 101, .08);
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pillar-head span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(198, 156, 109, .15);
  color: var(--primary);
  font-weight: 700;
}

.pillar-head h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.flip-card {
  height: 180px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.2, .8, .2, 1);
}



.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  padding: 24px;
  border-radius: 24px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(31, 58, 101, .10);
}

.flip-front {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.flip-back {
  background: var(--primary);
  transform: rotateY(180deg);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(198, 156, 109, .16);
  font-size: 26px;
  margin-bottom: 18px;
}

.flip-front h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

.flip-back p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

/* desktop hover */
@media (hover:hover) {
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
}

/* mobile touch */
.flip-card.active .flip-inner {
  transform: rotateY(180deg);
}

@media (hover:none) {
  .flip-card:hover .flip-inner {
    transform: none;
  }

  .flip-card.active .flip-inner {
    transform: rotateY(180deg);
  }
}

@media(max-width:575px) {
  .pillar-block {
    padding: 20px;
    border-radius: 24px;
  }

  .pillar-head {
    align-items: flex-start;
  }

  .pillar-head h3 {
    font-size: 21px;
  }

  .flip-card {
    height: 165px;
  }
}

.gov-trust-section {
  background: #fff;
}

.gov-trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .06);
}

.gov-trust-item {
  position: relative;
  padding: 42px 28px;
  min-height: 285px;
  background: #fff;
  transition: .35s ease;
}

.gov-trust-item:not(:last-child) {
  border-right: 1px solid rgba(15, 23, 42, .08);
}

.gov-trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s ease;
}

.gov-trust-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(240, 24, 24, .06);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 28px;
  font-size: 20px;
}

.gov-trust-item h4 {
  font-size: 21px;
  font-weight: 750;
  color: #111827;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

.gov-trust-item p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}

.gov-trust-item:hover {
  background: #fffafa;
}

.gov-trust-item:hover::before {
  transform: scaleX(1);
}

.gov-trust-item:hover .gov-trust-icon {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 32px rgba(240, 24, 24, .18);
}

/* RESPONSIVE */
@media(max-width:991px) {
  .gov-trust-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .gov-trust-item:nth-child(2) {
    border-right: 0;
  }

  .gov-trust-item:nth-child(1),
  .gov-trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
  }
}

@media(max-width:575px) {
  .gov-trust-panel {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .gov-trust-item {
    min-height: auto;
    padding: 30px 24px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
  }

  .gov-trust-item:last-child {
    border-bottom: 0;
  }
}

.page-banner {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(15, 23, 42, .65), rgba(15, 23, 42, .65)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner .small-label {

  color: #fff;


}

.page-banner h1 {
  margin-top: 18px;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

@media(max-width:768px) {

  .page-banner {
    padding: 100px 0 70px;
  }

  .page-banner h1 {
    font-size: 36px;
  }

}

/* ================= ABOUT SECTION ================= */

.about-section{
  background:#fff;
  position:relative;
  overflow:hidden; /* prevents x overflow */
}

.about-section .container{
  overflow:hidden;
}

.about-section .row{
  margin-left:0;
  margin-right:0;
}

.about-section .col-lg-6{
  padding-left:12px;
  padding-right:12px;
}

.about-image{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  width:100%;
  max-width:100%;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.about-image img{
  width:100%;
  max-width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

.about-image::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.15);
  border-radius:28px;
  pointer-events:none;
}

.about-section h2{
  color:#0f172a;
  line-height:1.2;
  word-break:break-word;
}

.about-section p{
  line-height:1.9;
  font-size:16px;
}

.check-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  color:#334155;
  font-weight:500;
}

.check-item span{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:50%;
  background:rgba(230,60,141,.1);
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  flex-shrink:0;
}

/* ================= TABLET ================= */

@media(max-width:991px){

  .about-section{
    overflow:hidden;
  }

  .about-image img{
    height:400px;
  }

  .about-section .row{
    --bs-gutter-x:0;
  }

}

/* ================= MOBILE ================= */

@media(max-width:575px){

  .about-section{
    padding-left:0;
    padding-right:0;
    overflow:hidden;
  }

  .about-image,
  .about-image::after{
    border-radius:22px;
  }

  .about-image img{
    height:320px;
  }

  .about-section h2{
    font-size:32px;
  }

  .check-item{
    font-size:14px;
  }

}
/* ================= PROJECT SECTION ================= */

.project-section {

  overflow: hidden;
}

/* FILTER BUTTONS */

.project-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* BUTTON */

.project-filter button {
  position: relative;

  border: none;
  background: rgba(255, 255, 255, .75);

  color: #64748b;

  padding: 14px 24px;

  border-radius: 16px;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;

  backdrop-filter: blur(10px);

  transition: .4s cubic-bezier(.22, 1, .36, 1);



  overflow: hidden;
}

/* soft border */

.project-filter button::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  padding: 1px;

  background: linear-gradient(135deg,
      rgba(18, 56, 216, .14),
      rgba(240, 24, 24, .10));



  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* elegant underline */

.project-filter button::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 0;

  width: 0;
  height: 3px;

  border-radius: 20px;

  background:
    var(--accent);

  transform: translateX(-50%);

  transition: .45s cubic-bezier(.22, 1, .36, 1);
}

/* HOVER */

.project-filter button:hover {
  color: var(--primary);

  transform: translateY(-4px);

  box-shadow:
    0 18px 35px rgba(18, 56, 216, .08);
}

/* ACTIVE */

.project-filter button.active {
  color: var(--primary);

  background: #fff;

  box-shadow:
    0 22px 45px rgba(18, 56, 216, .10);
}

/* underline animation */

.project-filter button:hover::after,
.project-filter button.active::after {
  width: 68%;
}

/* PROJECT CARD */

.project-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
  transition: .45s cubic-bezier(.22, 1, .36, 1);
  position: relative;
}



.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .12);
}



/* IMAGE */

.project-img {
  height: 245px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: .6s ease;
}



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

.project-card:hover .project-img::after {
  opacity: .95;
}

/* BODY */

.project-body {
  position: relative;
  padding: 28px;
  background: #fff;
  z-index: 2;
}

.project-body span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 40px;
  background: rgba(240, 24, 24, .08);
  color: var(--accent) !important;
  font-size: 12px;
  letter-spacing: .8px;
}



.project-body h4 {
  color: var(--text);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}

.project-body p {
  line-height: 1.75;
  margin-bottom: 0;
}

/* RESPONSIVE */

@media(max-width:575px) {
  .project-img {
    height: 210px;
  }

  .project-body {
    padding: 24px;
  }

  .project-filter button {
    padding: 10px 18px;
    font-size: 13px;
  }
}

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

.contact-section {
  position: relative;
  background: #fff;
}

.contact-section .modern-card {
  position: relative;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(18, 56, 216, .08);
  border-radius: 32px;
  padding: 42px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, .06),
    0 2px 8px rgba(15, 23, 42, .03);
}

.contact-section .modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg,
      rgba(58, 89, 163, .06),
      transparent 35%,
      rgba(230, 60, 141, .05));
  pointer-events: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  
  gap: 14px;
}

.contact-item i {
  font-size: 18px;
  color: var(--primary);
}

.contact-item p {
  margin: 0;
  color: #475569;
  font-weight: 500;
  font-size: 15px;
}

/* ================= FORM STYLE ================= */

form {
  position: relative;
  z-index: 2;
}

.form-control,
.form-select {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(15, 23, 42, .12);
  border-radius: 0;
  padding: 16px 4px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  box-shadow: none !important;
  transition: .35s ease;
}

.form-control::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  background: transparent;
}

/* animated underline */

.input-group-modern {
  position: relative;
}

.input-group-modern::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,
      var(--primary),
      var(--accent));
  transition: .45s ease;
  border-radius: 20px;
}

.input-group-modern:focus-within::after {
  width: 100%;
}



/* select */

.form-select {
  cursor: pointer;
}

/* contact details */

.contact-section .contact-info p {
  margin-bottom: 18px;
  color: #475569;
  font-weight: 500;
}

.contact-section .contact-info strong {
  display: inline-block;
  min-width: 90px;
  color: var(--primary);
}

.live-project-section {
  background: #f8fafc;
}

.live-project-card {
  position: relative;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}

.live-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, .72), rgba(15, 23, 42, .18));
}

.live-project-content {
  position: absolute;
  left: 50px;
  bottom: 45px;
  z-index: 2;
  color: #fff;
  max-width: 480px;
}

.live-project-content span {
  display: inline-block;
  background: var(--accent);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.live-project-content h4 {
  font-size: 34px;
  font-weight: 800;
}

.live-project-content p {
  margin: 0;
  font-size: 16px;
  opacity: .9;
}

.live-project-section .carousel-item {
  transition: transform .45s ease-in-out;
}

.live-project-section .carousel-control-prev,
.live-project-section .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.live-project-section .carousel-control-prev {
  left: 22px;
}

.live-project-section .carousel-control-next {
  right: 22px;
}

@media (max-width: 767px) {
  .live-project-card {
    height: 300px;
    border-radius: 22px;
  }

  .live-project-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .live-project-content h4 {
    font-size: 24px;
  }

  .live-project-content p {
    font-size: 14px;
  }

  .live-project-section .carousel-control-prev,
  .live-project-section .carousel-control-next {
    width: 42px;
    height: 42px;
  }

  .live-project-section .carousel-control-prev {
    left: 12px;
  }

  .live-project-section .carousel-control-next {
    right: 12px;
  }
}
.career-modal .modal-content {
  border: 0;
  border-radius: 30px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .18);
}

.career-modal .modal-body {
  padding: 35px;
}

.career-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  box-shadow: none;
}

.apply-btn {
  border: none;
  background: transparent;
}

/* ================= GALLERY ================= */

.gallery-section {
  background: #fff;
}

.gallery-card {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .4s ease;
}

.gallery-overlay i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: scale(.8);
  transition: .4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay i {
  transform: scale(1);
}

/* LIGHTBOX */

/* Fixed popup size */
.lb-outerContainer {
  width: 900px !important;
  height: 500px !important;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

/* Image fills popup */
.lb-image {
  width: 100% !important;
  height: 650px !important;
  object-fit: cover !important;
  border-radius: 24px;
}

/* Caption */
.lb-dataContainer {
  width: 1000px !important;
}

/* Responsive */
@media (max-width: 1200px) {

  .lb-outerContainer,
  .lb-dataContainer {
    width: 90vw !important;
  }

  .lb-outerContainer {
    height: 70vh !important;
  }

  .lb-image {
    height: 70vh !important;
  }
}
/* WHATSAPP FLOAT */
  .whatsapp-float{
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37,211,102,.35);
    transition: .3s ease;
    animation: pulseWhatsapp 2s infinite;
  }

  .whatsapp-float:hover{
    transform: translateY(-5px) scale(1.05);
    color: #fff;
  }

  @keyframes pulseWhatsapp{
    0%{
      box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }
    70%{
      box-shadow: 0 0 0 16px rgba(37,211,102,0);
    }
    100%{
      box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
  }

  /* SCROLL TOP BUTTON */
  #scrollTopBtn{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 54px;
    height: 54px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: var(--accent);
    color: #111;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(200,155,60,.35);
  }

  #scrollTopBtn.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #scrollTopBtn:hover{
    transform: translateY(-5px);
  }

  @media(max-width:768px){
    .whatsapp-float{
      width: 52px;
      height: 52px;
      font-size: 26px;
      bottom: 20px;
      left: 18px;
    }

    #scrollTopBtn{
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 18px;
      font-size: 20px;
    }
  }