
.home-hero-section {
    background: linear-gradient(
        110deg,
        #DEDBD5 0%,    
        #f5f3ed 18%,
        #fffbe9 38%,
        #D8A954 65%,  
        #fffbe8 100%
    );
    color: #3b2c12;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 46px 0 rgba(216,169,84,0.10), 0 0px 0px 0 #fff;
    min-height: 480px;
    display: flex;
    align-items: center;

    box-shadow: 0 8px 46px 0 rgba(216,169,84,0.10), 0 0 0 24px #fffbe828 inset;
}

.home-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, #d8a95426 0px, #d8a95426 2px, transparent 3px, transparent 12px),
        radial-gradient(circle at 18% 30%, #deDBD533 33px, transparent 60%),
        radial-gradient(ellipse at 90% 75%, #d8a95444 0px, transparent 75%),
        linear-gradient(120deg, rgba(255,255,255,0.08) 30%, rgba(216,169,84,0.04) 100%);
    pointer-events: none;
    z-index: 1;
    animation: hero-bg-sparkle 7s ease-in-out infinite alternate;
}

@keyframes hero-bg-sparkle {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 80px 80px, 20px 35px, 40px 15px, 0px 28px; }
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 2.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 
    animation: fade-in-down 1.3s cubic-bezier(.43,.17,.56,1.02);
}

