
  :root{
    --purple: #5B2A83;
    --purple-dark: #3E1D5C;
    --green: #2E8B3D;
    --green-dark: #1F6B2B;
    --cream: #FBF9F5;
    --ink: #2B2230;
  }

  body{
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
  }

  h1,h2,h3, .brand-font{
    font-family: 'Inter', sans-serif;
  }

  /* ===== HEADER ===== */
  .de-topbar{
    background: var(--purple-dark);
    color: #fff;
    font-size: .85rem;
  }
  .de-topbar a{
    color: #E8D9F5;
    text-decoration: none;
  }
  .de-topbar a:hover{ color:#fff; }

  .de-navbar{
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    padding-top: .6rem;
    padding-bottom: .6rem;
  }
  .de-navbar .navbar-brand img{
    height: 58px;
    width: auto;
  }
  .de-navbar .nav-link{
    color: var(--ink);
    font-weight: 600;
    margin: 0 .5rem;
    position: relative;
  }
  .de-navbar .nav-link:hover,
  .de-navbar .nav-link.active{
    color: var(--purple);
  }
  .de-navbar .nav-link::after{
    content:"";
    position:absolute;
    left:0; bottom:-2px;
    width:0%; height:2px;
    background: var(--green);
    transition: width .25s ease;
  }
  .de-navbar .nav-link:hover::after{ width:100%; }

  .de-btn-quote{
    background: var(--green);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    transition: background .2s ease, transform .2s ease;
  }
  .de-btn-quote:hover{
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
  }

  /* Dropdown */
  .de-navbar .dropdown-toggle::after{
    vertical-align: 2px;
  }
  .de-dropdown{
    border: none;
    border-top: 3px solid var(--green);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    padding: .5rem 0;
    margin-top: .5rem;
  }
  .de-dropdown .dropdown-item{
    font-weight: 500;
    color: var(--ink);
    padding: .5rem 1.2rem;
  }
  .de-dropdown .dropdown-item i{
    color: var(--purple);
  }
  .de-dropdown .dropdown-item:hover,
  .de-dropdown .dropdown-item:focus{
    background: var(--green);
    color: #fff;
  }
  .de-dropdown .dropdown-item:hover i,
  .de-dropdown .dropdown-item:focus i{
    color: #fff;
  }
  @media (min-width: 992px){
    .de-navbar .dropdown:hover .dropdown-menu{
      display: block;
      margin-top: 0;
    }
  }

  /* ===== FOOTER ===== */
  .de-footer{
    background: var(--purple-dark);
    color: #EDE3F5;
    position: relative;
  }
  .de-footer .accent-bar{
    height: 2px;
    background-color: #1F6B2B;
  }
  .de-footer h5{
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
  }
  .de-footer a{
    color: #EDE3F5;
    text-decoration: none;
  }
  .de-footer a:hover{
    color: var(--green);
  }
  .de-footer .list-unstyled li{
    margin-bottom: .55rem;
  }
  .de-footer .list-unstyled li i{
    color: var(--green);
    width: 18px;
  }
  .de-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    margin-right: .5rem;
    transition: background .2s ease;
  }
  .de-social a:hover{
    background: var(--green);
    color:#fff;
  }
  .de-footer-bottom{
    
    font-size: .85rem;
    color: #F3EAFB;
  }
  .de-footer-bottom a{ color:#fff; font-weight:600; }

  /* ===== PAGE BANNER ===== */
  .page-banner{
    background: var(--purple-dark);
    position: relative;
    padding: 70px 0;
    overflow: hidden;
  }
  .page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: radial-gradient(rgba(255,255,255,.12) 1.5px, transparent 1.6px);
    background-size: 18px 18px;
    opacity: .5;
  }
  .page-banner .container{ position:relative; z-index:1; }
  .page-banner h1{
    color:#fff;
    font-family: 'Inter', sans-serif;
    font-weight:700;
    font-size: 42px;
    margin-bottom: 10px;
  }
  .page-banner .breadcrumb-de{
    font-size: 14px;
    color: #E3D3F2;
  }
  .page-banner .breadcrumb-de a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
  }
  .page-banner .breadcrumb-de i{
    font-size: 10px;
    margin: 0 8px;
    color: var(--green);
  }

  /* ===== ABOUT INTRO SECTION ===== */
  .about-section{
    padding: 90px 0;
    overflow: hidden;
  }
  .about-img-wrap{
    position: relative;
  }
  .about-img-wrap .frame-outline{
    position: absolute;
    top: -28px;
    left: -28px;
    width: 70%;
    height: 55%;
    border: 3px solid #E3D9EC;
    z-index: 0;
    border-radius: 6px;
  }
  .about-img-wrap .img-box{
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(59,25,90,.18);
    height: 480px;
  }
  .about-img-wrap .img-box img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-img-wrap .img-box::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(91,42,131,.28) 0%, rgba(46,139,61,.12) 55%, transparent 80%);
    pointer-events: none;
  }
  .about-img-wrap .play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 76px;
    height: 76px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(46,139,61,.4);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
  }
  .about-img-wrap .play-btn:hover{
    transform: translate(-50%,-50%) scale(1.06);
    background: var(--green-dark);
  }
  .about-img-wrap .play-btn i{
    color: #fff;
    font-size: 1.6rem;
    margin-left: 3px;
  }
  .about-img-wrap .base-bar{
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 60%;
    height: 14px;
    background: var(--purple-dark);
    border-radius: 3px;
    z-index: 0;
  }
  /* Pure CSS dot pattern - no SVG */
  .about-img-wrap .dots{
    position: absolute;
    bottom: -30px;
    right: -10px;
    z-index: 0;
    width: 140px;
    height: 70px;
    background-image: radial-gradient(var(--green) 2.5px, transparent 2.6px);
    background-size: 15px 15px;
    background-position: 0 0;
  }

  .about-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .about-badge .sq{
    width: 12px;
    height: 12px;
    background: var(--green);
    display: inline-block;
    border-radius: 2px;
  }
  .about-heading{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 53px;
    line-height: 1.25;
    color: var(--purple-dark);
    margin-bottom: 24px;
  }
  .about-quote{
    border-left: 3px solid var(--green);
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.9;
    color: #4A3F53;
    margin-bottom: 22px;
  }
  .about-section p {
    font-size: 14px;
    line-height: 1.9;
    color: #4A3F53;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
  .about-cta-row{
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
    flex-wrap: wrap;
  }
  .about-btn{
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s ease, transform .2s ease;
  }
  .about-btn:hover{
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
  }
  .about-signature{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .about-signature .sig-name{
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: var(--purple);
    line-height: 1;
  }
  .about-signature .sig-role{
    font-size: 12px;
    color: #7A6E82;
    display: block;
    margin-top: 2px;
  }
  @media (max-width: 991px){
    .about-img-wrap{ margin-bottom: 70px; }
    .about-heading{ font-size: 32px; }
  }

  /* ===== STATS SECTION (circular ring counters, pure CSS) ===== */
  .stats-section{
    background: #ffffff;
    padding: 80px 0 70px;
    position: relative;
  }
  .counter-box{
    text-align:center;
  }
  .counter-ring{
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: 0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: conic-gradient(var(--green) calc(var(--percent) * 1%), #E7E1EC 0);
    position: relative;
    transition: background 1s ease;
  }
  .counter-ring::before{
    content:"";
    position:absolute;
    inset: 12px;
    border-radius: 50%;
    background: #ffffff;
  }
  .counter-inner{
    position: relative;
    z-index: 1;
    display:flex;
    align-items:flex-start;
    line-height: 1;
  }
  .counter-inner .counter-num{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--purple-dark);
  }
  .counter-inner .counter-percent{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--green);
    margin-top: 6px;
    margin-left: 2px;
  }
  .counter-box h6{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .03em;
    color: var(--purple-dark);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .counter-box .counter-sub{
    font-size: 13px;
    color: #8A7E92;
  }
  @media (max-width: 767px){
    .counter-ring{ width:140px; height:140px; }
    .counter-inner .counter-num{ font-size:34px; }
  }

  /* ===== WHY CHOOSE US SECTION ===== */
  .why-section{
    padding: 90px 0;
    background: var(--cream);
  }
  .why-section .section-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.06em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .why-section .section-eyebrow .sq{
    width: 12px; height:12px;
    background: var(--green);
    border-radius:2px;
    display:inline-block;
  }
  .why-section h2{
    font-size: 53px;
    color: var(--purple-dark);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
  }
  .why-section > .container > p{
    font-size: 14px;
    color: #4A3F53;
    max-width: 640px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
  .why-card{
    background:#fff;
    border-radius: 10px;
    padding: 32px 26px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(59,25,90,.08);
    border-bottom: 3px solid transparent;
    transition: border-color .2s ease, transform .2s ease;
  }
  .why-card:hover{
    border-bottom-color: var(--green);
    transform: translateY(-4px);
  }
  .why-card .why-icon{
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #EFE6F6;
    color: var(--purple);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .why-card h5{
    font-family: 'Inter', sans-serif;
    color: var(--purple-dark);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .why-card p{
    font-size: 14px;
    color: #4A3F53;
    margin-bottom: 0;
  }

  /* ===== CTA SECTION ===== */
  .cta-section{
    background: var(--green);
    padding: 50px 0;
    position:relative;
    overflow:hidden;
  }
  .cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: radial-gradient(rgba(255,255,255,.10) 1.5px, transparent 1.6px);
    background-size: 18px 18px;
  }
  .cta-section .container{ position:relative; z-index:1; }
  .cta-section h3{
    font-family: 'Inter', sans-serif;
    color:#fff;
    font-weight:700;
    font-size: 28px;
    margin-bottom: 4px;
  }
  .cta-section p{
    color: #E9F5EA;
    font-size: 14px;
    margin-bottom: 0;
  }
  .cta-btn{
    background: var(--purple-dark);
    color:#fff;
    font-weight:600;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration:none;
    display:inline-block;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
  }
  .cta-btn:hover{
    background: var(--purple);
    color:#fff;
    transform: translateY(-2px);
  }


  /*================service=========================================================================*/

  :root{
    --purple: #5b2a86;
    --ink: #26262f;
    --muted: #767683;
    --line: #ececf1;
    --bg: #ffffff;
  }

  * { box-sizing: border-box; }

  body{
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg);
  }

  h1, h2, h3, h4, .de-heading{
    font-family: 'Inter', sans-serif;
  }

  /* ---------- Page header ---------- */
  .de-page-header{
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 56px 0 60px;
    text-align: center;
  }
  .de-eyebrow{
    color:#2e8b3d;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .de-page-header h1{
    color: var(--ink);
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 14px;
  }
  .de-page-header p{
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.02rem;
  }

  /* ---------- Service cards ---------- */
  .de-services-section{
    padding: 50sspx 0 60px;
  }

  .de-card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
  }
  .de-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(38,38,47,0.1);
    border-color: transparent;
  }

  .de-card-img{
    height: 190px;
    overflow: hidden;
    position: relative;
  }
  .de-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
  }
  .de-card:hover .de-card-img img{
    transform: scale(1.07);
  }

  .de-icon-badge{
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(38,38,47,0.12);
    z-index: 3;
    transition: box-shadow .3s ease, transform .3s ease;
  }
  .de-card:hover .de-icon-badge{
    box-shadow: 0 8px 20px rgba(91,42,134,0.22);
    transform: translateX(-50%) translateY(-3px);
  }
  .de-icon-badge svg{
    width: 24px;
    height: 24px;
    stroke: var(--purple);
  }

  .de-card-body{
    padding: 44px 24px 28px;
    text-align: center;
  }
  .de-card-body h3{
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
  }
  .de-card-body p{
    color: var(--muted);
    font-size: .91rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .de-readmore{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .02em;
    text-decoration: none;
    color: var(--ink);
    position: relative;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--line);
    transition: color .25s ease, border-color .25s ease;
  }
  .de-readmore svg{
    width: 14px;
    height: 14px;
    transition: transform .3s ease;
  }
  .de-readmore:hover{
    color: var(--purple);
    border-color: var(--purple);
  }
  .de-readmore:hover svg{
    transform: translateX(4px);
  }

  /* ---------- CTA strip ---------- */
  .de-cta{
    background: #faf9fc;
    border-top: 1px solid var(--line);
    padding: 44px 0;
  }
  .de-cta-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .de-cta h4{
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.2rem;
  }
  .de-cta p{
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
  .de-cta-btn{
    background: var(--purple);
    color: #fff;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: .92rem;
    transition: background .25s ease;
    white-space: nowrap;
  }
  .de-cta-btn:hover{
    background: #431f66;
    color: #fff;
  }

  @media (max-width: 767px){
    .de-cta-inner{ justify-content: center; text-align: center; }
  }



/*====counter-section=====================*/


.counter-section{
    background:
        linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.counter-box{
    padding:30px 15px;
}

.counter-box h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box p{
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin:0;
    color:#fff;
}

/* =========================================================
   HOME PAGE — HERO (diagonal split)
========================================================= */
.de-hero{
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.de-hero-inner{
  padding: 70px 0 80px;
}
.de-hero-eyebrow-bar{
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 18px 0 22px;
}
.de-hero h1{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.22;
  margin-bottom: 22px;
}
.de-hero h1 .line-purple{ color: var(--purple-dark); display:block; }
.de-hero h1 .line-green{ color: var(--green); display:block; }
.de-hero .sub-heading{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 14px;
}
.de-hero p.lead-text{
  font-size: 14px;
  line-height: 1.9;
  color: #4A3F53;
  font-family: 'Inter', sans-serif;
  max-width: 460px;
  margin-bottom: 30px;
}
.de-hero .btn-row{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.de-btn-solid{
  background: var(--purple-dark);
  color:#fff;
  font-weight:600;
  font-size:14px;
  letter-spacing:.03em;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration:none;
  display:inline-block;
  transition: background .2s ease, transform .2s ease;
  text-transform: uppercase;
}
.de-btn-solid:hover{ background: var(--purple); color:#fff; transform: translateY(-2px); }
.de-btn-outline{
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  font-weight:600;
  font-size:14px;
  letter-spacing:.03em;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration:none;
  display:inline-block;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  text-transform: uppercase;
}
.de-btn-outline:hover{ background: var(--green); color:#fff; transform: translateY(-2px); }

.de-hero-img-wrap{
  position: relative;
  height: 100%;
  min-height: 380px;
}
.de-hero-img-clip{
  position: absolute;
  inset: 0;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  border-radius: 6px;
}
.de-hero-img-clip img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.de-hero-stripe-purple{
  position:absolute;
  top:0; left:0;
  width: 22%;
  height: 100%;
  background: var(--purple-dark);
  clip-path: polygon(0 0, 60% 0, 0 40%);
  z-index: 2;
}
.de-hero-stripe-green{
  position:absolute;
  top:0; left:0;
  width: 30%;
  height: 100%;
  background: var(--green);
  clip-path: polygon(0 0, 40% 0, 0 22%);
  z-index: 1;
  opacity: .9;
}
@media (max-width: 991px){
  .de-hero h1{ font-size: 32px; }
  .de-hero-img-wrap{ min-height: 280px; margin-top: 40px; }
  .de-hero-img-clip{ clip-path: none; border-radius: 10px; }
  .de-hero-stripe-purple, .de-hero-stripe-green{ display:none; }
}

/* =========================================================
   ABOUT (alt — watermark logo + feature grid)
========================================================= */
.de-about-alt{ padding: 80px 0; background:#fff; }
.de-logo-mark{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 190px;
  line-height: .8;
  letter-spacing: -14px;
  user-select: none;
}
.de-logo-mark .d{ color: #E3D9EC; }
.de-logo-mark .e{ color: #D9EEDB; margin-left: -34px; }
.de-about-alt .about-eyebrow{
  color: var(--purple-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 14px;
}
.de-about-alt .about-eyebrow span{ color: var(--green); }
.de-about-alt p{
  font-size: 14px;
  line-height: 1.9;
  color: #4A3F53;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}
.de-feature-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-top: 10px;
}
.de-feature-item{
  display:flex;
  align-items:flex-start;
  gap: 14px;
}
.de-feature-item .ico{
  width: 46px;
  height: 46px;
  min-width:46px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.2rem;
  color:#fff;
}
.de-feature-item .ico.purple{ background: var(--purple); }
.de-feature-item .ico.green{ background: var(--green); }
.de-feature-item h6{
  font-family: 'Inter', sans-serif;
  font-weight:700;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 15px;
}
.de-feature-item span{
  font-size: 13px;
  color: #766f7c;
}

/* =========================================================
   SERVICES (alt cards — icon + title header, image below)
========================================================= */
.de-services-alt{ padding: 80px 0; background: var(--cream); }
.de-section-title{
  text-align:center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--purple-dark);
  margin-bottom: 10px;
}
.de-section-title-bar{
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 0 auto 46px;
}
.svc-card{
  background:#fff;
  border-radius: 8px;
  padding: 26px;
  height:100%;
  box-shadow: 0 8px 24px rgba(59,25,90,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover{ transform: translateY(-6px); box-shadow: 0 16px 34px rgba(59,25,90,.14); }
.svc-card-head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 18px;
}
.svc-card-head .ico{
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size: 1.25rem;
}
.svc-card-head .ico.purple{ background: var(--purple); }
.svc-card-head .ico.green{ background: var(--green); }
.svc-card-head h5{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.svc-card-img{
  border-radius: 6px;
  overflow: hidden;
  height: 170px;
  margin-bottom: 16px;
}
.svc-card-img img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .5s ease;
}
.svc-card:hover .svc-card-img img{ transform: scale(1.08); }
.svc-card p{
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b6373;
  margin:0;
}

/* =========================================================
   WHY CHOOSE US (icon strip)
========================================================= */
.de-why-strip{
  background: #EFEAF3;
  padding: 46px 0;
}
.de-why-strip .de-section-title{ font-size: 26px; }
.why-strip-item{
  text-align:center;
  padding: 0 10px;
  border-right: 1px solid #DCD3E4;
}
.why-strip-item:last-child{ border-right:none; }
.why-strip-item .ico{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 12px;
  color: var(--purple-dark);
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(59,25,90,.10);
}
.why-strip-item span{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  display:block;
}
@media (max-width: 767px){
  .why-strip-item{ border-right:none; border-bottom: 1px solid #DCD3E4; padding-bottom: 20px; margin-bottom: 20px; }
}

/* =========================================================
   PROJECTS GALLERY
========================================================= */
.de-projects{ padding: 80px 0; background:#fff; }
.proj-thumb{
  border-radius: 6px;
  overflow: hidden;
  height: 190px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.proj-thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .5s ease;
}
.proj-thumb:hover img{ transform: scale(1.1); }
.de-view-more-btn{
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, color .2s ease;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.de-view-more-btn:hover{ background: var(--green); color:#fff; }

/* =========================================================
   CTA BANNER (alt — purple)
========================================================= */
.cta-section-alt{
  background: var(--purple-dark);
  padding: 38px 0;
}
.cta-section-alt .cta-phone-ico{
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background:#fff;
  color: var(--purple-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.4rem;
}
.cta-section-alt h3{
  font-family: 'Inter', sans-serif;
  color:#fff;
  font-weight:700;
  font-size: 24px;
  margin-bottom: 2px;
}
.cta-section-alt p{
  color: #E3D3F2;
  font-size: 14px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}
.cta-btn-white{
  background: #fff;
  color: var(--purple-dark);
  font-weight:700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration:none;
  display:inline-block;
  transition: background .2s ease, transform .2s ease;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.cta-btn-white:hover{ background: var(--green); color:#fff; transform: translateY(-2px); }

/* =========================================================
   STATS STRIP (icon + number + label — purple bar)
========================================================= */
.de-stats-strip{
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  padding: 40px 0;
}
.stat-item{
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 6px 10px;
}
.stat-item .ico{
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  font-size: 1.4rem;
}
.stat-item .num{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  line-height: 1.1;
}
.stat-item .lbl{
  font-size: 13px;
  color: #E3D3F2;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 767px){
  .stat-item{ justify-content:flex-start; }
}

/* =========================================================
   CLIENTS STRIP
========================================================= */
.de-clients{
  padding: 60px 0;
  background: #fff;
}
.client-badge{
  height: 90px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--cream);
  border: 1px solid #ECE4F2;
  border-radius: 8px;
  padding: 10px 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.client-badge:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(59,25,90,.10);
}
.client-badge span{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--purple-dark);
  text-align: center;
  line-height: 1.2;
}
.client-badge span em{
  display:block;
  font-style: normal;
  font-weight: 500;
  font-size: 10.5px;
  color: var(--green);
  letter-spacing: .06em;
  margin-top: 2px;
  text-transform: uppercase;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.de-testimonials{
  padding: 80px 0;
  background: var(--why-bg, #EFEAF3);
}
.testi-card{
  background: #fff;
  border-radius: 10px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(59,25,90,.08);
  position: relative;
}
.testi-card .stars{
  color: #F2B705;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card .quote-ico{
  color: var(--green);
  opacity: .25;
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.testi-card p.testi-text{
  font-size: 13.5px;
  line-height: 1.9;
  color: #4A3F53;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  min-height: 95px;
}
.testi-person{
  display:flex;
  align-items:center;
  gap: 12px;
  border-top: 1px solid #EFE8F5;
  padding-top: 16px;
}
.testi-person img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-person h6{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--purple-dark);
  margin: 0;
}
.testi-person span{
  font-size: 12px;
  color: #8A7E92;
}

/* --- INLINE CSS FROM INDEX.HTML --- */

        /* Core Styling */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Fixed Compact Height For Professional Look */
#profSlider {
    width: 100%;
    height: 520px; /* Zyada bada nahi hai, banner ke liye perfect height hai */
    background-color: #fff;
    overflow: hidden;
}

.carousel-inner, .carousel-item {
    height: 100%;
}

/* Branding Colors */
:root {
    --purple: #2b1055;
    --green: #2d8a22;
}

.clr-purple { color: var(--purple); }
.clr-green { color: var(--green); }

/* Left Text Layout */
.content-col {
    background-color: #ffffff;
    padding: 0 5% 0 8%;
    z-index: 10;
}

.main-heading {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.accent-line {
    width: 65px;
    height: 3px;
    background-color: var(--green);
    margin: 18px 0;
}

.sub-heading {
    font-size: 1.35rem;
    color: #222;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.desc-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 460px;
}

/* Professional Buttons */
.btn-box .btn {
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    margin-right: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.btn-purple-filled {
    background-color: var(--purple);
    color: #fff;
    border: 2px solid var(--purple);
}
.btn-purple-filled:hover {
    background-color: #1e0b3c;
    border-color: #1e0b3c;
    color: #fff;
}

.btn-green-outline {
    background-color: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-green-outline:hover {
    background-color: var(--green);
    color: #fff;
}

/* Right Side Image & Diagonal Cuts */
.image-col {
    overflow: hidden;
}

.img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Yeh precise cut banata hai left side me */
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: relative;
    z-index: 1;
}

/* Custom Shape Borders */
.shape-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.border-purple {
    background-color: var(--purple);
    clip-path: polygon(11% 0%, 15.5% 0%, 0.5% 100%, -4% 100%);
    z-index: 3;
}

.border-green {
    background-color: var(--green);
    clip-path: polygon(15% 0%, 20% 0%, 5% 100%, 0% 100%);
    z-index: 2;
}

/* Flat Premium Indicators */
.custom-dots [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--purple);
    border: none;
    opacity: 0.4;
}
.custom-dots .active {
    opacity: 1;
    background-color: var(--green);
}

/* Responsive Handling (Mobile / Tablet) */
@media (max-width: 991px) {
    #profSlider {
        height: auto;
    }
    .content-col {
        padding: 40px 20px;
        order: 2;
    }
    .image-col {
        height: 280px;
        order: 1;
    }
    .img-bg {
        clip-path: none; /* Mobile par clean display ke liye cut remove kiya */
    }
    .shape-layer {
        display: none; /* Hide lines on mobile to avoid overlap */
    }
    .main-heading {
        font-size: 1.8rem;
    }
    .sub-heading {
        font-size: 1.1rem;
    }
}
    
/* ---------- ABOUT US & OTHER PAGES CSS ---------- */

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
}
.hero-blob {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91,42,131,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--green) 2px, transparent 2.5px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 0;
}
.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}
.text-purple { color: var(--purple); }
.text-green { color: var(--green); }

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(91,42,131,0.2);
    color: #fff;
}
.btn-outline-brand {
    border: 2px solid var(--purple);
    color: var(--purple);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline-brand:hover {
    background: var(--purple);
    color: #fff;
}
.btn-light-brand {
    background: #fff;
    color: var(--purple-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-light-brand:hover {
    background: var(--green);
    color: #fff;
}

/* Image Wraps & Badges */
.hero-img-wrap {
    position: relative;
    z-index: 1;
}
.arc-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--green);
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
    z-index: -1;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #fff;
}
.bg-watermark {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 300px;
    font-weight: 900;
    color: rgba(91,42,131,0.03);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}
.story-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--green);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(46,139,61,0.3);
}
.exp-badge .num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.exp-badge .lbl {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Icons */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.bg-purple-solid {
    background: var(--purple);
    color: #fff;
}
.bg-green-solid {
    background: var(--green);
    color: #fff;
}

/* Stats */
.stats-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-40px);
}
.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-item .num {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 10px 0 5px;
}
.stat-item .lbl {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Feature Cards */
.feature-card, .value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card:hover, .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--purple);
}
.feature-card .icon-circle, .value-card .icon-circle {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Process & Journey */
.process-step, .journey-item {
    position: relative;
    text-align: center;
}
.step-num, .year {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.85rem;
}
.step-num.bg-purple-solid, .year {
    background: var(--purple);
    color: #fff;
}
.circle-outline {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green);
    margin: 0 auto 20px;
    background: #fff;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 75px;
    right: -25%;
    width: 50%;
    height: 2px;
    background: dashed 2px #ccc;
    z-index: -1;
}
.process-step:last-child::after {
    display: none;
}
@media (max-width: 768px) {
    .process-step::after { display: none; }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(91,42,131,0.3);
    margin-bottom: 80px;
}
/* ---------- SERVICES & MISC CSS ---------- */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

  :root{
    --purple: #5B2A83;
    --purple-dark: #3E1D5C;
    --green: #2E8B3D;
    --green-dark: #1F6B2B;
    --cream: #FBF9F5;
    --ink: #2B2230;
  }

  body{
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
  }

  h1,h2,h3, .brand-font{
    font-family: 'Inter', sans-serif;
  }

  /* ===== HEADER ===== */
  .de-topbar{
    background: var(--purple-dark);
    color: #fff;
    font-size: .85rem;
  }
  .de-topbar a{
    color: #E8D9F5;
    text-decoration: none;
  }
  .de-topbar a:hover{ color:#fff; }

  .de-navbar{
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    padding-top: .6rem;
    padding-bottom: .6rem;
  }
  .de-navbar .navbar-brand img{
    height: 58px;
    width: auto;
  }
  .de-navbar .nav-link{
    color: var(--ink);
    font-weight: 600;
    margin: 0 .5rem;
    position: relative;
  }
  .de-navbar .nav-link:hover,
  .de-navbar .nav-link.active{
    color: var(--purple);
  }
  .de-navbar .nav-link::after{
    content:"";
    position:absolute;
    left:0; bottom:-2px;
    width:0%; height:2px;
    background: var(--green);
    transition: width .25s ease;
  }
  .de-navbar .nav-link:hover::after{ width:100%; }

  .de-btn-quote{
    background: var(--green);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    transition: background .2s ease, transform .2s ease;
  }
  .de-btn-quote:hover{
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
  }

  /* Dropdown */
  .de-navbar .dropdown-toggle::after{
    vertical-align: 2px;
  }
  .de-dropdown{
    border: none;
    border-top: 3px solid var(--green);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    padding: .5rem 0;
    margin-top: .5rem;
  }
  .de-dropdown .dropdown-item{
    font-weight: 500;
    color: var(--ink);
    padding: .5rem 1.2rem;
  }
  .de-dropdown .dropdown-item i{
    color: var(--purple);
  }
  .de-dropdown .dropdown-item:hover,
  .de-dropdown .dropdown-item:focus{
    background: var(--green);
    color: #fff;
  }
  .de-dropdown .dropdown-item:hover i,
  .de-dropdown .dropdown-item:focus i{
    color: #fff;
  }
  @media (min-width: 992px){
    .de-navbar .dropdown:hover .dropdown-menu{
      display: block;
      margin-top: 0;
    }
  }

  /* ===== FOOTER ===== */
  .de-footer{
    background: var(--purple-dark);
    color: #EDE3F5;
    position: relative;
  }
  .de-footer .accent-bar{
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--purple));
  }
  .de-footer h5{
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
  }
  .de-footer a{
    color: #EDE3F5;
    text-decoration: none;
  }
  .de-footer a:hover{
    color: var(--green);
  }
  .de-footer .list-unstyled li{
    margin-bottom: .55rem;
  }
  .de-footer .list-unstyled li i{
    color: var(--green);
    width: 18px;
  }
  .de-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    margin-right: .5rem;
    transition: background .2s ease;
  }
  .de-social a:hover{
    background: var(--green);
    color:#fff;
  }
  .de-footer-bottom{
    
    font-size: .85rem;
    color: #F3EAFB;
  }
  .de-footer-bottom a{ color:#fff; font-weight:600; }

  /* ===== PAGE BANNER ===== */
  .page-banner{
    background: var(--purple-dark);
    position: relative;
    padding: 70px 0;
    overflow: hidden;
  }
  .page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: radial-gradient(rgba(255,255,255,.12) 1.5px, transparent 1.6px);
    background-size: 18px 18px;
    opacity: .5;
  }
  .page-banner .container{ position:relative; z-index:1; }
  .page-banner h1{
    color:#fff;
    font-family: 'Inter', sans-serif;
    font-weight:700;
    font-size: 42px;
    margin-bottom: 10px;
  }
  .page-banner .breadcrumb-de{
    font-size: 14px;
    color: #E3D3F2;
  }
  .page-banner .breadcrumb-de a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
  }
  .page-banner .breadcrumb-de i{
    font-size: 10px;
    margin: 0 8px;
    color: var(--green);
  }

  /* ===== ABOUT INTRO SECTION ===== */
  .about-section{
    padding: 90px 0;
    overflow: hidden;
  }
  .about-img-wrap{
    position: relative;
  }
  .about-img-wrap .frame-outline{
    position: absolute;
    top: -28px;
    left: -28px;
    width: 70%;
    height: 55%;
    border: 3px solid #E3D9EC;
    z-index: 0;
    border-radius: 6px;
  }
  .about-img-wrap .img-box{
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(59,25,90,.18);
    height: 480px;
  }
  .about-img-wrap .img-box img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-img-wrap .img-box::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(91,42,131,.28) 0%, rgba(46,139,61,.12) 55%, transparent 80%);
    pointer-events: none;
  }
  .about-img-wrap .play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 76px;
    height: 76px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(46,139,61,.4);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
  }
  .about-img-wrap .play-btn:hover{
    transform: translate(-50%,-50%) scale(1.06);
    background: var(--green-dark);
  }
  .about-img-wrap .play-btn i{
    color: #fff;
    font-size: 1.6rem;
    margin-left: 3px;
  }
  .about-img-wrap .base-bar{
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 60%;
    height: 14px;
    background: var(--purple-dark);
    border-radius: 3px;
    z-index: 0;
  }
  /* Pure CSS dot pattern - no SVG */
  .about-img-wrap .dots{
    position: absolute;
    bottom: -30px;
    right: -10px;
    z-index: 0;
    width: 140px;
    height: 70px;
    background-image: radial-gradient(var(--green) 2.5px, transparent 2.6px);
    background-size: 15px 15px;
    background-position: 0 0;
  }

  .about-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .about-badge .sq{
    width: 12px;
    height: 12px;
    background: var(--green);
    display: inline-block;
    border-radius: 2px;
  }
  .about-heading{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 53px;
    line-height: 1.25;
    color: var(--purple-dark);
    margin-bottom: 24px;
  }
  .about-quote{
    border-left: 3px solid var(--green);
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.9;
    color: #4A3F53;
    margin-bottom: 22px;
  }
  .about-section p {
    font-size: 14px;
    line-height: 1.9;
    color: #4A3F53;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
  .about-cta-row{
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
    flex-wrap: wrap;
  }
  .about-btn{
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s ease, transform .2s ease;
  }
  .about-btn:hover{
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
  }
  .about-signature{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .about-signature .sig-name{
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: var(--purple);
    line-height: 1;
  }
  .about-signature .sig-role{
    font-size: 12px;
    color: #7A6E82;
    display: block;
    margin-top: 2px;
  }
  @media (max-width: 991px){
    .about-img-wrap{ margin-bottom: 70px; }
    .about-heading{ font-size: 32px; }
  }

  /* ===== STATS SECTION (circular ring counters, pure CSS) ===== */
  .stats-section{
    background: #ffffff;
    padding: 80px 0 70px;
    position: relative;
  }
  .counter-box{
    text-align:center;
  }
  .counter-ring{
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: 0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: conic-gradient(var(--green) calc(var(--percent) * 1%), #E7E1EC 0);
    position: relative;
    transition: background 1s ease;
  }
  .counter-ring::before{
    content:"";
    position:absolute;
    inset: 12px;
    border-radius: 50%;
    background: #ffffff;
  }
  .counter-inner{
    position: relative;
    z-index: 1;
    display:flex;
    align-items:flex-start;
    line-height: 1;
  }
  .counter-inner .counter-num{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--purple-dark);
  }
  .counter-inner .counter-percent{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--green);
    margin-top: 6px;
    margin-left: 2px;
  }
  .counter-box h6{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .03em;
    color: var(--purple-dark);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .counter-box .counter-sub{
    font-size: 13px;
    color: #8A7E92;
  }
  @media (max-width: 767px){
    .counter-ring{ width:140px; height:140px; }
    .counter-inner .counter-num{ font-size:34px; }
  }

  /* ===== WHY CHOOSE US SECTION ===== */
  .why-section{
    padding: 90px 0;
    background: var(--cream);
  }
  .why-section .section-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.06em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .why-section .section-eyebrow .sq{
    width: 12px; height:12px;
    background: var(--green);
    border-radius:2px;
    display:inline-block;
  }
  .why-section h2{
    font-size: 53px;
    color: var(--purple-dark);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
  }
  .why-section > .container > p{
    font-size: 14px;
    color: #4A3F53;
    max-width: 640px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
  .why-card{
    background:#fff;
    border-radius: 10px;
    padding: 32px 26px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(59,25,90,.08);
    border-bottom: 3px solid transparent;
    transition: border-color .2s ease, transform .2s ease;
  }
  .why-card:hover{
    border-bottom-color: var(--green);
    transform: translateY(-4px);
  }
  .why-card .why-icon{
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #EFE6F6;
    color: var(--purple);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .why-card h5{
    font-family: 'Inter', sans-serif;
    color: var(--purple-dark);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .why-card p{
    font-size: 14px;
    color: #4A3F53;
    margin-bottom: 0;
  }

  /* ===== CTA SECTION ===== */
  .cta-section{
    background: var(--green);
    padding: 50px 0;
    position:relative;
    overflow:hidden;
  }
  .cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: radial-gradient(rgba(255,255,255,.10) 1.5px, transparent 1.6px);
    background-size: 18px 18px;
  }
  .cta-section .container{ position:relative; z-index:1; }
  .cta-section h3{
    font-family: 'Inter', sans-serif;
    color:#fff;
    font-weight:700;
    font-size: 28px;
    margin-bottom: 4px;
  }
  .cta-section p{
    color: #E9F5EA;
    font-size: 14px;
    margin-bottom: 0;
  }
  .cta-btn{
    background: var(--purple-dark);
    color:#fff;
    font-weight:600;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration:none;
    display:inline-block;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
  }
  .cta-btn:hover{
    background: var(--purple);
    color:#fff;
    transform: translateY(-2px);
  }


  /*================service=========================================================================*/

  :root{
    --purple: #5b2a86;
    --ink: #26262f;
    --muted: #767683;
    --line: #ececf1;
    --bg: #ffffff;
  }

  * { box-sizing: border-box; }

  body{
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg);
  }

  h1, h2, h3, h4, .de-heading{
    font-family: 'Inter', sans-serif;
  }

  /* ---------- Page header ---------- */
  .de-page-header{
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 56px 0 60px;
    text-align: center;
  }
  .de-eyebrow{
    color:#2e8b3d;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .de-page-header h1{
    color: var(--ink);
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 14px;
  }
  .de-page-header p{
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.02rem;
  }

  /* ---------- Service cards ---------- */
  .de-services-section{
    padding: 50sspx 0 60px;
  }

  .de-card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
  }
  .de-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(38,38,47,0.1);
    border-color: transparent;
  }

  .de-card-img{
    height: 190px;
    overflow: hidden;
    position: relative;
  }
  .de-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
  }
  .de-card:hover .de-card-img img{
    transform: scale(1.07);
  }

  .de-icon-badge{
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(38,38,47,0.12);
    z-index: 3;
    transition: box-shadow .3s ease, transform .3s ease;
  }
  .de-card:hover .de-icon-badge{
    box-shadow: 0 8px 20px rgba(91,42,134,0.22);
    transform: translateX(-50%) translateY(-3px);
  }
  .de-icon-badge svg{
    width: 24px;
    height: 24px;
    stroke: var(--purple);
  }

  .de-card-body{
    padding: 44px 24px 28px;
    text-align: center;
  }
  .de-card-body h3{
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
  }
  .de-card-body p{
    color: var(--muted);
    font-size: .91rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .de-readmore{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .02em;
    text-decoration: none;
    color: var(--ink);
    position: relative;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--line);
    transition: color .25s ease, border-color .25s ease;
  }
  .de-readmore svg{
    width: 14px;
    height: 14px;
    transition: transform .3s ease;
  }
  .de-readmore:hover{
    color: var(--purple);
    border-color: var(--purple);
  }
  .de-readmore:hover svg{
    transform: translateX(4px);
  }

  /* ---------- CTA strip ---------- */
  .de-cta{
    background: #faf9fc;
    border-top: 1px solid var(--line);
    padding: 44px 0;
  }
  .de-cta-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .de-cta h4{
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.2rem;
  }
  .de-cta p{
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
  .de-cta-btn{
    background: var(--purple);
    color: #fff;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: .92rem;
    transition: background .25s ease;
    white-space: nowrap;
  }
  .de-cta-btn:hover{
    background: #431f66;
    color: #fff;
  }

  @media (max-width: 767px){
    .de-cta-inner{ justify-content: center; text-align: center; }
  }



/*====counter-section=====================*/


.counter-section{
    background:
        linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.counter-box{
    padding:30px 15px;
}

.counter-box h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box p{
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin:0;
    color:#fff;
}

/* =========================================================
   HOME PAGE — HERO (diagonal split)
========================================================= */
.de-hero{
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.de-hero-inner{
  padding: 70px 0 80px;
}
.de-hero-eyebrow-bar{
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 18px 0 22px;
}
.de-hero h1{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.22;
  margin-bottom: 22px;
}
.de-hero h1 .line-purple{ color: var(--purple-dark); display:block; }
.de-hero h1 .line-green{ color: var(--green); display:block; }
.de-hero .sub-heading{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 14px;
}
.de-hero p.lead-text{
  font-size: 14px;
  line-height: 1.9;
  color: #4A3F53;
  font-family: 'Inter', sans-serif;
  max-width: 460px;
  margin-bottom: 30px;
}
.de-hero .btn-row{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.de-btn-solid{
  background: var(--purple-dark);
  color:#fff;
  font-weight:600;
  font-size:14px;
  letter-spacing:.03em;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration:none;
  display:inline-block;
  transition: background .2s ease, transform .2s ease;
  text-transform: uppercase;
}
.de-btn-solid:hover{ background: var(--purple); color:#fff; transform: translateY(-2px); }
.de-btn-outline{
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  font-weight:600;
  font-size:14px;
  letter-spacing:.03em;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration:none;
  display:inline-block;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  text-transform: uppercase;
}
.de-btn-outline:hover{ background: var(--green); color:#fff; transform: translateY(-2px); }

.de-hero-img-wrap{
  position: relative;
  height: 100%;
  min-height: 380px;
}
.de-hero-img-clip{
  position: absolute;
  inset: 0;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  border-radius: 6px;
}
.de-hero-img-clip img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.de-hero-stripe-purple{
  position:absolute;
  top:0; left:0;
  width: 22%;
  height: 100%;
  background: var(--purple-dark);
  clip-path: polygon(0 0, 60% 0, 0 40%);
  z-index: 2;
}
.de-hero-stripe-green{
  position:absolute;
  top:0; left:0;
  width: 30%;
  height: 100%;
  background: var(--green);
  clip-path: polygon(0 0, 40% 0, 0 22%);
  z-index: 1;
  opacity: .9;
}
@media (max-width: 991px){
  .de-hero h1{ font-size: 32px; }
  .de-hero-img-wrap{ min-height: 280px; margin-top: 40px; }
  .de-hero-img-clip{ clip-path: none; border-radius: 10px; }
  .de-hero-stripe-purple, .de-hero-stripe-green{ display:none; }
}

/* =========================================================
   ABOUT (alt — watermark logo + feature grid)
========================================================= */
.de-about-alt{ padding: 80px 0; background:#fff; }
.de-logo-mark{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 190px;
  line-height: .8;
  letter-spacing: -14px;
  user-select: none;
}
.de-logo-mark .d{ color: #E3D9EC; }
.de-logo-mark .e{ color: #D9EEDB; margin-left: -34px; }
.de-about-alt .about-eyebrow{
  color: var(--purple-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 14px;
}
.de-about-alt .about-eyebrow span{ color: var(--green); }
.de-about-alt p{
  font-size: 14px;
  line-height: 1.9;
  color: #4A3F53;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}
.de-feature-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-top: 10px;
}
.de-feature-item{
  display:flex;
  align-items:flex-start;
  gap: 14px;
}
.de-feature-item .ico{
  width: 46px;
  height: 46px;
  min-width:46px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.2rem;
  color:#fff;
}
.de-feature-item .ico.purple{ background: var(--purple); }
.de-feature-item .ico.green{ background: var(--green); }
.de-feature-item h6{
  font-family: 'Inter', sans-serif;
  font-weight:700;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 15px;
}
.de-feature-item span{
  font-size: 13px;
  color: #766f7c;
}

/* =========================================================
   SERVICES (alt cards — icon + title header, image below)
========================================================= */
.de-services-alt{ padding: 80px 0; background: var(--cream); }
.de-section-title{
  text-align:center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--purple-dark);
  margin-bottom: 10px;
}
.de-section-title-bar{
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 0 auto 46px;
}
.svc-card{
  background:#fff;
  border-radius: 8px;
  padding: 26px;
  height:100%;
  box-shadow: 0 8px 24px rgba(59,25,90,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover{ transform: translateY(-6px); box-shadow: 0 16px 34px rgba(59,25,90,.14); }
.svc-card-head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 18px;
}
.svc-card-head .ico{
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size: 1.25rem;
}
.svc-card-head .ico.purple{ background: var(--purple); }
.svc-card-head .ico.green{ background: var(--green); }
.svc-card-head h5{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.svc-card-img{
  border-radius: 6px;
  overflow: hidden;
  height: 170px;
  margin-bottom: 16px;
}
.svc-card-img img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .5s ease;
}
.svc-card:hover .svc-card-img img{ transform: scale(1.08); }
.svc-card p{
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b6373;
  margin:0;
}

/* =========================================================
   WHY CHOOSE US (icon strip)
========================================================= */
.de-why-strip{
  background: #EFEAF3;
  padding: 46px 0;
}
.de-why-strip .de-section-title{ font-size: 26px; }
.why-strip-item{
  text-align:center;
  padding: 0 10px;
  border-right: 1px solid #DCD3E4;
}
.why-strip-item:last-child{ border-right:none; }
.why-strip-item .ico{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 12px;
  color: var(--purple-dark);
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(59,25,90,.10);
}
.why-strip-item span{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  display:block;
}
@media (max-width: 767px){
  .why-strip-item{ border-right:none; border-bottom: 1px solid #DCD3E4; padding-bottom: 20px; margin-bottom: 20px; }
}

/* =========================================================
   PROJECTS GALLERY
========================================================= */
.de-projects{ padding: 80px 0; background:#fff; }
.proj-thumb{
  border-radius: 6px;
  overflow: hidden;
  height: 190px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.proj-thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .5s ease;
}
.proj-thumb:hover img{ transform: scale(1.1); }
.de-view-more-btn{
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, color .2s ease;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.de-view-more-btn:hover{ background: var(--green); color:#fff; }

/* =========================================================
   CTA BANNER (alt — purple)
========================================================= */
.cta-section-alt{
  background: var(--purple-dark);
  padding: 38px 0;
}
.cta-section-alt .cta-phone-ico{
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background:#fff;
  color: var(--purple-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.4rem;
}
.cta-section-alt h3{
  font-family: 'Inter', sans-serif;
  color:#fff;
  font-weight:700;
  font-size: 24px;
  margin-bottom: 2px;
}
.cta-section-alt p{
  color: #E3D3F2;
  font-size: 14px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}
.cta-btn-white{
  background: #fff;
  color: var(--purple-dark);
  font-weight:700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration:none;
  display:inline-block;
  transition: background .2s ease, transform .2s ease;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.cta-btn-white:hover{ background: var(--green); color:#fff; transform: translateY(-2px); }

/* =========================================================
   STATS STRIP (icon + number + label — purple bar)
========================================================= */
.de-stats-strip{
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  padding: 40px 0;
}
.stat-item{
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 6px 10px;
}
.stat-item .ico{
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  font-size: 1.4rem;
}
.stat-item .num{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  line-height: 1.1;
}
.stat-item .lbl{
  font-size: 13px;
  color: #E3D3F2;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 767px){
  .stat-item{ justify-content:flex-start; }
}

/* =========================================================
   CLIENTS STRIP
========================================================= */
.de-clients{
  padding: 60px 0;
  background: #fff;
}
.client-badge{
  height: 90px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--cream);
  border: 1px solid #ECE4F2;
  border-radius: 8px;
  padding: 10px 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.client-badge:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(59,25,90,.10);
}
.client-badge span{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--purple-dark);
  text-align: center;
  line-height: 1.2;
}
.client-badge span em{
  display:block;
  font-style: normal;
  font-weight: 500;
  font-size: 10.5px;
  color: var(--green);
  letter-spacing: .06em;
  margin-top: 2px;
  text-transform: uppercase;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.de-testimonials{
  padding: 80px 0;
  background: var(--why-bg, #EFEAF3);
}
.testi-card{
  background: #fff;
  border-radius: 10px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(59,25,90,.08);
  position: relative;
}
.testi-card .stars{
  color: #F2B705;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card .quote-ico{
  color: var(--green);
  opacity: .25;
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.testi-card p.testi-text{
  font-size: 13.5px;
  line-height: 1.9;
  color: #4A3F53;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  min-height: 95px;
}
.testi-person{
  display:flex;
  align-items:center;
  gap: 12px;
  border-top: 1px solid #EFE8F5;
  padding-top: 16px;
}
.testi-person img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-person h6{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--purple-dark);
  margin: 0;
}
.testi-person span{
  font-size: 12px;
  color: #8A7E92;
}

/* --- INLINE CSS FROM INDEX.HTML --- */

        /* Core Styling */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Fixed Compact Height For Professional Look */
#profSlider {
    width: 100%;
    height: 520px; /* Zyada bada nahi hai, banner ke liye perfect height hai */
    background-color: #fff;
    overflow: hidden;
}

.carousel-inner, .carousel-item {
    height: 100%;
}

/* Branding Colors */
:root {
    --purple: #2b1055;
    --green: #2d8a22;
}

.clr-purple { color: var(--purple); }
.clr-green { color: var(--green); }

/* Left Text Layout */
.content-col {
    background-color: #ffffff;
    padding: 0 5% 0 8%;
    z-index: 10;
}

.main-heading {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.accent-line {
    width: 65px;
    height: 3px;
    background-color: var(--green);
    margin: 18px 0;
}

.sub-heading {
    font-size: 1.35rem;
    color: #222;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.desc-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 460px;
}

/* Professional Buttons */
.btn-box .btn {
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    margin-right: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.btn-purple-filled {
    background-color: var(--purple);
    color: #fff;
    border: 2px solid var(--purple);
}
.btn-purple-filled:hover {
    background-color: #1e0b3c;
    border-color: #1e0b3c;
    color: #fff;
}

.btn-green-outline {
    background-color: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-green-outline:hover {
    background-color: var(--green);
    color: #fff;
}

/* Right Side Image & Diagonal Cuts */
.image-col {
    overflow: hidden;
}

.img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Yeh precise cut banata hai left side me */
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: relative;
    z-index: 1;
}

/* Custom Shape Borders */
.shape-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.border-purple {
    background-color: var(--purple);
    clip-path: polygon(11% 0%, 15.5% 0%, 0.5% 100%, -4% 100%);
    z-index: 3;
}

.border-green {
    background-color: var(--green);
    clip-path: polygon(15% 0%, 20% 0%, 5% 100%, 0% 100%);
    z-index: 2;
}

/* Flat Premium Indicators */
.custom-dots [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--purple);
    border: none;
    opacity: 0.4;
}
.custom-dots .active {
    opacity: 1;
    background-color: var(--green);
}

/* Responsive Handling (Mobile / Tablet) */
@media (max-width: 991px) {
    #profSlider {
        height: auto;
    }
    .content-col {
        padding: 40px 20px;
        order: 2;
    }
    .image-col {
        height: 280px;
        order: 1;
    }
    .img-bg {
        clip-path: none; /* Mobile par clean display ke liye cut remove kiya */
    }
    .shape-layer {
        display: none; /* Hide lines on mobile to avoid overlap */
    }
    .main-heading {
        font-size: 1.8rem;
    }
    .sub-heading {
        font-size: 1.1rem;
    }
}
    
/* ---------- ABOUT US & OTHER PAGES CSS ---------- */

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
}
.hero-blob {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91,42,131,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--green) 2px, transparent 2.5px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 0;
}
.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}
.text-purple { color: var(--purple); }
.text-green { color: var(--green); }

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(91,42,131,0.2);
    color: #fff;
}
.btn-outline-brand {
    border: 2px solid var(--purple);
    color: var(--purple);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline-brand:hover {
    background: var(--purple);
    color: #fff;
}
.btn-light-brand {
    background: #fff;
    color: var(--purple-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-light-brand:hover {
    background: var(--green);
    color: #fff;
}

/* Image Wraps & Badges */
.hero-img-wrap {
    position: relative;
    z-index: 1;
}
.arc-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--green);
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
    z-index: -1;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #fff;
}
.bg-watermark {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 300px;
    font-weight: 900;
    color: rgba(91,42,131,0.03);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}
.story-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--green);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(46,139,61,0.3);
}
.exp-badge .num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.exp-badge .lbl {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Icons */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.bg-purple-solid {
    background: var(--purple);
    color: #fff;
}
.bg-green-solid {
    background: var(--green);
    color: #fff;
}

/* Stats */
.stats-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-40px);
}
.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-item .num {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 10px 0 5px;
}
.stat-item .lbl {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Feature Cards */
.feature-card, .value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card:hover, .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--purple);
}
.feature-card .icon-circle, .value-card .icon-circle {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Process & Journey */
.process-step, .journey-item {
    position: relative;
    text-align: center;
}
.step-num, .year {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.85rem;
}
.step-num.bg-purple-solid, .year {
    background: var(--purple);
    color: #fff;
}
.circle-outline {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green);
    margin: 0 auto 20px;
    background: #fff;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 75px;
    right: -25%;
    width: 50%;
    height: 2px;
    background: dashed 2px #ccc;
    z-index: -1;
}
.process-step:last-child::after {
    display: none;
}
@media (max-width: 768px) {
    .process-step::after { display: none; }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(91,42,131,0.3);
    margin-bottom: 80px;
}
/* ---------- SERVICES & MISC CSS ---------- */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}
.service-card {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(91,42,131,0.12);
}
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}
.icon-box.bg-purple { background: var(--purple); }
.icon-box.bg-green { background: var(--green); }

.card-header-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple-dark);
}
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.service-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}
/* ---------- GALLERY CSS ---------- */
.filter-buttons { text-align: center; margin: 40px 0; }
.filter-buttons .btn { margin: 5px; border: 2px solid var(--purple); color: var(--purple); background: transparent; border-radius: 30px; padding: 8px 24px; font-weight: 600; }
.filter-buttons .btn.active, .filter-buttons .btn:hover { background: var(--purple); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; margin-bottom: 50px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.banner { background: var(--purple-dark); color: #fff; padding: 40px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.banner-left { display: flex; align-items: center; gap: 20px; }
.banner-icon { font-size: 3rem; color: var(--green); }
.banner-text h3 { margin: 0 0 10px; font-weight: 800; }
.banner-text h3 span { color: var(--green); }
.quote-btn { background: var(--green); color: #fff; border: none; padding: 12px 30px; border-radius: 30px; font-weight: bold; }

/* Lightbox Modal CSS Fix for gallery.php */
#lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 12, 24, 0.95);
  justify-content: center;
  align-items: center;
  user-select: none;
}

#lightbox.active {
  display: flex;
}

#lightbox-img {
  max-width: 85%;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

#close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

#close-btn:hover {
  opacity: 1;
}

#prev-btn,
#next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  opacity: 0.6;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#prev-btn:hover,
#next-btn:hover {
  opacity: 1;
}

#prev-btn {
  left: 30px;
}
#prev-btn:hover {
  transform: translateY(-50%) translateX(-4px);
}

#next-btn {
  right: 30px;
}
#next-btn:hover {
  transform: translateY(-50%) translateX(4px);
}

@media (max-width: 768px) {
  #close-btn {
    top: 20px;
    right: 25px;
    font-size: 28px;
  }
  #prev-btn,
  #next-btn {
    font-size: 30px;
    width: 44px;
    height: 44px;
  }
  #prev-btn {
    left: 10px;
  }
  #next-btn {
    right: 10px;
  }
  #lightbox-img {
    max-width: 92%;
  }
}