@keyframes fade-in-down {
    0% { 
        opacity: 0;
        transform: translateY(-44px) scale(0.98);
    }
    70% {
        opacity: 0.75;
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.hero-tagline {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #D8A954;
    background:white;
    border-radius: 3em;
    padding: 0.42em 1.4em;
    display: inline-block;
    font-size: 1.11rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 2px 20px rgba(216,169,84,.07), 0 0 5px #fffbe9;
    border: 1.5px solid #D8A95433;
    letter-spacing: 0.125em;
    font-family: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}
.hero-tagline::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg,transparent,#e5c36a 55%,transparent 98%);
    opacity: .13;
    border-radius: 2.5em;
}


.hero-title {
    line-height: 1.12;
    color: black;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 18px #deDBD566, 0 0 1px #fffbe9;
    margin-bottom: 1.75rem;
    position: relative;
}
.hero-title::after {
    content: "";
    display: block;
    margin: 0.34em auto 0;
    width: 54px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg,#DEDBD5,#D8A954,#fffbe8 80%);
    opacity: 0.19;
    animation: title-underline 2.7s cubic-bezier(.16,.66,.39,.99) infinite alternate;
}
@keyframes title-underline {
    0% { width: 24px; opacity: .17;}
    70% { width: 65px; opacity: .22;}
    100% { width: 54px; opacity: .19;}
}

.hero-title br {
    display: none;
}
@media (min-width: 768px) {
    .hero-title br {
        display: inline;
    }
}


.hero-description {
    color: #D8A954;
    font-size: 1.29rem;
    max-width: 740px;
    margin-left: auto;
    font-weight: 600;
    margin-right: auto;
    background: white;
    border-radius: 1.05rem;
    padding: 1.14rem 1.8rem;
    box-shadow: 0 3px 22px 0 rgba(216, 169, 84, 0.09),
                0 1.5px 4px #d8a95420;
    border: 1.5px solid #D8A95422;
    font-family: 'Montserrat', sans-serif;
    position: relative;
   
}
.hero-description::after {
    content: "";
    position: absolute;
    top: 12%; left: 13%;
    width: 38px; height: 38px;
    pointer-events: none;
    border-radius: 50%;
    opacity: .07;
    background: radial-gradient(circle, #D8A954 0%, #fffbe8 80%, transparent 100%);
    z-index: 0;
    animation: shimmer-pulse 5s infinite alternate;
}
@keyframes shimmer-pulse {
    0% { opacity: 0.10; transform: scale(1);}
    70% { opacity: .15; transform: scale(1.2);}
    100% { opacity:.07; transform: scale(1);}
}


.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1.7rem;
    z-index: 2;
}
.hero-cta-group .btn {
    border-radius: 1.7em;
    color:black;
    font-weight: 900;
    font-size: 1.26rem;
    padding: 0.98rem 2.46rem;
    margin: 0.15rem 0.25rem;
    transition: box-shadow 0.27s cubic-bezier(.4,.2,.2,1), 
                background 0.24s, color 0.22s, transform 0.13s;
    box-shadow: 0px 0px 0px 3px white;
    border: none;
    outline: none;
    position: relative;
  
}
.hero-cta-group .btn:hover, .hero-cta-group .btn:focus {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0px 6px 24px 0 rgba(216,169,84,0.13), 0 1px 5px #c8a65721;
    color:black;
}


.hero-cta-main {
    background: linear-gradient(91deg, #D8A954, #fff7db 130%);
    color: #fff;
    border: 2px solid #d8a954;
    text-shadow: 0 1px 4px #ad8726bb;
    box-shadow: 0 2px 16px 0 #d8a95452;
    overflow: hidden;
    position: relative;
}
.hero-cta-main::after {
    content: "";
    position: absolute;
    top: 0; left: -110%;
    width: 140%; height: 100%;
    background: linear-gradient(110deg,rgba(255,255,255,0.13) 27%,transparent 86%);
    pointer-events: none;
    transition: left .32s cubic-bezier(.68,.20,1,.81);
}
.hero-cta-main:hover::after,
.hero-cta-main:focus::after {
    left: 0;
}

.hero-cta-main:hover,
.hero-cta-main:focus {
    background: linear-gradient(89deg,#fff7db,#D8A954 140%);
    color: #ffff;
    transform: translateY(-5px) scale(1.045);
    box-shadow: 0px 0px 0px 3px white;
}


.hero-cta-secondary {
    color: #ffff;
    background: linear-gradient(91deg, #D8A954, #fff7db 130%);
    border: 2.5px solid #ffff;
    text-shadow: none;
    box-shadow: 0 1px 7px 0 #dedbd5cc;
    position: relative;
    overflow: hidden;
}
.hero-cta-secondary::after {
    content: "";
    display: block;
    position: absolute;
    left: 25%; right: 25%; bottom: 8px; height: 2px;
    background: linear-gradient(90deg,#D8A954,#fffbe8 80%);
    opacity: 0;
    transition: opacity 0.27s;
    border-radius: 1.2em;
    z-index: 2;
}
.hero-cta-secondary:hover::after,
.hero-cta-secondary:focus::after {
    opacity: 1;
}
.hero-cta-secondary:hover,
.hero-cta-secondary:focus {
    background: linear-gradient(89deg,#fff7db,#D8A954 140%);
    color: #ffff;
    border-color: #ffff;
    transform: translateY(-3px) scale(1.035);
    box-shadow: 0px 0px 0px 3px white;
}


@media (max-width: 767px) {
    .hero-container {
        padding-top: 1.5rem;
        padding-bottom: 1.4rem;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-description {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 0.65rem;
    }
    .hero-cta-group .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        font-size: 1.02rem;
        padding: 0.97rem 0.5rem;
    }
    .hero-tagline {
        font-size: 0.92rem;
        margin-bottom: 0.65rem;
    }
}


.home-hero-section::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -84px;
    width: 260px;
    height: 120px;
    background: linear-gradient(127deg,rgba(216,169,84,0.30),rgba(222,219,213,0.22),rgba(255,255,255,0.18));
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    filter: blur(3.5px);
    opacity: 0.67;
    z-index: 0;
    
    animation: triangle-move 7s ease-in-out infinite alternate;
}
@keyframes triangle-move {
    0% { top: -60px; right: -84px;}
    100% { top: -46px; right: -104px;}
}



.dc-who-we-are-main {
    position: relative;
    background: linear-gradient(
        160deg,
        #f6f5f2 0%,
        #ffffff 45%,
        #f3f1eb 100%
    );
    overflow: hidden;
 
    box-shadow: 0 8px 48px #eacb8866;
}


.dc-who-we-are-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, #fbeee0 0%, #fffbe8 58%, #e8dab4 100%),
        radial-gradient(circle at 70% 20%, #D8A95433 150px, transparent 70%),
        radial-gradient(circle at 15% 88%, #DEDBD544 220px, transparent 76%),
        linear-gradient(60deg,rgba(250,240,197,0.06) 20%,rgba(255,255,255,0.03));
    opacity: 0.88;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: lighten;
    animation: shimmer-bg 5s linear infinite alternate;
}
@keyframes shimmer-bg {
    from { background-position: 0 0, 36px 4px, 0 22px, 0 0;}
    to   { background-position: 40px 6px, 16px 24px, 20px 22px, 38px 0;}
}


.dc-who-we-are-container {
    position: relative;
    z-index: 2;
    
    animation: fade-in-up 1.4s cubic-bezier(.93,.06,.34,1.01);
}
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(45px);}
    100% { opacity: 1; transform: translateY(0);}
}


.dc-who-we-are-left-inner {
    padding-left: 2rem;
    border-left: 4px solid #D8A954;
}


.dc-who-we-are-main-title {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D8A954;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    border-bottom: 2.5px solid #d8a95438;
    padding-bottom: 0.16em;
}
.dc-who-we-are-main-title::after {
    content: "";
    margin-left: 5px;
   
    border-radius: 50%;
    width: 5px; height: 5px; display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 8px #fffbe9bb, 0 1px 16px #d8a95433;
}


.dc-who-we-are-heading {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1f1f1f;
    margin-bottom: 1.25rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dc-who-we-are-divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #D8A954, #fff7db);
    border-radius: 3px;
    margin-top: 1.4rem;
   
    animation: divider-scalein 1.2s cubic-bezier(.72,-0.02,1,.23);
}
@keyframes divider-scalein {
    0% { transform: scaleX(0.3); opacity: 0; }
    60% { opacity: 1;}
    100% { transform: scaleX(1); opacity: 1;}
}


.dc-who-we-are-lead {
    font-size: 1.12rem;
    font-weight: 600;
    color: #3b2c12;
    background: #ffffff;
    padding: 1.2rem 1.6rem;
    border-radius: 1.1rem;
    border: 1.4px solid rgba(216,169,84,0.22);
    box-shadow: 0 3px 20px rgba(216,169,84,0.08), 0 0 3px #fffbe7cc;
    position: relative;
}
.dc-who-we-are-lead::before {
    content: "❝";
    position: absolute;
    left: -24px; top: 0;
    font-size: 2rem; 
    color: #d8a95418;
    font-family: Georgia, serif;
}
.dc-who-we-are-lead::after {
    content: "";
    position: absolute;
    right: 8px; bottom: 4px;
    width: 11px; height: 11px;
    background: #d8a954;
    opacity: .13;
    border-radius: 50%;
   
}


.dc-who-we-are-values {
    margin-top: 3rem;
    padding-top: 2.3rem;
    border-top: 1px solid rgba(216,169,84,0.18);
    position: relative;
}
.dc-who-we-are-values::before {
    content: "";
    position: absolute;
    left: 0; top: 1.1rem; bottom: 1.1rem;
    width: 5px;
    border-radius: 2.4em;
    background: linear-gradient(90deg,#D8A95422,#fffbe844,#DEDBD544,#fffbe822);
    z-index: 1;
    opacity: 0.05;
}


.dc-who-we-are-value {
    background: linear-gradient(180deg, #ffffff, #f9f8f5);
    padding: 2rem 2.6rem;
    border-radius: 1.35rem;
    border: 1.5px solid rgba(216,169,84,0.22);
    box-shadow:
        0 8px 28px rgba(216,169,84,0.12),
        0 2px 6px rgba(0,0,0,0.03),
        0 0 0 2.3px #d8a95414 inset;
    transition: transform 0.35s cubic-bezier(.4,.2,.2,1),
                box-shadow 0.35s,
                border-color 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dc-who-we-are-value:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 14px 46px rgba(216,169,84,0.22),
        0 6px 14px rgba(0,0,0,0.06),
        0 0 0 6px #fffbe9aa inset;
    border-color: #D8A954;
}

.dc-who-we-are-value::after {
    content: "";
    position: absolute;
    top: 14px; right: 22px;
    width: 13px; height: 13px;
    background: #d8a954;
    opacity: 0.10;
    border-radius: 50%;
}


.dc-who-we-are-value-title {
    font-size: 1.75rem;
    font-weight: 800;
    color:#D8A954 !important;
    margin-bottom: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}
.dc-who-we-are-value-title::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 0.45rem;
    background: linear-gradient(90deg, #D8A954, #fff7db);
    border-radius: 3px;
    opacity: 0.78;
    transition: opacity .33s, background .32s;
}
.dc-who-we-are-value:hover .dc-who-we-are-value-title::after {
    background: linear-gradient(90deg,#fffbe8,#D8A954 90%,#fffbe8);
    opacity: 1;
}


.dc-who-we-are-value-desc {
    font-size: 0.90rem;
    color:black !important;
    line-height: 1.6;
    font-weight: 400 !important;
    
    animation: fade-in-up .8s;
}


@media (max-width: 991px) {
    .dc-who-we-are-left-inner {
        border-left: none;
        padding-left: 0;
    }

    .dc-who-we-are-heading {
        font-size: 2rem;
        text-align: center;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #1f1f1f;
    }

    .dc-who-we-are-desc {
        max-width: 100%;
        text-align: center;
        
    }

    .dc-who-we-are-value {
        margin-bottom: 1.5rem;
    }

    .dc-who-we-are-values {
        margin-top: 2rem;
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 575px) {
    .dc-who-we-are-heading {
        font-size: 1.3rem;
        text-align: center;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #1f1f1f;
    }

    .dc-who-we-are-lead {
        font-size: 0.98rem;
        padding: 1rem 0.7rem;
        text-align: center;
    }

    .dc-who-we-are-desc {
        font-size: 0.93rem;
        padding: 0 0.5rem;
        text-align: center;
        
    }

    .dc-who-we-are-value-title {
        font-size: 0.92rem;
    }

    .dc-who-we-are-value-desc {
        font-size: 0.82rem;
    }
}



.dc-what-we-do-main {
    background: linear-gradient(
        180deg,
        #fbfaf7 0%,
        #ffffff 55%,
        #f6f4ef 100%
    );
    position: relative;
    box-shadow: 0 3px 45px #f9e7c833 inset;
}


.dc-what-we-do-title {
    letter-spacing: 0.2em;
    font-size: 40px;
    text-transform: uppercase;
    color: #D8A954;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
.dc-what-we-do-title::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 80%;
    height: 3px; background: linear-gradient(90deg,#D8A95444,#fffbe9,#D8A95444); opacity:.22;
    border-radius: 3.5px;
}

.dc-what-we-do-heading {
    color: #1e1e1e;
    font-weight: 900;
    text-shadow: 0 2px 14px rgba(216,169,84,0.15), 0 0 1px #fffbe8;
}

.dc-what-we-do-lead {
    font-size: 1.70rem;
    color: black !important;
    font-weight: 300;
}


.dc-what-we-do-service-card {
    background: #ffffff;
    border-radius: 1.6rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 12px 34px rgba(0,0,0,0.06),
        0 4px 10px rgba(0,0,0,0.03),
        0 0 0 7px #d8a95407 inset;
    transition:
        transform .45s cubic-bezier(.4,.2,.2,1),
        box-shadow .45s cubic-bezier(.4,.2,.2,1);
  
}
.dc-what-we-do-service-card:hover {
    transform: translateY(-10px) scale(1.012);
    box-shadow:
        0 22px 60px rgba(216,169,84,0.22),
        0 8px 22px rgba(0,0,0,0.08),
        0 0 0 11px #d8a95411 inset;
}
.dc-what-we-do-service-card::after {
    content: "";
    position: absolute;
    bottom: 12px; right: 10px;
    width: 11px; height: 11px;
    background: #d8a954;
    opacity: .09; border-radius: 50%;
}


.dc-what-we-do-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    height: 58px;
    background: linear-gradient(
        135deg,
        #D8A954,
        #fff4cf
    );
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.85;
    transition: filter .27s, opacity .2s;
}
.dc-what-we-do-service-card:hover::before {
    filter: blur(1.8px) brightness(1.12);
    opacity: .93;
}

.dc-what-we-do-service-body {
    border: none !important;
    padding: 2.2rem 2rem;
    position: relative;
}

.dc-what-we-do-service-body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.6rem;
    bottom: 1.6rem;
    width: 4px;
    background: linear-gradient(
        180deg,
        #D8A954,
        #fff7db
    );
    border-radius: 2px;
}


.dc-what-we-do-service-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
    color: #1f1f1f;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    padding-left: 0.75rem;
    position: relative;
}
.dc-what-we-do-service-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    height: 2px; width: 28px;
    background: linear-gradient(90deg,#D8A954,#fffbe9);
    border-radius: 1.3px;
    opacity: 0;
    transition: opacity .24s, width .22s;
}
.dc-what-we-do-service-card:hover .dc-what-we-do-service-title::after {
    opacity: .7;
    width: 42px;
}


.dc-what-we-do-service-col:nth-child(2n) {
    transform: translateY(14px);
}

.dc-what-we-do-service-col:nth-child(3n) {
    transform: translateY(-10px);
}

.dc-what-we-do-service-col:hover {
    transform: none;
}


@media (max-width: 767px) {

    .dc-what-we-do-service-col:nth-child(2n),
    .dc-what-we-do-service-col:nth-child(3n) {
        transform: none;
    }

    .dc-what-we-do-service-title {
        font-size: 0.95rem;
    }
}


.our-approach-section {
    background: linear-gradient(135deg, #D8A954 0%, #fffbe9 100%);
    position: relative;
    color: #ffffff;
    overflow: hidden;
  }
  
  .our-approach-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
  }
  
  .our-approach-container,
  .our-approach-row {
    position: relative;
    z-index: 1;
  }
  
  
  
  .dc-approach-tagline {
    display: inline-block;
    background: white;
    font-size: 20px;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D8A954;
  }
  
  .dc-approach-heading {
    letter-spacing: -0.6px;
    line-height: 1.15;
    color: black !important;
  }
  
  .dc-approach-lead {
    color:black !important;
    max-width: 520px;
    font-weight: 500;
  }
  
  .dc-approach-quote {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(6px);
    border-left: 4px solid #D8A954;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  }
  
  .dc-approach-quote-txt {
    color: black;
    line-height: 1.7;
    font-weight: 500;
  }

  
  .dc-approach-right {
    padding-left: 20px;
  }
  
  
  
  .dc-approach-point-col {
    padding: 12px;
  }
  
  .dc-approach-point-box {
    background: linear-gradient(
      135deg,
      #ffff 0%,
      #f7f2df 100%
    );
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    position: relative;
    transition: all 0.35s ease;
  }
  
  .dc-approach-point-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
  }
 
  .dc-approach-point-num {
    position: static; /* no overlap */
    font-size: 3.3rem;
    font-weight: 700;
    color:#D8A954 !important;
    margin-bottom: 14px;
  }
  
  
  
  .dc-approach-point-title {
    color: #000000 !important;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }
  
  .dc-approach-point-desc {
    color: rgba(0,0,0,0.75);
    line-height: 1.6;
    font-size: 17px;
    font-weight: 500;
  }
  
 
  
  .border-secondary {
    border-color: rgba(0,0,0,0.15) !important;
  }
  
  .border-bottom,
  .border-end-md {
    border: none !important;
  }
  
  
  .hover-effect::before {
    display: none;
  }
  
 
  
  @media (max-width: 991px) {
    .dc-approach-heading {
      font-size: 2.5rem;
    }
  
    .dc-approach-right {
      padding-left: 0;
      margin-top: 3rem;
    }
  }
  
  @media (max-width: 767px) {
  
    .dc-approach-point-col {
      padding: 10px 0;
    }
  
    .dc-approach-point-box {
      border-radius: 12px;
    }
  
    .dc-approach-point-num {
      font-size: 2rem;
    }
  }
  

.dc-sector-focus-main {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf9f6 100%
    );
    position: relative;
}

.dc-sector-focus-inner {
    padding-left: 1.8rem;
    border-left: 4px solid #D8A954;
}

.dc-sector-focus-title {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    color: #D8A954;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2.5px dotted #D8A95434;
    padding-bottom: .16em;
}

.dc-sector-focus-heading {
    color: #1f1f1f;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 14px rgba(216,169,84,0.12), 0 0 1px #fffbe8;
}

.dc-sector-focus-lead {
    color:black !important;
    font-size: 1.90rem;
}


.dc-sector-focus-btn {
    border-width: 2px;
    font-size: 20px;
    font-weight: 700;
    transition: all .3s ease;
    box-shadow: 0 2px 18px #d8a9540a;
    background: #fffbe8;
    color: #D8A954;
    border-radius: 1.15em;
}
.dc-sector-focus-btn:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}


.dc-sector-focus-list-col {
    position: relative;
}


.dc-sector-focus-list-item {
    padding-left: 1.2rem;
    position: relative;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
    cursor: pointer;
    
}
.dc-sector-focus-list-item:hover {
    background: rgba(216,169,84,0.10);
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 4px 13px #d8a95413;
}

.dc-sector-focus-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 4px;
    height: calc(100% - 3rem);
    background: linear-gradient(
        180deg,
        #D8A954,
        #fff7db
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.dc-sector-focus-list-item:hover::before {
    opacity: 1;
}


.dc-sector-focus-list-title {
    font-weight: 800;
    color: black !important;
    transition: color 0.3s ease;
    position: relative;
}
.dc-sector-focus-list-title::after {
    content: "";
    position: absolute; left: 0; bottom: -3px; width: 28px; height: 2px;
    background: linear-gradient(90deg,#D8A954,#fffbe9); border-radius: 1.3px;
    opacity: 0; transition: opacity .23s;
}
.dc-sector-focus-list-item:hover .dc-sector-focus-list-title::after {
    opacity: .44;
}
.dc-sector-focus-list-item:hover .dc-sector-focus-list-title {
    color: #D8A954;
}


.dc-sector-focus-list-desc {
    color:black !important;
    line-height: 1.5;
    font-size: 17px;
}


.dc-sector-focus-arrow-icon {
    color: black;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}
.dc-sector-focus-list-item:hover .dc-sector-focus-arrow-icon {
    transform: translateX(6px) scale(1.11);
    color: #D8A954;
}


.dc-sector-focus-list-item {
    border-color: rgba(0,0,0,0.08) !important;
}



@media (max-width: 991px) {

    .dc-sector-focus-inner {
        border-left: none;
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .dc-sector-focus-heading {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {

    .dc-sector-focus-list-item {
        padding-left: 0.8rem;
    }

    .dc-sector-focus-list-title {
        font-size: 1.05rem;
    }
}

.dc-why-us-main {
    background: linear-gradient(
        160deg,
        white 0%,
        #D8A954 55%,
         white 100%
    );
    position: relative;
  
    box-shadow: 0 0 50px #fffbe83a inset !important;
}


.dc-why-us-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(216,169,84,0.18), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.05), transparent 55%);
    pointer-events: none;
}


.dc-why-us-title {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 1000;
    font-size: 30px;
    color: #D8A954;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2.5px solid #ffe9be33;
    padding-bottom: .15em;
}

.dc-why-us-heading {
    color: black;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 3px 18px rgba(216,169,84,0.25), 0 0 1px #fffbe8;
}

.dc-why-us-lead {
    color:black;
    font-size: 1.50rem;
}



.dc-why-us-card {
    background: white !important;
    border-radius: 1.4rem;
    border: none !important;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 14px 40px rgba(0,0,0,0.25),
        0 0 0 7px #d8a95407 inset;
    transition:
        transform .4s cubic-bezier(.4,.2,.2,1),
        box-shadow .4s cubic-bezier(.4,.2,.2,1);
}
.dc-why-us-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 22px 65px rgba(0,0,0,0.45),
        0 8px 22px rgba(216,169,84,0.35),
        0 0 0 19px #fffbe944 inset;
}
.dc-why-us-card::after {
    content: "";
    position: absolute; bottom: 9px; right: 18px;
    width: 18px; height: 18px;
    background: #d8a954;
    opacity: .10;
    border-radius: 50%;
}


.dc-why-us-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        #D8A954,
        #fff7db,
        #D8A954,
        transparent
    );
}


.dc-why-us-card-icon {
    color: #D8A954 !important;
    filter: drop-shadow(0 2px 6px #d8a95436);
}


.dc-why-us-card-title {
    color: black !important;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
.dc-why-us-card-title::after {
    content: "";
    display: block;
    margin-left: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #D8A954, #fff7db);
    border-radius: 2px;
    opacity: 0.5;
}


.dc-why-us-card-desc {
    color: orange !important;
    line-height: 1.6;
}


.dc-why-us-card-col:nth-child(2n) {
    transform: translateY(10px);
}

.dc-why-us-card-col:nth-child(3n) {
    transform: translateY(-10px);
}

.dc-why-us-card-col:hover {
    transform: none;
}


@media (max-width: 991px) {

    .dc-why-us-heading {
        font-size: 2.1rem;
    }

    .dc-why-us-card-col:nth-child(2n),
    .dc-why-us-card-col:nth-child(3n) {
        transform: none;
    }
}

.dc-purpose-main {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf9f6 100%
    );
    position: relative;
    box-shadow: 0 -3px 45px #d8a9541a inset;
}


.dc-purpose-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(216,169,84,0.12), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.04), transparent 55%),
        linear-gradient(95deg,#fffbe8cc 0%, #D8A95416 94%);
    pointer-events: none;
    opacity:.95;
    animation: shimmer-bg 8s linear infinite alternate;
}

.dc-purpose-title {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 800;
    color: #D8A954;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #D8A95419;
    padding-bottom: 0.13em;
    padding-right: 10px;
    font-size: 30px;
}


.dc-purpose-heading {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.25;
    color: #1f1f1f;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.dc-purpose-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        #D8A954,
        #fff7db,
        #D8A954,
        transparent
    );
    border-radius: 3px;
    margin: 1.6rem 0 1.4rem;
}


.dc-purpose-quote {
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.8;
    color: black;
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: #fffbe8ee;
    border-left: 4px solid #D8A954;
    box-shadow: 0 1.5px 24px #d8a95413;
    padding-left: 2.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.dc-purpose-quote::before {
    content: "";
    position: absolute;
    left: -18px;
    top: -14px;
    font-size: 3rem;
    color: rgba(216,169,84,0.25);
    font-family: Georgia, serif;
}



@media (max-width: 991px) {
    .dc-purpose-heading {
        font-size: 2.1rem;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #1f1f1f;
    }
}

@media (max-width: 575px) {
    .dc-purpose-heading {
        font-size: 1.7rem;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #1f1f1f;
    }

    .dc-purpose-quote::before {
        display: none;
    }
    .dc-purpose-quote {
        border-left: none; padding-left: 1rem;
    }
}


.dc-cta-main {
    background: #D8A954;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 90px #D8A954 inset !important;
}

.dc-cta-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    pointer-events: none;
    opacity:.88;
}

.dc-cta-content {
    background: #D8A954;
    border-radius: 1.6rem;
    padding: 3.2rem 3rem;
    box-shadow:
        0px 0px 3px 3px white inset;
    position: relative;
    z-index: 2;
    animation: fade-in-up .9s;
}

.dc-cta-heading {
    color: white !important;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 16px #D8A954;
    position: relative;
}
.dc-cta-heading::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg,#D8A954 35%,#D8A954 90%);
    border-radius: 2px;
    opacity: .38;
    margin-top: 5px;
}

.dc-cta-lead {
    color: black !important;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 500;
}

.dc-cta-btns {
    margin-top: 2.2rem;
}


.dc-cta-btns .btn {
    border-radius: 0.75rem;
    font-weight: 800;
    padding: 0.95rem 2.6rem;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
    box-shadow: 0px 0px 0px 3px #fff;
    position: relative;
}

.dc-cta-btns .btn:hover, .dc-cta-btns .btn:focus {
    transform: translateY(-3px) scale(1.025);
    box-shadow: 0 7px 32px #d8a95427, 0 2px 6px #fffbe934;
}

.dc-cta-contact-btn {
    background: linear-gradient(92deg, #fff7db 0%, #ffff 100%);
    color: #222 !important;
    border: 2px solid #D8A954 !important;
    box-shadow: 0 3px 24px rgba(216,169,84,0.13), 0 2px 6px rgba(0,0,0,0.05);
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition:
        background 0.25s cubic-bezier(.4, .2, .2, 1),
        color 0.22s,
        box-shadow 0.22s,
        border-color 0.22s,
        transform 0.27s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.dc-cta-contact-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, #fceabb 25%, #ffe7b6 64%, #d8a954 100%);
    opacity: 0;
    transition: opacity 0.28s;
    z-index: 1;
}
.dc-cta-contact-btn:hover::after {
    opacity: .15;
    animation: shimmer-cta 1.1s cubic-bezier(.7,0,.99,1);
}
@keyframes shimmer-cta {
    0% { opacity: .09;}
    70% { opacity: .18;}
    100% { opacity: .15;}
}
.dc-cta-contact-btn:hover,

.dc-cta-services-btn:active {
    transform: translateY(2px) scale(0.97);
}

.dc-cta-services-btn:focus-visible {
    outline: 2px solid #ffe4a6;
    outline-offset: 2px;
}


@media (max-width: 767px) {

    .dc-cta-content {
        padding: 2.4rem 1.8rem;
    }

    .dc-cta-heading {
        font-size: 1.8rem;
    }

    .dc-cta-btns .btn {
        width: 100%;
    }
}

#scrollToTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 990;
    display: none;
    background: #e2b855;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 16px rgba(90,80,0,0.10);
    cursor: pointer;
    transition: background 0.23s, transform 0.19s, box-shadow 0.18s;
    font-size: 1.7rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
  }
  #scrollToTopBtn:hover {
    background: #c09838;
    transform: translateY(-4px) scale(1.09);
    box-shadow: 0 12px 30px rgba(90,80,0,0.16);
  }
  @media (max-width: 576px) {
    #scrollToTopBtn {
      bottom: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      font-size: 1.25rem;
    }
  }




.site-footer {
    background:white;
    color: black;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 1.01rem;
    box-shadow: 0 0 32px #d8a95418, 0 8px 24px #DEDBD511;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
 
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 14px;
    background:silver;
    opacity: .44;
    pointer-events: none;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 44px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1;
    min-width: 220px;
    margin-bottom: 32px;
}

.footer-brand-col {
    flex: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--footer-title);
    font-size: 1.34rem;
    font-weight: 900;
    margin-bottom: 17px;
    background: linear-gradient(100deg, #e6e3d3, #fffbe9 70%, #d8a954 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px #d8a95422);
    letter-spacing: 0.017em;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 16px #d8a95422);
    background: #fffbe9cc;
    border-radius: 18%;
    padding: 2px 5px 2px 2px;
}



.footer-desc {
    margin-bottom: 18px;
    max-width: 370px;
    color: black;
    font-size: 1.01rem;
    font-weight: 500;
    line-height: 1.7;
   
}

h4 {
    color: var(--footer-accent-gold);
    font-size: 1.09rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 800;
    border-bottom: 2.5px solid #d8a95438;
    padding-bottom: 0.14em;
    background: -webkit-linear-gradient(75deg,#d8a954 75%,#e6e3d3 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: color .20s cubic-bezier(.52,.12,.37,.94);
    position: relative;
}

.site-footer a:hover, .site-footer a:focus-visible {
    color: var(--footer-link-hover);
    text-shadow: 0 2px 6px #d8a95422;
}


.footer-nav-col li a:hover::after {
    content: "›";
    margin-left: 7px;
    color: var(--footer-accent-gold);
    font-size: .92em;
    opacity: 0.88;
    position: relative;
    top: 0;
    transition: margin-left 0.17s cubic-bezier(.44,.04,.25,1);
}


.footer-nav-col li {
    margin-bottom: 13px;
}


.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: black;
}