/* ---------- CONTACT CSS ---------- */
.top-breadcrumb-bar { background: var(--purple-dark); padding: 20px 0; }
.custom-breadcrumb .breadcrumb-item, .custom-breadcrumb .breadcrumb-item a { color: #fff; text-decoration: none; }
.custom-breadcrumb .breadcrumb-item.active { color: var(--green); }
.contact-body-grid { padding: 60px 0; }
.contact-info-block { padding-right: 30px; }
.grid-heading { font-weight: 800; color: var(--purple-dark); margin-bottom: 15px; }
.green-underline { width: 50px; height: 4px; background: var(--green); margin-bottom: 30px; }
.info-card-flex { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.circle-icon-bg { width: 50px; height: 50px; background: var(--purple); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.info-text-content h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.premium-field { padding: 12px 15px; border-radius: 8px; border: 1px solid #ddd; background: #f9f9f9; }
.btn-send-message { background: var(--green); color: #fff; padding: 12px 30px; font-weight: bold; border-radius: 8px; border: none; }
.bottom-trust-strip { background: var(--cream); padding: 40px 0; }
.badge-flex-item { display: flex; align-items: center; gap: 15px; }
.badge-icon-green { font-size: 2rem; color: var(--green); }
.border-right-badge { border-right: 1px solid #ddd; }
@media (max-width: 768px) { .border-right-badge { border-right: none; margin-bottom: 20px; } .contact-info-block { padding-right: 0; margin-bottom: 40px; } }

/* ---------- PROJECTS CSS ---------- */
.projects-hero { position: relative; height: 400px; display: flex; align-items: center; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); z-index: 0; }
.hero-content-wrap { z-index: 1; text-align: center; color: #fff; }
.hero-eyebrow { font-size: 1.2rem; letter-spacing: 3px; color: var(--green); }
.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; }
.title-underline { width: 80px; height: 4px; background: var(--green); margin: 0 auto 20px; }
.hero-desc { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.stats-float { margin-top: -50px; position: relative; z-index: 2; margin-bottom: 50px; }
.stat-icon { font-size: 2rem; margin-right: 15px; }
.stat-icon.purple { color: var(--purple); }
.stat-icon.green { color: var(--green); }
.stats-float .stat-item { display: flex; align-items: center; justify-content: center; flex-direction: row; }
.stats-float .stat-num { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.stats-float .stat-label { font-size: 0.9rem; color: #666; }
/* Project Cards Fix */
.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}
.project-card:hover {
    transform: translateY(-10px);
}
.project-thumb {
    position: relative;
    width: 100%;
    height: 240px;
}
.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}
.project-body {
    padding: 30px 20px 20px;
}
.project-body h5 {
    font-weight: 700;
    margin-bottom: 5px;
}
.project-cat {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.filter-bar {
    text-align: center;
    margin-bottom: 40px;
}
.filter-btn {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
    padding: 8px 20px;
    border-radius: 30px;
    margin: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--purple);
    color: #fff;
}

html, body {
    overflow-x: clip;
    width: 100%;
}
.story-section {
    overflow: hidden;
}

/* Swiper Testimonials Custom Styling */
.testimonials-swiper {
  padding-bottom: 50px !important;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials-swiper .testi-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.de-testimonials .testi-prev,
.de-testimonials .testi-next {
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #EFE8F5;
  border-radius: 50%;
  color: var(--purple, #5B2A83);
  box-shadow: 0 4px 12px rgba(59,25,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}
.de-testimonials .testi-prev {
  left: -22px;
}
.de-testimonials .testi-next {
  right: -22px;
}
.de-testimonials .testi-prev i,
.de-testimonials .testi-next i {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.de-testimonials .testi-prev:hover,
.de-testimonials .testi-next:hover {
  background-color: var(--purple, #5B2A83);
  color: #fff;
  border-color: var(--purple, #5B2A83);
  box-shadow: 0 6px 16px rgba(59,25,90,0.25);
}
.testimonials-swiper .swiper-pagination {
  bottom: 10px !important;
}
.testimonials-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--purple, #5B2A83);
  opacity: 0.3;
  transition: all 0.3s ease;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  opacity: 1;
  background: var(--green, #2E8B3D) !important;
}
@media (max-width: 1200px) {
  .de-testimonials .testi-prev {
    left: 10px;
  }
  .de-testimonials .testi-next {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .de-testimonials .testi-prev,
  .de-testimonials .testi-next {
    display: none !important;
  }
}

/* Swiper Clients Custom Styling */
.clients-swiper {
  padding: 15px 0 !important;
}
.clients-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.clients-swiper .client-badge {
  width: 100%;
  box-sizing: border-box;
}
.de-clients .clients-prev,
.de-clients .clients-next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #EFE8F5;
  border-radius: 50%;
  color: var(--purple, #5B2A83);
  box-shadow: 0 4px 12px rgba(59,25,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}
.de-clients .clients-prev {
  left: -20px;
}
.de-clients .clients-next {
  right: -20px;
}
.de-clients .clients-prev i,
.de-clients .clients-next i {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.de-clients .clients-prev:hover,
.de-clients .clients-next:hover {
  background-color: var(--purple, #5B2A83);
  color: #fff;
  border-color: var(--purple, #5B2A83);
  box-shadow: 0 6px 16px rgba(59,25,90,0.22);
}
@media (max-width: 1200px) {
  .de-clients .clients-prev {
    left: 10px;
  }
  .de-clients .clients-next {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .de-clients .clients-prev,
  .de-clients .clients-next {
    display: none !important;
  }
}

/* Section Padding Uniform Alignment Overrides */
.de-why-strip,
.de-stats-strip,
.de-clients,
.cta-section-alt {
  padding: 80px 0 !important;
}

/* Custom Shaped Breadcrumb Bar Styling */
.top-breadcrumb-bar {
  background: var(--purple-dark, #3E1D5C);
  padding: 24px 0 !important;
  position: relative;
  overflow: hidden;
}
.top-breadcrumb-bar::before {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 62%;
  height: 100%;
  background: linear-gradient(135deg, var(--green, #2E8B3D) 0%, var(--green-dark, #1F6B2B) 100%);
  transform: skewX(-30deg);
  z-index: 1;
}
.top-breadcrumb-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 56.5%;
  width: 4px;
  height: 100%;
  background: #fff;
  opacity: 0.15;
  transform: skewX(-30deg);
  z-index: 1;
}
.top-breadcrumb-bar .container {
  position: relative;
  z-index: 2;
}
.custom-breadcrumb .breadcrumb-item, 
.custom-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.custom-breadcrumb .breadcrumb-item a:hover {
  color: #fff !important;
}
.custom-breadcrumb .breadcrumb-item.active {
  color: var(--green, #2E8B3D) !important;
  font-weight: 600;
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Client Badges Logo Image Styles */
.client-badge {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  height: 100px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-badge img {
  max-width: 190px !important;
  max-height: 90px !important;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}
.client-badge:hover img {
  transform: scale(1.08);
}

/* Projects Page View More Button Style */
.btn-outline-purple {
  background: transparent;
  color: var(--purple, #5B2A83);
  border: 2px solid var(--purple, #5B2A83);
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  cursor: pointer;
  outline: none;
}
.btn-outline-purple:hover {
  background: var(--purple, #5B2A83);
  color: #fff;
  box-shadow: 0 6px 16px rgba(91, 42, 131, 0.2);
  transform: translateY(-2px);
}
.btn-outline-purple:active {
  transform: translateY(0);
}

/* Sticky Navbar fixes */
.de-navbar.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
}

/* Responsive Navbar Logo height on mobile screens */
@media (max-width: 576px) {
  .de-navbar .navbar-brand {
    max-width: 70%;
    margin-right: 0;
  }
  .de-navbar .navbar-brand img {
    height: auto;
    max-width: 100%;
    max-height: 42px;
  }
}

/* About Alt Custom Adjustments */
/* About Alt Exact Layout & Design from Image */
.de-logo-mark-small {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 140px;
  line-height: 0.8;
  letter-spacing: -10px;
  user-select: none;
}
.de-logo-mark-small .d {
  color: #C5B3D9;
}
.de-logo-mark-small .e {
  color: #C3DCC5;
  margin-left: -24px;
}

@media (max-width: 768px) {
  .de-logo-mark-small {
    font-size: 100px;
    letter-spacing: -7px;
  }
  .de-logo-mark-small .e {
    margin-left: -18px;
  }
}

.de-about-alt .about-eyebrow {
  color: var(--purple-dark, #3E1D5C);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  position: relative;
}
.de-about-alt .about-eyebrow span {
  color: var(--green, #2E8B3D);
}
.de-about-alt .about-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px; /* Roughly the width of the word "ABOUT" */
  height: 3px;
  background: var(--green, #2E8B3D);
  border-radius: 2px;
}

.de-about-alt p.about-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #4A3F53;
  margin-bottom: 24px;
}

.de-btn-outline-green {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid var(--green, #2E8B3D);
  color: var(--green, #2E8B3D);
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background: transparent;
}
.de-btn-outline-green:hover {
  background: var(--green, #2E8B3D);
  color: #fff;
  box-shadow: 0 4px 12px rgba(46, 139, 61, 0.2);
}

/* 2x2 Grid with dividers */
.de-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.de-grid-2x2 .grid-cell {
  padding: 24px 20px;
  display: flex;
  align-items: center;
}
.de-grid-2x2 .grid-cell.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.de-grid-2x2 .grid-cell.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.de-grid-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.de-grid-item h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink, #2B2230);
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

.de-grid-item .ico-raw {
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
}
.de-grid-item .ico-raw.purple {
  color: var(--purple-dark, #3E1D5C);
}
.de-grid-item .ico-raw.green {
  color: var(--purple-dark, #3E1D5C); /* Same color as clock icon in image */
}
.de-grid-item .ico-raw.green i {
  color: var(--purple-dark, #3E1D5C);
}
/* Specifically color the clock hands/icon if needed, but bi-clock is fully purple-dark in image */
.de-grid-item .ico-raw.green .bi-clock {
  color: var(--purple-dark, #3E1D5C);
}

.ico-rupee-circle {
  border: 2.5px solid var(--green, #2E8B3D);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-dark, #3E1D5C);
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .de-about-alt .features-col {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .de-about-alt .features-col {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    margin-top: 20px;
  }
}

/* Shift de-about-alt section content slightly to the left on desktop */
@media (min-width: 992px) {
  .de-about-alt .container {
    padding-left: 0;
    padding-right: 30px;
  }
}

/* Why Choose Us Section Visual Overrides */
.de-why-strip {
  background: #F6F3FA !important;
}

.de-why-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--purple-dark, #3E1D5C);
  margin-bottom: 36px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.de-why-title span {
  position: relative;
  padding-bottom: 6px;
}
.de-why-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3.5px;
  background: var(--green, #2E8B3D);
  border-radius: 2px;
}

.why-strip-row {
  background: transparent;
  border-radius: 0;
  padding: 10px 0;
  box-shadow: none;
}

.why-strip-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-strip-item-horizontal {
  display: flex;
  align-items: center;
  padding: 10px 15px;
}

.why-strip-item-horizontal .ico-why {
  font-size: 34px;
  color: var(--purple-dark, #3E1D5C);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  border-right: 1.5px solid rgba(59, 25, 90, 0.15); /* Border end after icon */
  padding-right: 12px;
  margin-right: 14px;
}

.why-strip-item-horizontal .text-why {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink, #2B2230);
}

.why-strip-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0;
}

@media (max-width: 991px) {
  .why-strip-row {
    padding: 10px;
  }
  .why-strip-col {
    justify-content: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .why-strip-col:last-child {
    border-bottom: none;
  }
  .why-strip-item-horizontal {
    padding: 0;
  }
}

/* Stats Strip Exact Layout & Design from Image */
.de-stats-strip {
  background: var(--purple-dark, #3E1D5C) !important;
  padding: 50px 0 !important;
}

.de-stats-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.de-stat-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.de-stat-item-horizontal {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}

.de-stat-item-horizontal .ico-stat {
  font-size: 38px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
}

.de-stat-item-horizontal .num-stat {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  color: #ffffff;
}

.de-stat-item-horizontal .lbl-stat {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.de-stat-divider {
  width: 1px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .de-stat-col {
    justify-content: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .de-stat-col:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Testimonials Exact Layout & Design from Image */
.de-testimonials-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--purple-dark, #3E1D5C);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.de-testimonials-title span {
  position: relative;
  padding-bottom: 6px;
}
.de-testimonials-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3.5px;
  background: var(--green, #2E8B3D);
  border-radius: 2px;
}

/* testi-card custom design */
.de-testimonials .testi-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(59, 25, 90, 0.05);
  position: relative;
  border: 1px solid rgba(59, 25, 90, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.de-testimonials .testi-card .stars {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #FFC107;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.testi-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 14px; /* offset for stars positioning */
  width: 100%;
}

.testi-avatar-wrap {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.testi-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.de-testimonials .testi-card p.testi-text {
  font-size: 14px;
  line-height: 1.8;
  color: #4A3F53;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;
  min-height: 80px;
}

.de-testimonials .testi-card p.testi-text .quote-char {
  color: var(--purple, #5B2A83);
  font-family: serif;
  font-size: 26px;
  line-height: 0;
  margin-right: 4px;
  vertical-align: top;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-info h6.client-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green, #2E8B3D);
  margin: 0;
}

.testi-info span.client-loc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #766f7c;
  font-weight: 500;
}

/* Custom Outlined Navigation Arrows matching Image */
.de-testimonials .testi-prev,
.de-testimonials .testi-next {
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #E5E0EB;
  border-radius: 50%;
  color: var(--purple-dark, #3E1D5C);
  box-shadow: 0 4px 12px rgba(59, 25, 90, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.de-testimonials .testi-prev:hover,
.de-testimonials .testi-next:hover {
  background-color: var(--purple-dark, #3E1D5C);
  color: #fff;
  border-color: var(--purple-dark, #3E1D5C);
  box-shadow: 0 6px 15px rgba(59, 25, 90, 0.2);
}

@media (max-width: 576px) {
  .testi-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 30px;
  }
  .de-testimonials .testi-card .stars {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    top: 15px;
  }
  .testi-info {
    align-items: center;
  }
}

/* CTA BANNER (alt — purple) Custom Overrides matching Image */
.cta-section-alt {
  background: var(--purple-dark, #3E1D5C) !important;
  padding: 40px 0 !important;
  border-bottom: 2px solid #ffffff;
}

.cta-left-ico {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--purple-dark, #3E1D5C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-btn-green {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background-color: var(--green, #2E8B3D);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.cta-btn-green:hover {
  background-color: #1F6B2B; /* Dark green */
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(46, 139, 61, 0.3);
}

.cta-right-phone-ico {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.cta-phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-phone-numbers a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  transition: opacity 0.2s ease;
}
.cta-phone-numbers a:hover {
  opacity: 0.85;
}

@media (max-width: 991px) {
  .cta-section-alt .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px !important;
  }
}

/* Footer Exact Layout & Design from Image */
.de-footer {
  background: var(--purple-dark, #3E1D5C) !important;
  color: #ffffff !important;
  padding: 60px 0 0 0 !important;
}

.de-logo-mark-footer {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 0.8;
  letter-spacing: -3px;
  user-select: none;
}
.de-logo-mark-footer .d {
  color: #ffffff;
}
.de-logo-mark-footer .e {
  color: #ffffff;
  margin-left: -5px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}
.footer-logo-text .title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.footer-logo-text .subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 3px;
  margin-top: 3px;
  line-height: 1.1;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.de-social-footer {
  display: flex;
  gap: 12px;
}
.de-social-footer a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
.de-social-footer a:hover {
  background-color: #ffffff;
  color: var(--purple-dark, #3E1D5C) !important;
  border-color: #ffffff !important;
}
.de-social-footer a i {
  font-size: 16px;
  line-height: 1;
}

.de-footer h5 {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.de-footer .footer-links li {
  margin-bottom: 12px;
}
.de-footer .footer-links a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  margin-bottom: 0 !important;
}
.de-footer .footer-links a:hover {
  color: var(--green, #2E8B3D) !important;
}

.de-footer .footer-contact-info {
  margin: 0;
  padding: 0;
}
.de-footer .footer-contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.de-footer .footer-contact-info li i {
  color: #ffffff;
  font-size: 16px;
  min-width: 20px;
  margin-top: 2px;
}
.de-footer .footer-contact-info li span {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  flex: 1;
}
.de-footer .footer-contact-info li a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  display: inline !important;
  margin-bottom: 0 !important;
  transition: color 0.2s ease;
}
.de-footer .footer-contact-info li a:hover {
  color: var(--green, #2E8B3D) !important;
}

.footer-col-divider {
  position: relative;
}
@media (min-width: 992px) {
  .footer-col-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .footer-col-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 24px;
  }
}

.de-footer-bottom {
  background: var(--green, #2E8B3D) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 15px 0 !important;
  border-top: none !important;
}

/* Partners Section Styling */
.de-partners {
  padding: 80px 0;
  background: #ffffff;
}

.de-partners-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--purple-dark, #3E1D5C);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.de-partners-title span {
  position: relative;
  padding-bottom: 6px;
}
.de-partners-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3.5px;
  background: var(--green, #2E8B3D);
  border-radius: 2px;
}

.partner-box {
  background: #ffffff;
  border: 2px dashed rgba(91, 42, 131, 0.12);
  border-radius: 12px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.partner-box:hover {
  border-color: var(--green, #2E8B3D);
  transform: translateY(-4px);
  background: #faf9fc;
}

.partner-placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #a49bad;
}
.partner-placeholder-img i {
  font-size: 28px;
  color: #c0b7c9;
  transition: color 0.3s ease;
}
.partner-box:hover .partner-placeholder-img i {
  color: var(--green, #2E8B3D);
}
.partner-placeholder-img span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Standardize Vertical Padding of All Main Sections */
.de-about-alt,
.de-why-strip,
.de-projects,
.de-partners,
.de-clients,
.de-testimonials {
  padding: 80px 0 !important;
}

@media (max-width: 767px) {
  .de-about-alt,
  .de-why-strip,
  .de-projects,
  .de-partners,
  .de-clients,
  .de-testimonials {
    padding: 50px 0 !important;
  }
}