.contact-list .icon {
    color: var(--footer-accent-gold);
    font-size: 1.25em;
    margin-right: 3px;
}

.contact-list a {
    color: black;
    text-decoration: underline dotted #d8a95433 1.5px;
    text-underline-offset: 2px;
}

.contact-list a:hover {
    color: var(--footer-accent-gold);
    text-decoration: underline solid #d8a954 2px;
}

.footer-socials {
    display: flex;
    gap: 13px;
    margin-top: 6px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(120deg, #fffbe9cc 60%, #d8a9541f 100%);
    border-radius: 50%;
    color: black;
    font-size: 1.14em;
    box-shadow: 0 2px 16px #d8a95422;
    transition: all 0.23s cubic-bezier(.45,.04,.21,.97);
}

.footer-socials a:hover, .footer-socials a:focus-visible {
    background: linear-gradient(120deg, #d8a954 65%, #fffbe9 99%);
    color: #fff;
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 4px 28px #d8a95444;
}


.footer-bottom {
    background: linear-gradient(90deg, #fffbe8ee 6%, #e8dab4 97%);
    box-shadow: 0 -2px 34px #d8a95417;
    margin-top: 54px;
    padding: 18px 0 13px;
    border-top: 1.5px solid var(--footer-border);
    font-size: 0.99rem;
    color: black;
    z-index: 10;
    position: relative;
}

.bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.copyright {
    font-size: .98em;
    color: #7d7041;
    letter-spacing: 0.01em;
    font-weight: 500;
}

.dev-credit {
    font-weight: 700;
    color: #a69558;
    font-size: .98em;
    margin-left: 9px;
}

.dev-credit a {
    color: #b59923;
    text-decoration: underline dotted #f1c65f33 1.3px;
    text-underline-offset: 2.5px;
    transition: color .19s;
}
.dev-credit a:hover {
    color: #d8a954;
    text-decoration: underline solid #d8a954 2px;
}

.dev-credit i {
    color: #d8a954;
    margin-right: 4px;
}


.separator {
    color: #c8b273;
    margin: 0 8px;
    font-size: 1.12em;
}


@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 18px;
    }

    .footer-desc {
        max-width: 100%;
    }
    .footer-col, .footer-brand-col { min-width: 0; }
    .footer-bottom {
        padding-left: 12px;
        padding-right: 12px;
    }
    .bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        text-align: left;
    }
}
@media (max-width: 575px) {
    .footer-logo img {
        height: 30px;
    }
    .footer-col {
        margin-bottom: 11px;
    }
    .footer-desc, .copyright {
        font-size: .98em;
    }
    h4 {
        font-size: .98rem;
    }
    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    .footer-bottom {
        font-size: 0.94em;
    }
}


.site-footer::after {
    content: "";
    position: absolute;
    bottom: -44px; right: -50px;
    width: 180px; height: 80px;
    background: linear-gradient(127deg,#d8a95444,#dedbd533,#fffbe933);
    filter: blur(2.5px);
    opacity: 0.40;
    z-index: 1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    pointer-events: none;
}

:root {
    --brand-primary: #d8a954;
    --brand-dark: #d8a954;
    --brand-bg-light: #faf6ee;
    --brand-card: #fffdf7;
    --brand-bg-gradient: linear-gradient(135deg, #f9e9c8 0%, #fffbe8 100%);
    --text-main: #232323;
    --text-muted: #7d764e;
    --text-light: #988441;
    --white: #ffffff;
    --shadow-lg: 0 10px 40px rgba(216, 169, 84, 0.17);
    --shadow-mid: 0 6px 24px rgba(216, 169, 84, 0.08);
    --card-shadow: var(--shadow-lg);
    --transition: all 0.3s cubic-bezier(.45, .05, .55, .95);
}

.dwiveda-services-wrapper {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background: var(--brand-bg-light);
    line-height: 1.8;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* ===============================
   HERO / INTRO SECTION
================================ */
.about-intro {
    background: var(--brand-bg-gradient);
    padding: 120px 20px 100px;
    text-align: center;
    border-bottom: 0.5px solid #f0e2cb;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-intro::after {
    content: "";


    position: absolute;
    left: 65%;
    top: 30px;
    width: 320px;
    height: 140px;
    background: linear-gradient(128deg,#d8a95433,#ffe6a9bb,#fffbe9bb 100%);
    filter: blur(18px);
    opacity: 0.23;
    pointer-events: none;
    z-index: -1;
    border-radius: 44% 68% 70% 51%;
}

.container-narrow {
    max-width: 920px;
    margin: 0 auto;
}

.about-intro h1 {
    font-size: 3.3rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--brand-primary);
    margin-bottom: 22px;
    font-weight: 900;
    text-shadow: 0 2px 12px #f5e6be88;
}

.about-intro h2 {
    font-size: 2.15rem;
    color: var(--brand-dark);
    margin-bottom: 41px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro-text p {
    font-size: 1.17rem;
    margin-bottom: 22px;
    text-align: justify;
    color: var(--text-main);
    line-height: 1.85;
    opacity: .94;
}

.mission-statement {
    margin-top: 60px;
    padding: 34px 54px;
    background: linear-gradient(102deg,#fffbe7 75%,#f3dfbc 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(224, 194, 93, .11);
    border-left: 7px solid var(--brand-primary);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--brand-dark);
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: var(--transition);
}

.mission-statement:hover {
    background: #fff7e1;
    box-shadow: 0 14px 40px #e2b85528;
}

/* ===============================
   LEADERSHIP PROFILES
================================ */
.leadership-section {
    padding: 110px 20px 90px 20px;
    max-width: 1150px;
    margin: 0 auto;
}

.leader-profile {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 58px;
    margin-bottom: 110px;
    align-items: flex-start;
    background: var(--brand-card);
    border-radius: 36px;
    box-shadow: var(--shadow-mid);
    border: 1.4px solid #ebdb9b24;
    transition: var(--transition);
    position: relative;
}

.leader-profile:not(:last-child) {
    margin-bottom: 80px;
}

.leader-profile:hover {
    box-shadow: 0 16px 36px #d8a95422;
    transform: translateY(-4px) scale(1.021);
}

.leader-sidebar {
    position: sticky;
    top: 100px;
    text-align: center;
    padding: 60px 10px 40px 10px;
    background: transparent;
}

.leader-sidebar img {
    width: 170px;
    height: 170px;
    border-radius: 22px;
    object-fit: cover;
    margin-bottom: 17px;
    border: 2.5px solid #f0eae0;
    box-shadow: 0 4px 17px #e7cf9328, 0 1.5px 9px #fff8e588;
    transition: filter 0.3s;
    filter: grayscale(17%);
    background: #fff8ec;
    padding: 8px;
}
.leader-sidebar img:hover {
    filter: grayscale(0%);
}

.leader-tag {
    font-size: 1.07rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-primary);
    display: block;
    margin-bottom: 4px;
    letter-spacing: 2.5px;
}

.leader-sidebar h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--brand-dark);
    font-weight: 900;
}

.leader-sub {
    font-size: 0.97rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 11px;
    opacity: .87;
    line-height: 1.47;
}

.leader-content {
    background: #fffbe6;
    padding: 55px 45px;
    border-radius: 30px;
    border: 1.5px solid #faecd385;
    box-shadow: var(--shadow-lg);
    min-width: 0;
    transition: var(--transition);
}
.leader-content p {
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: black;
    letter-spacing: .015em;
    text-align: justify;
}

.leader-content p:last-child { margin-bottom: 0; }

/* ===============================
   VALUES SECTION
================================ */
.values-section {
    background: var(--brand-bg-gradient);
    color: var(--text-main);
    padding: 95px 20px 98px 20px;
    text-align: center;
    border-top: 1.5px dashed #f8e5bb1c;
    border-bottom: 1.5px dashed #efda9d12;
    box-shadow: 0 4.5px 54px #e2b85510;
    position: relative;
}

.values-section::after {
    content: "";
    position: absolute;
    bottom: -28px;
    right: 75px;
    width: 210px; height: 84px;
    background: linear-gradient(120deg,#d8a95410,#ffe6a933,#fffbe9bb 100%);
    filter: blur(16px);
    opacity: 0.14;
    pointer-events: none;
    z-index: 1;
    border-radius: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1180px;
    margin: 54px auto 0;
}

.value-card {
    padding: 44px 42px 38px 42px;
    background: #fffdfa;
    border: 1.45px solid #e2b85549;
    border-radius: 26px;
    box-shadow: 0 8px 24px #e2b85514;
    transition: var(--transition);
    position: relative;
    z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
    cursor: pointer;
}

.value-card:hover {
    background: #f7ecd5;
    border-color: #e2b855b3;
    box-shadow: 0 14px 36px #e2b85525;
    transform: translateY(-5px) scale(1.025);
}

.value-card i {
    font-size: 2.7rem;
    color: var(--brand-primary);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #f8ebb8 35%, #e2b855 100%);
    padding: 22px;
    border-radius: 50%;
    box-shadow: 0 3px 14px #e2b8551c;
    display: inline-block;
    transition: background 0.29s, box-shadow 0.23s;
}

.value-card h4 {
    font-size: 1.29rem;
    color: var(--brand-dark);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: .4px;
}

.value-card p {
    font-size: 1.08rem;
    color: var(--text-muted);
    opacity: .97;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.7;
}
/* ===============================
   GALLERY
================================ */
.gallery-section {
    padding: 86px 20px 100px 20px;
    text-align: center;
    background: #f9f5e9;
}

.gallery-section h2, .gallery-section h3 {
    color: var(--brand-dark);
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 33px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 26px;
    max-width: 1160px;
    margin: 54px auto 0;
}

.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    box-shadow: 0 2.3px 10px #e2b85518;
    transition: var(--transition);
    background: #fffefaee;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s cubic-bezier(.16,.54,.58,.98);
    filter: grayscale(30%) contrast(1.09) brightness(1.10);
}
.gallery-item:hover img {
    filter: grayscale(0) contrast(1.17) brightness(1.16);
    transform: scale(1.055) rotate(-0.7deg);
}

@media (max-width: 1100px) {
    .leadership-section { padding-left: 7px; padding-right: 7px;}
    .leader-profile { grid-template-columns: 1fr; gap: 0;}
    .leader-content { padding: 36px 18px; }
    .leader-sidebar { position: static; margin-bottom: 32px; padding: 35px 0 10px 0;}
}
@media (max-width: 900px) {
    .about-intro { padding: 70px 6px 60px;}
    .about-intro h1 { font-size: 2.1rem }
    .about-intro h2 { font-size: 1.3rem;}
    .container-narrow { max-width: 99vw;}
    .leader-content {padding: 22px 7px;}
    .values-section, .gallery-section {padding-left: 5px; padding-right: 5px;}
}
@media (max-width: 600px) {
    .values-section { padding: 42px 5px 56px 5px; }
    .values-grid { gap:18px;}
    .gallery-grid { gap: 10px;}
    .mission-statement { font-size: 1.08rem; padding: 18px 10px;}
}

/*Contact Css*/

/* Contact Css Close  */

/* Services Css */

/* Services Css close  */

