@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap');
:root {
    --background-2: #f5f2ff80;
    --dk-primary: #0B1F35;
    --dk-primary-soft: #1F3246;
    --dk-accent: #f09a05;
    --dk-accent-soft: rgba(240, 151, 39, 0.08);
    --dk-cream: #fcf5ef;
    --bg-gray: #f8f9fa;
    --dk-white: #FFFFFF;
    --secondary: #2563eb;
    --dk-text: #333;
    --dk-gray: #374151;
    --dk-muted: #6B7280;
    --dk-border: #E5E7EB;
    --dk-border-strong: #D1D5DB;
    --dk-success: #10B981;
    
    /* Carousel timing — change here to retune everything */
    --dk-carousel-interval: 4500ms;
    --dk-carousel-fade: 600ms;
    
    --dk-radius-sm: 4px;
    --dk-radius-md: 8px;
    --dk-radius-lg: 16px;
    
    --dk-modal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer !important;
}
a:hover{
    color: var(--dk-accent);
}

body{
    background-color: var(--background-2);
  color: var(--dk-text);
  font-family: Inter,sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

#main{
    overflow: hidden;
/*    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;*/
/*    font-size: 1rem;*/
/*    line-height: 1.6;*/
/*    color: var(--dk-text);*/
/*    background-color: #ffffff;*/
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dk-text);
    margin-top: 0;
    margin-bottom: 0.75em;
}
h1 { font-size: 3rem;   line-height: 1.2; }
h2 { font-size: 2.25rem; line-height: 1.25; }
h3 { font-size: 1.75rem; line-height: 1.3; }
h4 { font-size: 1.375rem; line-height: 1.35; }
h5 { font-size: 1.125rem; line-height: 1.4; }
h6 { font-size: 1rem; line-height: 1.4; }

p {
  margin-top: 0;
  margin-bottom: 1.2em;
  color: var(--dk-gray);
  font-size: 1rem;
}

small, .small-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--dk-gray);   
}

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
  }
  
  @media (max-width: 640px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.375rem; }
}

.pop-message{
    z-index: 9999999;
    width: 50%;
    margin: auto;
    margin-top: 5rem;
    position: fixed;
    top: 2%;
    left: 25%;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px !important;
    }
}


/* Services Section Styles */
.services-section {
    padding: 6rem 0;
    background: var(--dk-white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dk-text);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.section-label i {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dk-accent);
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-title {
    /* font-size: clamp(1.8rem, 4vw, 3rem); */
    font-weight: 600;
    color: var(--dk-text);
    margin: 0;
}

.section-title .highlight {
    color: var(--dk-accent);
    font-style: italic;
}

.view-all-btn-container {
    display: flex;
    align-items: center;
}

.btn-view-all {
    display: flex;
    align-items: center;
    background: var(--dk-accent);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 3px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid var(--dk-accent);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
    color: #fff;
}

.btn-view-all span {
    padding: 1rem 1.5rem;
    flex: 1;
    border-radius: 50px;
    background-color: var(--dk-primary);
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover .arrow-circle {
    transform: rotate(45deg);
}
.arrow-circle i{
    color: #000;
}

.service-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
    box-shadow: 0px 4px 6px #0000002a;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #0000002a;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon .icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dk-primary);
    border-radius: 15px;
}

.service-icon .icon-text {
    position: relative;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--dk-accent);
    border-radius: 2px;
}

.app-icon {
    background: var(--dk-primary);
    color: #fff;
    font-size: 1.5rem;
}

.website-icon {
    background: var(--dk-primary);
    color: #fff;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dk-text);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--dk-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-link {
    color: var(--dk-text);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--dk-accent);
    gap: 1rem;
}

.service-link i {
    color: var(--dk-accent);
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.roadmap-section{
    padding: 6rem 0;
    background: #fff;
}
.roadmap-column {
    background-color: #f8f9fa;
    border-radius: 25px;
    padding: 30px;
    height: auto;
    margin-bottom: 30px;
}

.column-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.column-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dk-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.column-icon i {
    color: var(--dk-text);
    font-size: 20px;
}

.column-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.timeline-item {
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-left: 5px solid #e0e0e0;
    padding-left: 14px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-date {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}

.timeline-subtitle {
    color: #888;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* About Me Section Styles */
.about-section {
    padding: 6rem 0;
    /*background: var(--bg-gray);*/
    color: var(--dk-text);
    overflow: hidden;
    position: relative;
}

.about-image-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.about-circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--dk-accent);
    border-radius: 50%;
    top: 50px;
    left: 50px;
    z-index: 1;
}

.about-img {
    position: absolute;
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    top: 50px;
    left: 50px;
    z-index: 2;
}

.skill-tag {
    position: absolute;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.skill-tag-1 {
    background: var(--dk-accent);
    color: var(--dk-text);
    top: 20px;
    right: 80px;
    animation-delay: 0s;
}

.skill-tag-2 {
    background: var(--dk-primary);
    color: #fff;
    top: 120px;
    left: -20px;
    animation-delay: 0.5s;
}

.skill-tag-3 {
    background: var(--dk-accent);
    color: var(--dk-text);
    top: 80px;
    right: -10px;
    animation-delay: 1s;
}

.skill-tag-4 {
    background: var(--dk-accent);
    color:var(--dk-text);
    bottom: 160px;
    left: 10px;
    animation-delay: 1.5s;
}

.skill-tag-5 {
    background: #2c3e50;
    color: #fff;
    bottom: 120px;
    right: 60px;
    animation-delay: 2s;
}

.skill-tag-6 {
    background: #2c3e50;
    color: #fff;
    top: 180px;
    right: -30px;
    animation-delay: 2.5s;
}

.skill-tag-7 {
    background: var(--dk-accent);
    color: var(--dk-text);
    bottom: 40px;
    left: 80px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about-content {
    padding-left: 3rem;
}

.about-content .section-label {
    color: #fff;
    margin-bottom: 1.5rem;
}

/* .about-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
} */

.about-title .highlight {
    color: var(--dk-accent);
    font-style: italic;
}

/* .about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
} */

.stats-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dk-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-download-cv {
    display: flex;
    align-items: center;
    background: var(--dk-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 3px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid var(--dk-accent);
}

.btn-download-cv:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-download-cv span {
    padding: 1rem 1.5rem;
    flex: 1;
    background-color: var(--dk-primary);
    border-radius: 50px;
}

.download-arrow {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    transition: transform 0.3s ease;
}

.btn-download-cv:hover .download-arrow {
    transform: rotate(45deg);
}
.download-arrow i{
    color: #000;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--dk-accent);
    font-weight: 400;
    font-style: italic;
}

.signature-text {
    position: relative;
}

/*How we work*/

    /* ── Cards ── */
    .process-col {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
 
    /* Icon circle */
    .icon-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: -20px;
      position: relative;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(0,0,0,.15);
      flex-shrink: 0;
    }
    .icon-circle i {
      font-size: 2rem;
      color: #fff;
    }
 
    /* Colours per step */
    .ic-planning      { background: var(--dk-primary-soft); }
    .ic-analysis      { background: var(--dk-primary-soft); }
    .ic-design        { background: var(--dk-primary-soft); }
    .ic-implementation{ background: var(--dk-primary-soft); }
    .ic-testing       { background: var(--dk-primary-soft); }
    .ic-maintenance   { background: var(--dk-primary-soft); }
 
    /* Card body */
    .process-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      padding: 44px 20px 24px;
      width: 100%;
      text-align: center;
      position: relative;
      border-top: 4px solid transparent;
      transition: transform .25s, box-shadow .25s;
    }
    .process-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0,0,0,.12);
    }
 
    /* Top accent line colour */
    .card-planning       { border-top-color: var(--dk-accent-soft); }
    .card-analysis       { border-top-color: var(--dk-accent-soft); }
    .card-design         { border-top-color: var(--dk-accent-soft); }
    .card-implementation { border-top-color: var(--dk-accent-soft); }
    .card-testing        { border-top-color: var(--dk-accent-soft); }
    .card-maintenance    { border-top-color: var(--dk-accent-soft); }
 
    .card-title-text {
      font-size: .85rem;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #1a1a2e;
      margin-bottom: .5rem;
    }
    .card-desc {
      font-size: .88rem;
      color: #6b7280;
      line-height: 1.55;
    }
 
    /* ── Responsive tweaks ── */
    @media (max-width: 767.98px) {
      .process-col {
        margin-bottom: 1.8rem;
      }
      .icon-circle {
        width: 76px;
        height: 76px;
      }
      .icon-circle i { font-size: 1.6rem; }
    }


/* Tools Section Styles */
.tools-section {
    padding: 6rem 0;
    background: #fff;
}

.tools-title {
    /* font-size: clamp(1.8rem, 4vw, 3rem); */
    font-weight: 600;
    color: var(--dk-text);
    margin-bottom: 4rem;
}

.tools-title .highlight {
    color: var(--dk-accent);
    font-style: italic;  
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.tool-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tool-circle:hover {
    transform: scale(1.1);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dasharray 2s ease;
}

.tool-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dk-text);
    z-index: 3;
}

/* Figma Icon */
.figma-logo {
    position: relative;
    width: 24px;
    height: 24px;
}

.figma-shape {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.figma-red {
    background: #f24e1e;
    top: 0;
    left: 0;
}

.figma-orange {
    background: #ff7262;
    top: 0;
    right: 0;
}

.figma-green {
    background: #1abcfe;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Adobe Icons */
.ps-text, .ae-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
    background: #31a8ff;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.ae-text {
    background: #9999ff;
}

/* Storybook Icon */
.sb-text {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    background: #ff4785;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

/* InVision Icon */
.in-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
    background: #ff3366;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-style: italic;
}

.tool-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dk-text);
    text-align: center;
}

/* Animation for progress rings */
@keyframes progressAnimation {
    from {
        stroke-dasharray: 0 314;
    }
}


.contact-section{
    padding: 6rem 0 0;
    /*background: #fff;*/
}
.description {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dk-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--dk-white);
    font-size: 20px;
}

.contact-text {
    color: var(--dk-gray);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.form-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-control, .form-select {
    border: none;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    height: auto;
}

.form-control:focus, .form-select:focus {
    background-color: #f8f9fa;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
    border-color: var(--dk-accent);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    min-height: 200px;
    resize: vertical;
}

.submit-btn {
    display: flex;
    align-items: center;
    background: var(--dk-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 3px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid var(--dk-accent);
}
.submit-btn span {
    padding: 10px 12px;
    flex: 1;
    background-color: var(--dk-primary);
    border-radius: 50px;
}
.submit-btn .arrow-circle{
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.submit-btn i {
    font-size: 18px;
    color: #000;
}

.testimonials-section {
    padding: 6rem 0;
    background-color: var(--bg-gray);
    display: flex;
    align-items: center;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px;
    height: 400px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.stars-rating {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    margin-right: 15px;
}

.star {
    color: var(--dk-accent);
    font-size: 20px;
    margin-right: 2px;
}

.rating-number {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.testimonial-text {
    color: var(--dk-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-details h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.client-details p {
    font-size: 14px;
    color: var(--dk-gray);
    margin: 0;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4a5d4a;
    opacity: 0.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--dk-accent);
    opacity: 1;
    transform: scale(1.1);
}

.swiper-pagination-bullet i {
    color: #fff;
    font-size: 20px;
}

.connect-section {
    background-color:var(--dk-primary);
    padding: 80px 0 60px;
    position: relative;
    z-index: 999;
}

.connect-section .contact-info p{
    color:var(--dk-white) !important;
}

.connect-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 60px;
    text-align: center;
}

.connect-title .highlight {
    color: var(--dk-accent);
    font-style: italic;
}

.dkingstech-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.dkingstech-brand img {
    width: 150px;
}

.brand-description {
    color: var(--dk-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--dk-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dk-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-section h5 {
    color: var(--dk-white);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--dk-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--dk-accent);
}

.contact-info p {
    color: var(--dk-text);
    margin-bottom: 8px;
    font-size: 1rem;
}

.newsletter-section h5 {
    color:var(--dk-white);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    background-color: var(--bg-gray);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    outline: none;
    color: var(--dk-gray);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background-color: var(--dk-primary);
    border: none;
    padding: 12px 20px;
    color:  var(--dk-white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #2e2c51;
}

.footer-bottom {
    background-color: var(--dk-primary);
    color: var(--dk-white);
    padding: 25px 0;
    border-top: 1px solid #ccc;
    position: relative;
    z-index: 999;
}

.footer-bottom .row {
    align-items: center;
}

.copyright {
    font-size: 14px;
}

.footer-links {
    text-align: right;
}

.footer-links a {
    color: var(--dk-white);
    text-decoration: none;
    font-size: 14px;
    margin-left: 30px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    color: #2e2c51;
}

/* Sub Hero Section services  */
.sub-hero-section {
    background: linear-gradient(135deg, #b3bcd6 0%, #cfc0ae 100%);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.sub-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sub-hero-section .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
    
.sub-hero-section .hero-title {
    /* font-size: 3rem; */
    font-weight: 600;
    color: var(--dk-text);
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.breadcrumb-custom {
    background: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 1.1rem;
}

.breadcrumb-custom .breadcrumb-item {
    color: var(--dk-text);
}
    
.breadcrumb-custom .breadcrumb-item.active {
    color: var(--dk-accent);
    font-weight: 600;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
    margin: 0 10px;
}


@media (min-width: 992px) {
  .dk-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* accounts for mobile browser chrome, safe on desktop too */
    z-index: 1;
  }

  .dk-hero-spacer {
    height: 100vh;
    height: 100dvh;
  }

  .dk-page-content {
    position: relative;
    z-index: 2;
    background: var(--dk-white);
    /* optional: soften the seam where content meets the pinned hero */
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -20px 60px -20px rgba(11, 31, 53, 0.25);
  }
}

@media (min-width: 992px) {
 .dk-hero-spacer {
    height: 90vh;
    height: 90dvh;
  } 
}

/* On mobile/tablet we deliberately DON'T fix the hero.
   Fixed-position elements + collapsing address bars + momentum
   scroll on iOS Safari is a well-known source of jank, so below
   991.98px everything just scrolls normally. */
/*@media (max-width: 991.98px) {*/
/*  .dk-hero-spacer {*/
/*    display: none;*/
/*  }*/
/*}*/

.dk-nav__wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50; /* above .dk-page-content (2) and .dk-hero (1) */
}

.pricing-section {
    padding: 6rem 0;
    background:  var(--dk-primary);
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background-color: rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card.featured {
    background-color:  var(--dk-accent);
    transform: scale(1.05);
}

.pricing-card.featured .card-title,
.pricing-card.featured .price,
.pricing-card.featured .price-period,
.pricing-card.featured .feature-text {
    color: #333 !important;
}

.pricing-card.featured .feature-text.disabled {
    color: rgba(51,51,51,0.5) !important;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--dk-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.pricing-card.featured .card-icon {
    background-color: #333;
}
.pricing-card:hover .card-icon {
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}

.card-icon i {
    color: white;
    font-size: 18px;
}

.price-section {
    background-color: rgba(0,0,0,0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-card.featured .price-section {
    background-color: rgba(0,0,0,0.1);
}

.price {
    font-size: 36px;
    font-weight: bold;
    color:  var(--dk-accent);
    margin: 0;
}

.price-period {
    color: #ccc;
    font-size: 16px;
    margin-left: 5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--dk-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon.disabled {
    background-color: rgba(255,165,0,0.3);
}

.pricing-card.featured .feature-icon {
    background-color: #333;
}

.pricing-card.featured .feature-icon.disabled {
    background-color: rgba(51,51,51,0.3);
}

.feature-icon i {
    color: var(--dk-white);
    font-size: 12px;
}

.feature-text {
    color:  var(--dk-white);
    font-size: 14px;
    margin: 0;
}

.feature-text.disabled {
    color: rgba(255,255,255,0.4);
}

/* service contact section */

.btn-connect-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-connect {
    display: flex;
    align-items: center;
    background: var(--dk-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 3px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid var(--dk-accent);
}
.btn-connect span {
    padding: 1rem 1.5rem;
    flex: 1;
    border-radius: 50px;
    background-color: var(--dk-primary);
}

/* Floating Tags */
.floating-tags {
    position: relative;
    height: 200px;
    width: 100%;
}

.tag {
    position: absolute;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
}

.tag-orange {
    background-color: #ffa726;
    color: white;
}

.tag-green {
    background-color: #5d7c47;
    color: white;
}

.tag-dark {
    background-color: #2c2c2c;
    color: white;
}

/* Tag positioning */
.tag:nth-child(1) { top: 20px; left: 10%; animation-delay: 0s; }
.tag:nth-child(2) { top: 60px; left: 5%; animation-delay: 0.5s; }
.tag:nth-child(3) { top: 30px; left: 25%; animation-delay: 1s; }
.tag:nth-child(4) { top: 80px; left: 20%; animation-delay: 1.5s; }
.tag:nth-child(5) { top: 10px; left: 40%; animation-delay: 2s; }
.tag:nth-child(6) { top: 50px; left: 45%; animation-delay: 2.5s; }
.tag:nth-child(7) { top: 90px; left: 40%; animation-delay: 3s; }
.tag:nth-child(8) { top: 25px; left: 60%; animation-delay: 3.5s; }
.tag:nth-child(9) { top: 70px; left: 65%; animation-delay: 4s; }
.tag:nth-child(10) { top: 40px; left: 75%; animation-delay: 4.5s; }
.tag:nth-child(11) { top: 5px; left: 80%; animation-delay: 5s; }
.tag:nth-child(12) { top: 85px; left: 75%; animation-delay: 5.5s; }
.tag:nth-child(13) { top: 15px; left: 90%; animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}
.form-section-sub-page .form-control, .form-section-sub-page .form-select{
    background-color: #f8f9fa29;
    color: #f8f9fa7d;
}

/* sub page about */
.vision-mission-container {
    padding: 6rem 0;
    background: #f8f9fa;
}

.vision-mission-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.vm-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.vm-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dk-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.vm-icon i {
    color: var(--dk-text);
    font-size: 1.2rem;
}

.vm-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.vm-text {
    color: var(--dk-gray);
    line-height: 1.6;
    font-size: 1rem;
}
.about-hero-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
}
.about-hero-section img{
    width: 100%;
}

.vision-mission-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.vision-mission-container .play-button:hover {
    background: var(--dk-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.vision-mission-container .play-button i {
    color: #333;
    font-size: 24px;
    margin-left: 4px;
}

.vision-mission-container .stats-section {
    background: var(--dk-accent);
    color: var(--dk-text);
    padding: 2.5rem;
    border-radius: 0 0 20px 20px;
    margin-top: -5px;
}

.vision-mission-container .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.vision-mission-container .stat-item {
    text-align: center;
}

.vision-mission-container .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dk-white);
}

.vision-mission-container .stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
    color: var(--dk-text);
}

/* faqs */

.faq-section {
    background: var(--dk-white);
    padding: 6rem 0;
}

.faq-container {
    margin: 0 auto;
    padding: 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    background: var(--dk-accent);
    border-color: var(--dk-accent);
}

.faq-question {
    width: 100%;
    padding: 32px 40px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dk-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--dk-text);
    padding-bottom: 24px;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--dk-text);
    transition: all 0.3s ease;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    color: var(--dk-text);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 40px 32px 40px;
    color: var(--dk-text);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* sub page blog */
.blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 1.5rem;
}

.category-badge {
    background-color: #e6f0ff;
    color: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.date-badge {
    background-color: var(--dk-primary);
    color: var(--dk-white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-left: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--dk-text);
}

.card-text {
    color: var(--dk-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.read-more-btn {
    color: var(--dk-text);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-color);
}

.sidebar-section {
    background: var(--dk-white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dk-text);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--dk-accent);
}

.search-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    width: 100%;
    font-size: 0.95rem;
}

.search-btn {
    background-color: var(--dk-accent);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    color: white;
    margin-left: 0.5rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li:hover {
    padding-left: 0.5rem;
    color: var(--dk-accent);
    cursor: pointer;
}

.recent-post {
    display: flex;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recent-post img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.recent-post-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    color: var(--dk-text);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--dk-gray);
}

.cta-section {
    background: var(--dk-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 100px;
    height: 100px;
    background: var(--dk-accent);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-highlight {
    color: var(--dk-accent);
}

.cta-btn {
    background-color: var(--dk-white);
    border: none;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: var(--dk-text);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 181, 0, 0.4);
}

.cta-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.2);
}

.btn-project-load{
    background: var(--dk-primary);
    color: var(--dk-white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;   
}


/* sub service single */
.service .hero-single-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(180deg,#bbb7f5 0,#ccc3e8 15.5%,#ffeddc 42.5%,#f0e0d2 66.5%,#e7f5ff 84%,#fafeff 100%);
    color: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    /* margin-top: 4rem; */
}
.services-single, .portfolio-single, .blog-single {
    background: linear-gradient(180deg,#bbb7f5 0,#ccc3e8 15.5%,#ffeddc 42.5%,#f0e0d2 66.5%,#e7f5ff 84%,#fafeff 100%);
}
.service .hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.8;
}

.service .service-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service .service-card:hover {
    transform: translateY(-5px);
}

.service .check-icon {
    color: #ffc107;
    margin-right: 10px;
}

.service .portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.service .portfolio-item:hover {
    transform: translateY(-5px);
}

.service .portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service .industry-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service .industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service .industry-number {
    width: 50px;
    height: 50px;
    background: #333;
    color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.service .btn-primary {
    background: #007bff;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
}

.service .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.service .bottom-nav {
    background: #333;
    color: white;
    padding: 1rem 0;
    border-radius: 10px;
    margin-top: 2rem;
}

.service .bottom-nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}

.service .bottom-nav a:hover {
    color: #ffc107;
}

.service .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service .benefit-icon {
    width: 30px;
    height: 30px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.service .benefit-icon i {
    color: white;
    font-size: 12px;
}

/* projects single */
.project .phone-mockups {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.project .phone-container {
    position: relative;
    background: #333;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.project .phone-container:hover {
    transform: translateY(-5px);
}

.project .phone-screen {
    width: 100%;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    position: relative;
}

.project .screen-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

/* Individual phone designs */
.project .phone-1 .screen-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 15px;
}

.project .phone-2 .screen-content {
    background: var(--dk-primary);
    padding: 20px 15px;
}

.project .phone-3 .screen-content {
    background: var(--dk-primary);
    padding: 20px 15px;
}

.project .phone-4 .screen-content {
    background: #f8f9fa;
    padding: 20px 15px;
}

.project .phone-5 .screen-content {
    background: var(--dk-primary);
    padding: 20px 15px;
}

.project .app-header {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project .content-section {
    margin-bottom: 3rem;
}

.project .main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.project .title-highlight {
    color: var(--dk-accent);
}

.project .description-with-profile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project .profile-icon {
    width: 40px;
    height: 40px;
    background: var(--dk-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.project .description-text {
    color: var(--dk-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.project .project-details {
    background: var(--dk-primary);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.project .detail-item {
    margin-bottom: 1.5rem;
}

.project .detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.project .detail-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.project .detail-value.highlight {
    color: var(--dk-accent);
}

.project .section-title {
    /* font-size: 1.8rem; */
    font-weight: 600;
    color: var(--dk-gray);
    margin-bottom: 1.5rem;
}

.project .section-text {
    color: var(--dk-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.project .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project .feature-check {
    color: var(--dk-accent);
    font-size: 0.9rem;
}

.project .feature-text {
    font-size: 0.9rem;
    color: var(--dk-gray);
}

.project .rating-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project .stars-rating {
    display: flex;
    gap: 2px;
}

.project .star-filled {
    color: var(--dk-accent);
    font-size: 1.2rem;
}

.project .rating-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.project .testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.project .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
}

.project .client-details h6 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.project .client-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dk-gray);
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.portfolio-section .section-header {
    margin-bottom: 4rem;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
    box-shadow: 0px 4px 6px #0000002a;
    padding: 16px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-content {
    padding: 1rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tag {
    background: #fff7e6;
    color: var(--accent);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.project-info {
    flex: 1;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.project-arrow {
    flex-shrink: 0;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arrow-btn:hover {
    background: #2e2c51;
    transform: rotate(45deg);
}

.project-card:hover .arrow-btn {
    transform: rotate(45deg);
}


@media (max-width: 768px) {
    .project .phone-mockups {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .project .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project .showcase-screens {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .project .phone-mockups {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project .features-grid {
        grid-template-columns: 1fr;
    }
}


/* media queries */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-img-container {
        width: 280px;
        height: 280px;
        margin: 2rem auto;
    }
    
    .hero-bg-circle {
        /* width: 240px;
        height: 240px; */
        width: 100%;
        height: 100%;
    }
    
    .navbar-nav {
        display: none;
    }
    .navbar-nav ul{
        display: block;
        margin-bottom: 0;
    }
    .hero-section {
        padding: 10rem 0 5rem;
    }
}

@media (max-width: 576px) {
    .banner-item {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive About */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        text-align: center;
        margin-top: 3rem;
    }
    
    .about-image-container {
        width: 400px;
        height: 400px;
    }
    
    .about-circle-bg,
    .about-img {
        width: 350px;
        height: 350px;
        top: 25px;
        left: 25px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .stats-container {
        /*flex-direction: column;*/
        gap: 2rem;
        text-align: center;
        display:grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .about-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .about-image-container {
        width: 300px;
        height: 300px;
    }
    
    .about-circle-bg,
    .about-img {
        width: 250px;
        height: 250px;
        top: 25px;
        left: 25px;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    /*.stats-container {*/
    /*    flex-direction: row;*/
    /*    justify-content: space-around;*/
    /*}*/
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Responsive Services */
@media (max-width: 768px) {
    .section-title-row {
        flex-direction: column;
        text-align: center;
    }
    
    .services-section {
        padding: 4rem 0;
    }
    
    .btn-view-all {
        min-width: auto;
    }
}

/* Responsive Tools */
@media (max-width: 768px) {
    .tools-section {
        padding: 4rem 0;
    }
    
    .tool-circle {
        width: 100px;
        height: 100px;
    }
    
    .progress-ring {
        width: 100px;
        height: 100px;
    }
    
    .progress-ring-circle {
        r: 42;
        cx: 50;
        cy: 50;
    }
    
    .percentage {
        font-size: 1rem;
        bottom: 12px;
    }
    
    .tool-icon {
        font-size: 1.5rem;
    }
    
    .ps-text, .ae-text {
        font-size: 1.2rem;
    }
    
    .sb-text {
        font-size: 1.5rem;
    }
    
    .in-text {
        font-size: 1.2rem;
    }
}


/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 4rem 0;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-content {
        padding: 1.5rem 0;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .project-tags {
        gap: 0.5rem;
    }
    
    .project-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .project-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .arrow-btn {
        width: 40px;
        height: 40px;
        align-self: flex-end;
    }
    .animated-banner {
        transform: rotate(0deg);
    }
    .animated-banner-2 {
        transform: rotate(-3deg);
    }
}

/* Responsive testimonial Design  */
@media (max-width: 991px) {
    .swiper-slide {
        width: 500px;
        min-height: 380px;
    }
}
        
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .swiper-slide {
        width: 350px;
        min-height: 350px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .swiper-pagination-bullet {
        width: 45px;
        height: 45px;
    }
}
        
@media (max-width: 576px) {
    .swiper-slide {
        width: 300px;
        min-height: 320px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .swiper-pagination-bullet {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    
    .swiper-pagination-bullet i {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .connect-title {
        font-size: 2.5rem;
    }
    
    .footer-links {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-links a {
        margin-left: 0;
        margin-right: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .newsletter-btn {
        border-radius: 0 0 10px 10px;
    }
    
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/*  pricing */
@media (max-width: 991px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        /* max-width: 350px; */
        margin-bottom: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }
    
    .pricing-cards {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 30px 20px;
    }
}

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

    .floating-tags {
        height: 150px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .services-container {
        animation-duration: 15s;
    }

    .service-item {
        font-size: 18px;
        margin-right: 40px;
    }
    .tag:nth-child(1) { top: 20px; left: 10%; animation-delay: 0s; }
    .tag:nth-child(2) { top: 60px; left: 0%; animation-delay: 0.5s; }
    .tag:nth-child(3) { top: 40px; left: 38%; animation-delay: 1s; }
    .tag:nth-child(4) { top: 88px; left: 20%; animation-delay: 1.5s; }
    .tag:nth-child(5) { top: 10px; left: 40%; animation-delay: 2s; }
    .tag:nth-child(6) { top: 128px; left: 38%; animation-delay: 2.5s; }
    .tag:nth-child(7) { top: 120px; left: 0%; animation-delay: 3s; }
    .tag:nth-child(8) { top: 162px; left: 66%; animation-delay: 3.5s; }
    .tag:nth-child(9) { top: 124px; left: 65%; animation-delay: 4s; }
    .tag:nth-child(10) { top: 40px; left: 65%; animation-delay: 4.5s; }
    .tag:nth-child(11) { top: 5px; left: 75%; animation-delay: 5s; }
    .tag:nth-child(12) { top: 85px; left: 65%; animation-delay: 5.5s; }
    .tag:nth-child(13) { top: 155px; left: 10%; animation-delay: 6s; }
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 18px;
        padding: 24px 28px;
    }
    
    .faq-item.active .faq-question {
        padding-bottom: 16px;
    }
    
    .faq-answer {
        padding: 0 28px 24px 28px;
        font-size: 16px;
    }
    .faq-section {
        padding: 4rem 0;
    }
}

/* blog dub page */
@media (max-width: 768px) {
    .blog-card img {
        height: 200px;
    }
    
    .sidebar-section {
        margin-top: 2rem;
    }
    
    .search-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
    .navbar-brand img {
        width: 110px;
    }
    .btn-contact {
        padding: 0.4rem 1rem;
    }
}

/* mobile navbar */
@media (max-width: 991.98px) {
    .hamburger {
        display: flex;
    }
    
    .navbar-nav:not(.mobile-nav) {
        display: none !important;
    }

}

@media (min-width: 992px) {
    .mobile-nav {
        display: flex !important;
        position: static;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        flex-direction: row;
        gap: 0;
        width: auto;
        align-items: center;
    }

}
/* @media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1010px;
    }
} */

/*partners*/
.partners-section {
  /*background: #fff;*/
  padding: 0;
  overflow: hidden;
  position: relative;
}

.partners-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
  font-weight: 600;
}

.partners-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  width: calc(250px * 20); /* 10 logos * 2 for looped scroll */
  animation: scroll 25s linear infinite;
}

.partners-track img {
  width: 100px;
  height: auto;
  margin: 0 25px;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  /*opacity: 0.8;*/
  transition: all 0.3s ease;
}

.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

    .code{
        color: #000 !important;
    }
    
    code{
        color: #000 !important;
    }
    
    
  
  /* ============================================================
   DKINGSTECH — Hero Section v3 (Dark Navy)
   ------------------------------------------------------------
   Official design tokens only. Never substitute.
   Loaded after Bootstrap 5.
   ============================================================ */

/* ===== OFFICIAL DKINGSTECH TOKENS ===== */
:root {
  --dk-primary:        #0B1F35;
  --dk-primary-soft:   #1F3246;
  --dk-accent:         #f09a05;
  --dk-accent-soft:    rgba(240, 151, 39, 0.08);
  --dk-cream:          #fcf5ef;
  --bg-gray:           #f8f9fa;
  --dk-white:          #FFFFFF;
  --secondary:         #2563eb;
  --dk-text:           #111827;
  --dk-gray:           #374151;
  --dk-muted:          #6B7280;
  --dk-border:         #E5E7EB;
  --dk-border-strong:  #D1D5DB;
  --dk-success:        #10B981;

  --dk-radius-sm:      4px;
  --dk-radius-md:      8px;
  --dk-radius-lg:      16px;

  --dk-modal-ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --dk-carousel-fade:  600ms;

  --dk-font: -apple-system, BlinkMacSystemFont, "Segoe UI",
             "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Dark-surface translucencies (not brand tokens, just helpers) */
  --dk-on-dark-high:   rgba(255, 255, 255, 0.92);
  --dk-on-dark-mid:    rgba(255, 255, 255, 0.60);
  --dk-on-dark-low:    rgba(255, 255, 255, 0.38);
  --dk-on-dark-border: rgba(255, 255, 255, 0.10);
  --dk-on-dark-fill:   rgba(255, 255, 255, 0.06);
}

/* ===== A11Y ===== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
   HERO SECTION — dark full-bleed
   ============================================================ */
.dk-hero {
  /*background: var(--dk-primary);*/
  font-family: var(--dk-font);
  color: var(--dk-on-dark-high);
  /*position: relative;*/
  overflow: hidden;
    background: linear-gradient(180deg,
      #050d17 0%,
      #0B1F35 12%,
      #16324f 24%,
      #26496d 38%,
      #3d6489 50%,
      #6b8ea3 62%,
      #a3bcc5 74%,
      #dee7e7 86%,
      #f5f2ff80 100%);
  /*background: linear-gradient(180deg,*/
  /*#060b2e 0%,*/
  /*#0a1550 12%,*/
  /*#16297c 24%,*/
  /*#2c4bb0 38%,*/
  /*#4d6cd6 50%,*/
  /*#7c95e8 62%,*/
  /*#b7c5f2 74%,*/
  /*#e6ebfa 86%,*/
  /*#ffffff 100%);*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
  .right{
    flex: 1 1 460px;
    max-width: 720px;
    background:#ffffff;
    border-radius: 22px;
    aspect-ratio: 16 / 9.1;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 30px 70px rgba(3, 8, 35, 0.45);
    position:relative;
  }

/* Dot-matrix "DK" watermark */
.dk-hero__dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.dk-hero__dots-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Subtle warm glow behind the dot mark — adds depth */
.dk-hero::before {
  /*content: '';*/
  /*position: absolute;*/
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle at center,
    rgba(240, 154, 5, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   FLOATING PILL NAVBAR
   ============================================================ */
.dk-nav__wrap {
  /*position: relative;*/
  z-index: 9999;
  padding-top: clamp(14px, 2.5vw, 20px);
  padding-bottom: 0;
}

.dk-nav {
  /*background: rgba(255, 255, 255, 0.06);*/
    background: var(--dk-primary);
  border: 0.5px solid var(--dk-on-dark-border);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dk-nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.dk-nav__logo {
  height: clamp(40px, 3.5vw, 30px);
  width: auto;
  display: block;
}

.dk-nav__brand-fallback {
  color: var(--dk-white);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: 0.2px;
}

.dk-nav__brand-dk { color: var(--dk-accent); }

.dk-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: center;
}

.dk-nav__links li { display: inline-flex; }

.dk-nav__link {
  color: var(--dk-on-dark-mid);
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 2px 0;
}

.dk-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--dk-accent);
  transition: width 0.25s ease;
}

.dk-nav__link:hover { color: var(--dk-white); }
.dk-nav__link:hover::after { width: 100%; }

.dk-nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.dk-nav__cta {
  background: var(--dk-accent);
  color: var(--dk-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
      border:none;
    border-radius: 10px;
    cursor:pointer;
}

.dk-nav__cta:hover {
  color: var(--dk-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -4px rgba(240, 154, 5, 0.5);
}

.dk-nav__cta-arrow { transition: transform 0.2s ease; }
.dk-nav__cta:hover .dk-nav__cta-arrow { transform: translateX(2px); }

/* ============================================================
   HAMBURGER
   ============================================================ */
.dk-burger {
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  border-radius: var(--dk-radius-sm);
  transition: background 0.2s ease;
}

.dk-burger:hover { background: var(--dk-on-dark-fill); }

.dk-burger__bar {
  display: block;
  width: 20px; height: 2px;
  background: var(--dk-white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--dk-modal-ease), opacity 0.2s ease;
}

.dk-burger.is-active .dk-burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dk-burger.is-active .dk-burger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.dk-burger.is-active .dk-burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MODAL
   ============================================================ */
.dk-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 31, 53, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  pointer-events: none;
  z-index: 90;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.dk-modal-backdrop.is-active {
  background: rgba(11, 31, 53, 0.60);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}

.dk-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dk-modal.is-active { opacity: 1; pointer-events: auto; }

.dk-modal__card {
  background: var(--dk-white);
  border-radius: var(--dk-radius-lg);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 60px -12px rgba(11, 31, 53, 0.45);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--dk-modal-ease), opacity 0.3s ease;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dk-modal.is-active .dk-modal__card { transform: translateY(0) scale(1); opacity: 1; }

.dk-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--dk-border);
}

.dk-modal__brand { color: var(--dk-primary); font-weight: 500; font-size: 16px; }
.dk-modal__brand-accent { color: var(--dk-accent); }

.dk-modal__close {
  background: transparent; border: 0;
  color: var(--dk-muted);
  width: 34px; height: 34px;
  border-radius: var(--dk-radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.dk-modal__close:hover { background: var(--dk-border); color: var(--dk-primary); }

.dk-modal__nav { padding: 10px 0; }
.dk-modal__nav ul { list-style: none; margin: 0; padding: 0; }

.dk-modal__link {
  display: block;
  padding: 14px 24px;
  color: var(--dk-primary);
  font-size: 16px; font-weight: 500;
  text-decoration: none; text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.dk-modal__link:hover { background: var(--dk-cream); color: var(--dk-accent); }

.dk-modal__divider { height: 1px; background: var(--dk-border); margin: 0 24px; }

.dk-modal__actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 24px 0;
}

.dk-modal__btn {
  display: flex; align-items: center; justify-content: center;
  height: 48px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  border-radius: var(--dk-radius-sm);
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}

.dk-modal__btn--ghost {
  background: var(--dk-white);
  color: var(--dk-primary);
  border-color: var(--dk-primary);
}

.dk-modal__btn--ghost:hover { background: var(--dk-primary); color: var(--dk-white); }

.dk-modal__btn--primary { background: var(--dk-primary); color: var(--dk-white); }
.dk-modal__btn--primary:hover { background: var(--dk-accent); color: var(--dk-primary); }

.dk-modal__contact {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  padding: 20px 24px 24px;
}

.dk-modal__contact a {
  font-size: 12px; color: var(--dk-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dk-modal__contact a:hover { color: var(--dk-accent); }

.dk-modal__contact-sep {
  width: 3px; height: 3px;
  background: var(--dk-border-strong);
  border-radius: 50%;
}

body.dk-modal-open { overflow: hidden; }

/* ============================================================
   HERO BODY
   ============================================================ */
.dk-hero__body {
  position: relative;
  z-index: 1;
  padding-top: clamp(12rem, 8vw, 6.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

/* ===== Eyebrow ===== */
.dk-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dk-on-dark-fill);
  border: 0.5px solid var(--dk-on-dark-border);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 500;
  color: var(--dk-on-dark-mid);
  letter-spacing: 0.2px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.dk-hero__eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--dk-success);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  flex: 0 0 auto;
  animation: dk-pulse 2.4s ease-in-out infinite;
}

@keyframes dk-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ===== Headline ===== */
.dk-hero__headline {
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  /*font-weight: 500;*/
  /*line-height: 1.09;*/
  /*letter-spacing: -0.025em;*/
  color: var(--dk-white);
  /*margin: 0 0 clamp(0.875rem, 2vw, 1.1rem);*/
    /*line-height: 1.06;*/
    font-weight: 700;
    /*color: #ffffff;*/
    /*letter-spacing: -1.5px;*/
    margin-bottom: 28px;
}
  .lead{
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-body);
    max-width: 560px;
    font-weight: 400;
    margin-bottom: 40px;
  }

.dk-hero__headline-muted {
  color: var(--dk-on-dark-low);
  font-style: italic;
  font-weight: 400;
}

/* ===== Lede ===== */
.dk-hero__lede {
  font-size: clamp(13.5px, 1.8vw, 15px);
  line-height: 1.7;
  color: var(--dk-on-dark-mid);
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  max-width: 520px;
}

.dk-hero__lede strong {
  color: var(--dk-on-dark-high);
  font-weight: 500;
}

/* ===== CTAs ===== */
.dk-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.dk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}

.dk-btn--primary {
  background: var(--dk-accent);
  color: var(--dk-primary);
  padding: 13px 22px;
  border-radius: 10px;
  min-height: 46px;
}

.dk-btn--primary:hover {
  color: var(--dk-primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(240, 154, 5, 0.5);
}

.dk-btn--ghost {
  color: var(--dk-primary);
  padding: 13px 4px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.47);
  border-radius: 0;
  background: transparent;
  font-weight:600;
}

.dk-btn--ghost:hover {
  color: var(--dk-white);
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.dk-btn__arrow { transition: transform 0.2s ease; }
.dk-btn:hover .dk-btn__arrow { transform: translateX(3px); }

/* ===== Three-column metadata bar ===== */
.dk-hero__meta {
  padding-top: clamp(1rem, 2vw, 1.25rem);
  border-top: 0.5px solid var(--dk-on-dark-border);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3.5vw, 40px);
  flex-wrap: wrap;
}

.dk-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dk-hero__meta-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--dk-on-dark-low);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.dk-hero__meta-value {
  font-size: clamp(12px, 1.5vw, 13.5px);
  font-weight: 400;
  color: var(--dk-on-dark-mid);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.dk-hero__meta-dot {
  width: 6px;
  height: 6px;
  background: var(--dk-success);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.22);
  flex: 0 0 auto;
  animation: dk-pulse 2.4s ease-in-out infinite;
}

.dk-hero__meta-sep {
  width: 0.5px;
  height: 30px;
  background: var(--dk-on-dark-border);
  flex: 0 0 auto;
  align-self: center;
}

@media (max-width: 575.98px) {
  .dk-hero__meta-sep { display: none; }
  .dk-hero__meta { gap: 18px; }
}

/* ============================================================
   HERO VISUAL (right column wrapper + floating cards)
   ============================================================ */
.dk-hero__visual {
  position: relative;
  /* Generous padding so floating cards don't overflow the block flow */
  /*padding: 30px 44px 52px 20px;*/
}

/* ===== Floating stat cards ===== */

/* MRR card — white, top-right */
.dk-fstat--mrr {
  position: absolute;
  top: 0; right: 0;
  background: var(--dk-white);
  border-radius: var(--dk-radius-md);
  padding: 10px 14px;
  box-shadow: 0 6px 24px -4px rgba(11, 31, 53, 0.35);
  z-index: 3;
  animation: dk-float-a 5s ease-in-out infinite;
}

.dk-fstat--mrr .dk-fstat__label {
  font-size: 9px;
  font-weight: 500;
  color: var(--dk-muted);
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.dk-fstat--mrr .dk-fstat__value {
  font-size: 22px;
  font-weight: 500;
  color: var(--dk-primary);
  letter-spacing: -0.5px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.dk-fstat--mrr .dk-fstat__badge {
  font-size: 10px;
  font-weight: 500;
  color: var(--dk-success);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 999px;
}

.dk-fstat--mrr .dk-fstat__sub {
  font-size: 9px;
  color: var(--dk-muted);
  margin-top: 3px;
}

/* Customers card — dark, bottom-left */
.dk-fstat--customers {
  position: absolute;
  bottom: 16px; left: 0;
  background: var(--dk-primary-soft);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dk-radius-md);
  padding: 10px 14px;
  box-shadow: 0 6px 24px -4px rgba(11, 31, 53, 0.4);
  z-index: 3;
  animation: dk-float-b 5.5s ease-in-out infinite;
}

.dk-fstat--customers .dk-fstat__label {
  font-size: 9px;
  font-weight: 500;
  color: var(--dk-on-dark-low);
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.dk-fstat--customers .dk-fstat__value {
  font-size: 22px;
  font-weight: 500;
  color: var(--dk-white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.dk-fstat--customers .dk-fstat__sub {
  font-size: 9px;
  color: var(--dk-on-dark-low);
  margin-top: 3px;
}

/* Uptime pill — green, bottom-right of frame */
.dk-fstat--uptime {
  position: absolute;
  bottom: 54px; right: 0;
  background: rgba(16, 185, 129, 0.10);
  border: 0.5px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  padding: 7px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  color: var(--dk-success);
  z-index: 3;
  animation: dk-float-a 6s ease-in-out infinite;
}

.dk-fstat__dot {
  width: 6px; height: 6px;
  background: var(--dk-success);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  flex: 0 0 auto;
}

/* Float keyframes — gentle vertical drift */
@keyframes dk-float-a {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes dk-float-b {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ============================================================
   PRODUCT CAROUSEL
   ============================================================ */
.dk-carousel {
  position: relative;
  width: 100%;
}

.dk-carousel__frame {
  background: var(--dk-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 56px -12px rgba(11, 31, 53, 0.55);
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dk-carousel:hover .dk-carousel__frame {
  transform: rotate(-0.8deg) translateY(-4px);
  box-shadow: 0 28px 64px -12px rgba(11, 31, 53, 0.65);
}

.dk-carousel__chrome {
  background: var(--bg-gray);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 0.5px solid var(--dk-border-strong);
}

.dk-mock__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.dk-mock__dot--red   { background: #EF4444; }
.dk-mock__dot--amber { background: #F59E0B; }
.dk-mock__dot--green { background: var(--dk-success); }

.dk-carousel__url {
  font-size: clamp(9px, 1.3vw, 10.5px);
  color: var(--dk-muted);
  margin-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity var(--dk-carousel-fade) ease;
}

.dk-carousel__url.is-fading { opacity: 0; }

.dk-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--dk-cream);
  overflow: hidden;
}

.dk-carousel__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--dk-carousel-fade) ease,
    transform var(--dk-carousel-fade) ease;
  pointer-events: none;
}

.dk-carousel__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dk-carousel__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Caption */
.dk-carousel__caption {
  margin-top: 14px;
  padding-left: 4px;
  min-height: 34px;
  transition: opacity 0.25s ease;
}

.dk-carousel__caption.is-fading { opacity: 0.3; }

.dk-carousel__caption-name {
  font-size: clamp(12px, 1.6vw, 13.5px);
  font-weight: 500;
  color: var(--dk-primary);
}

.dk-carousel__caption-tagline {
  font-size: clamp(10px, 1.3vw, 11.5px);
  color: var(--dk-primary);
  margin-top: 2px;
}

/* Dots */
.dk-carousel__dots {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding-left: 4px;
}

.dk-carousel__dot {
  position: relative;
  width: 24px; height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease, width 0.3s ease;
}

/* Larger invisible touch target */
.dk-carousel__dot::before {
  content: '';
  position: absolute;
  inset: -10px -4px;
}

.dk-carousel__dot:hover { background: rgba(255, 255, 255, 0.32); }

.dk-carousel__dot.is-active {
  width: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.dk-carousel__dot-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 0;
  background: var(--dk-accent);
  transition: width linear;
}

.dk-carousel__dot.is-paused .dk-carousel__dot-progress { transition: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .dk-hero__visual {
    /*padding: 24px 32px 44px 16px;*/
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .dk-hero__chips { gap: 5px; }
  .dk-chip { font-size: 9.5px; padding: 3px 8px; }

  /* On smaller tablets, reduce float card size */
  .dk-fstat--mrr .dk-fstat__value,
  .dk-fstat--customers .dk-fstat__value { font-size: 18px; }
}

@media (max-width: 575.98px) {
  .dk-nav { padding: 9px 9px 9px 16px; }

  .dk-hero__body {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  /* Stack CTAs on small phones */
  .dk-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .dk-btn--primary,
  .dk-btn--ghost {
    width: 100%;
    justify-content: center;
  }

  .dk-btn--ghost {
    border-bottom: 0;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
    padding: 10px 4px;
  }

  /* On mobile, hero visual is full width - reduce extra padding */
  .dk-hero__visual {
    padding: 24px 28px 44px 8px;
  }

  /* Adjust floating card positions for mobile */
  .dk-fstat--mrr { right: -4px; top: 6px; }
  .dk-fstat--customers { left: -4px; bottom: 14px; }
  .dk-fstat--uptime { right: -4px; bottom: 50px; }

  /* Smaller float cards on mobile */
  .dk-fstat--mrr,
  .dk-fstat--customers { padding: 8px 11px; }

  .dk-fstat--mrr .dk-fstat__value,
  .dk-fstat--customers .dk-fstat__value { font-size: 16px; }

  .dk-hero__shipped { flex-direction: column; align-items: flex-start; }
  .dk-hero__shipped-list { gap: 8px; }

  .dk-carousel__frame { transform: rotate(-1deg); }
}

@media (max-width: 375px) {
  .dk-hero__headline { font-size: 1.5rem; }
  .dk-fstat--uptime { display: none; } /* Too crowded at 375px */
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .dk-hero__body { padding-top: 3rem; padding-bottom: 2rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dk-fstat--mrr,
  .dk-fstat--customers,
  .dk-fstat--uptime,
  .dk-carousel__slide,
  .dk-carousel__url,
  .dk-carousel__caption,
  .dk-carousel__dot,
  .dk-carousel__dot-progress,
  .dk-hero__eyebrow-dot,
  .dk-modal, .dk-modal__card,
  .dk-modal-backdrop,
  .dk-burger__bar {
    animation: none !important;
    transition: none !important;
  }
  .dk-carousel__dot-progress { width: 0 !important; }
  .dk-carousel__slide { opacity: 0; }
  .dk-carousel__slide.is-active { opacity: 1; }
}



/* ============================================================
   DKINGSTECH — Services Section (Option A: Numbered List)
   Uses official Dkingstech design tokens.
   No JavaScript required.
   ============================================================ */

/* ============================================================
   SECTION SHELL
   ============================================================ */
.dk-services {
  position: relative;
  /*background: var(--dk-cream);*/
  font-family: var(--dk-font);
  color: var(--dk-text);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dk-services__watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.dk-services__header {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 3.5vw, 3rem);
  border-bottom: 0.5px solid var(--dk-border);
}

.dk-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--dk-accent);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dk-services__eyebrow-rule {
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--dk-accent);
}

.dk-services__title {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--dk-primary);
}

.dk-services__desc {
  font-size: clamp(13.5px, 1.7vw, 15px);
  line-height: 1.7;
  color: var(--dk-gray);
}

/* ============================================================
   SERVICE LIST
   ============================================================ */
.dk-services__list {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SERVICE ROW
   ============================================================ */
.dk-svc-row {
  border-bottom: 0.5px solid var(--dk-border);
}

.dk-svc-row__inner {
  display: flex;
  text-decoration: none;
  color: inherit;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  gap: 0;
  transition: background 0.2s ease;
  position: relative;

  /* Accent left-border appears on hover */
}

.dk-svc-row__inner::before {
  content: '';
  position: absolute;
  left: -24px; /* aligns with container edge */
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dk-accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s var(--dk-modal-ease);
}

.dk-svc-row:hover .dk-svc-row__inner::before {
  transform: scaleY(1);
}

/* Number column */
.dk-svc-row__num-col {
  width: clamp(44px, 6vw, 64px);
  padding-top: 4px;
  flex-shrink: 0;
}

.dk-svc-row__num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--dk-accent);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  transition: color 0.2s ease;
}

/* Name column */
.dk-svc-row__name-col {
  padding-right: clamp(16px, 3vw, 40px);
  padding-top: 2px;
}

.dk-svc-row__name {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: var(--dk-primary);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

/* Hook + proof column */
.dk-svc-row__hook-col {
  padding-top: 2px;
  padding-right: 16px;
}

.dk-svc-row__hook {
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.65;
  color: var(--dk-gray);
  margin: 0;
}

.dk-svc-row__proof {
  font-size: clamp(11.5px, 1.4vw, 12.5px);
  font-weight: 500;
  color: var(--dk-accent);
  margin: 0;
  letter-spacing: 0.1px;
}

/* Arrow column */
.dk-svc-row__arrow-col {
  align-items: center;
  padding-left: 12px;
  padding-top: 3px;
}

.dk-svc-row__arrow {
  font-size: 18px;
  color: var(--dk-border-strong);
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* ── Hover state ── */
.dk-svc-row:hover .dk-svc-row__num {
  color: var(--dk-primary);
}

.dk-svc-row:hover .dk-svc-row__name {
  color: var(--dk-accent);
}

.dk-svc-row:hover .dk-svc-row__hook {
  color: var(--dk-text);
}

.dk-svc-row:hover .dk-svc-row__arrow {
  color: var(--dk-accent);
  transform: translateX(4px);
}

/* ── Focus state (keyboard) ── */
.dk-svc-row__inner:focus-visible {
  outline: 2px solid var(--dk-accent);
  outline-offset: 4px;
  border-radius: var(--dk-radius-sm);
}

/* ============================================================
   FOOTER
   ============================================================ */
.dk-services__footer {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.dk-services__footer-text {
  font-size: 14px;
  font-style: italic;
  color: var(--dk-muted);
}

.dk-services__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dk-primary);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--dk-primary);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dk-services__footer-link:hover {
  color: var(--dk-accent);
  border-bottom-color: var(--dk-accent);
}

.dk-services__footer-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.dk-services__footer-link:hover .dk-services__footer-arrow {
  transform: translateX(3px);
}

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

/* On mobile, name sits below number on same visual row */
@media (max-width: 767.98px) {

  .dk-svc-row__inner {
    flex-wrap: wrap;
    padding: 1.25rem 0;
  }

  .dk-svc-row__num-col {
    width: 40px;
  }

  /* Name sits beside the number on mobile */
  .dk-svc-row__name-col {
    flex: 1;
    padding-right: 0;
    padding-top: 3px;
  }

  /* Hook drops to full width below */
  .dk-svc-row__hook-col {
    width: 100%;
    padding-left: 40px; /* aligns with name */
    padding-top: 6px;
    padding-right: 0;
  }

  .dk-svc-row__inner::before {
    left: -16px;
  }
}

@media (max-width: 575.98px) {
  .dk-services__footer {
    padding-bottom: 3.5rem;
  }

  .dk-svc-row__hook-col {
    padding-left: 36px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .dk-svc-row__inner,
  .dk-svc-row__inner::before,
  .dk-svc-row__num,
  .dk-svc-row__name,
  .dk-svc-row__hook,
  .dk-svc-row__arrow,
  .dk-services__footer-link,
  .dk-services__footer-arrow {
    transition: none !important;
  }
}



/* ===== TOPOGRAPHIC WATERMARK ===== */
/*.dk-case-studies__watermark {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  pointer-events: none;*/
/*  z-index: 0;*/
/*  opacity: 0.85;*/
/*}*/



/* ============================================================
   DKINGSTECH — case-studies Section
   ------------------------------------------------------------
   HOW THE STICKY WORKS (read this before changing anything):

   Bootstrap's .row is display:flex with default align-items:
   stretch. Both columns (.col-lg-6) stretch to the SAME height
   — determined by the taller text column. Because the visual
   column is now as tall as the text column, the .dk-case-study__sticky
   element inside it has room to stick.

   CRITICAL RULES:
   1. NEVER put position:sticky on the .col itself.
      Put it on .dk-case-study__sticky (the child div inside the col).
   2. NEVER add overflow:hidden or overflow:auto to .dk-case-study,
      .dk-case-studies, or any ancestor of this section.
   3. NEVER add align-items:flex-start to the .row — this
      makes columns their natural height, killing the sticky.

   If sticky stops working, check all ancestors for overflow.
   ============================================================ */

/* ============================================================
   SECTION
   ============================================================ */
.dk-case-studies {
  /*background: var(--dk-cream);*/
  font-family: var(--dk-font);
  color: var(--dk-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   HEADER
   ============================================================ */
.dk-case-studies__header {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 3.5vw, 3rem);
  /*border-bottom: 0.5px solid var(--dk-border);*/
}

.dk-case-studies__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--dk-accent);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dk-case-studies__eyebrow-rule {
  width: 18px;
  height: 1.5px;
  background: var(--dk-accent);
  display: inline-block;
}

.dk-case-studies__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--dk-primary);
}

.dk-case-studies__desc {
  font-size: clamp(14px, 1.8vw, 15.5px);
  line-height: 1.65;
  color: var(--dk-gray);
}

/* ============================================================
   case-study ARTICLE (wrapper for each case-study)
   ============================================================ */
.dk-case-study {
  /*border-bottom: 0.5px solid var(--dk-border);*/
  /* NO overflow:hidden here — it breaks sticky */
}

.dk-case-study:last-of-type {
  border-bottom: none;
}

/* ============================================================
   TEXT COLUMN
   ============================================================ */
.dk-case-study__text-col {
  /* Dividing border between the two halves */
  /*border-right: 0.5px solid var(--dk-border);*/
}

/* Reversed case-studies: text moves to the right via CSS order.
   The border flips accordingly. */
.dk-case-study--reversed .dk-case-study__text-col {
  order: 2;
  border-right: none;
  /*border-left: 0.5px solid var(--dk-border);*/
}

.dk-case-study--reversed .dk-case-study__visual-col {
  order: 1;
}

.dk-case-study__text-inner {
  /*padding: clamp(80px, 10vw, 130px) clamp(32px, 5vw, 72px);*/
  /*max-width: 560px;*/
    padding: 1rem 20px;
}

/* Reversed: align text inner to the right side of its column */
.dk-case-study--reversed .dk-case-study__text-inner {
  margin-left: auto;
}

/* ── case-study number + slug ── */
.dk-case-study__num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  color: var(--dk-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.dk-case-study__slug {
  font-size: 11px;
  font-weight: 500;
  color: var(--dk-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ── Headline ── */
.dk-case-study__headline {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dk-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.4rem);
}

.dk-case-study__headline em {
  font-style: italic;
  font-weight: 400;
  color: #9CA3AF;
}

/* ── Body paragraphs ── */
.dk-case-study__para {
  /*font-size: clamp(14px, 1.6vw, 15px);*/
  line-height: 1.72;
  color: var(--dk-gray);
  margin: 0 0 1rem;
}

/* ── Included list ── */
.dk-case-study__included {
  border-top: 0.5px solid var(--dk-border);
  padding-top: clamp(1rem, 2vw, 1.4rem);
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.dk-case-study__included-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--dk-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.dk-case-study__included-list li {
  font-size: clamp(13px, 1.5vw, 14px);
  color: var(--dk-gray);
  line-height: 1.55;
  margin-bottom: 9px;
}

.dk-case-study__included-list li:last-child {
  margin-bottom: 0;
}

.dk-case-study__bullet {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--dk-accent);
  border-radius: 50%;
  margin-top: 7px;
}

/* ── Stack tags ── */
.dk-case-study__stack {
  border-top: 0.5px solid var(--dk-border);
}

.dk-case-study__tech {
  font-size: 10px;
  font-weight: 500;
  color: var(--dk-primary);
  background: var(--dk-white);
  border: 0.5px solid var(--dk-border-strong);
  padding: 4px 10px;
  border-radius: var(--dk-radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   VISUAL COLUMN + STICKY MECHANISM
   ============================================================ */

/* The col div: NO position, NO height, NO overflow.
   It stretches to match the text column (Bootstrap default).
   That gives the sticky element inside its travel distance. */
.dk-case-study__visual-col {
  /*background: var(--dk-cream);*/
  /* Do NOT add: position:sticky, height, overflow:hidden */
}

/* THE STICKY ELEMENT — lives inside the col, not on the col */
.dk-case-study__sticky {
  position: sticky;
  top: 0;
  height: 80vh;               /* takes up exactly one screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  /*padding: clamp(28px, 4vw, 52px);*/
  padding: 0;
}

/* Diagram card — always visible.
   Never animate opacity/transform on children of a sticky element.
   Doing so reorganises compositing layers and silently breaks sticky. */
.dk-case-study__diagram-wrap {
  width: 100%;
  max-width: 750px;
  background: var(--dk-white);
  border-radius: var(--dk-radius-lg);
  box-shadow:
    0 1px 2px rgba(11, 31, 53, 0.04),
    0 8px 24px -4px rgba(11, 31, 53, 0.10),
    0 24px 48px -16px rgba(11, 31, 53, 0.14);
  overflow: hidden;
}

.dk-case-study__diagram-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   DIAGRAM ANIMATIONS
   Only SVG-internal properties are animated (stroke-dashoffset,
   width on SVG rects). These are SVG attribute changes that
   do NOT create stacking contexts or affect sticky positioning.
   Nodes are always visible — no opacity animation on them.
   ============================================================ */

/* Nodes: always visible */
.dk-diagram__node {
  opacity: 1;
}

/* SaaS: chart line draws itself */
.dk-diagram__line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 1.6s var(--dk-modal-ease);
}

.dk-case-study.is-visible .dk-diagram__line {
  stroke-dashoffset: 0;
  transition-delay: 0.45s;
}

/* Marketplace: progress bar fills */
.dk-diagram__progress {
  transition: width 1.2s var(--dk-modal-ease);
}

.dk-case-study.is-visible .dk-diagram__progress {
  width: 240px !important;
  transition-delay: 0.75s;
}

/* AI: live dot pulses */
.dk-diagram__pulse {
  transform-origin: center;
  animation: dkPulseRing 2.2s ease-in-out infinite;
}

@keyframes dkPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50%       { transform: scale(2); opacity: 0; }
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.dk-case-studies__footer {
  border-top: 0.5px solid var(--dk-border);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.dk-case-studies__footer-text {
  font-size: 14px;
  font-style: italic;
  color: var(--dk-muted);
}

.dk-case-studies__footer-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dk-primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--dk-primary);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dk-case-studies__footer-link:hover {
  color: var(--dk-accent);
  border-bottom-color: var(--dk-accent);
}

.dk-case-studies__footer-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.dk-case-studies__footer-link:hover .dk-case-studies__footer-arrow {
  transform: translateX(3px);
}

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

/* Compress padding on smaller desktops */
@media (max-width: 1280px) {
  .dk-case-study__text-inner {
    padding: 80px 48px;
  
  }
}

/* Tablet (≤991px): disable sticky, stack into single column */
@media (max-width: 991.98px) {

  /* Reset column ordering */
  .dk-case-study--reversed .dk-case-study__text-col,
  .dk-case-study--reversed .dk-case-study__visual-col {
    order: unset;
  }

  /* Visual always appears ABOVE text on mobile */
  .dk-case-study__visual-col {
    order: -1;
  }

  /* Remove side borders, add top border to text col */
  .dk-case-study__text-col,
  .dk-case-study--reversed .dk-case-study__text-col {
    border-right: none;
    border-left: none;
    border-top: 0.5px solid var(--dk-border);
  }

  /* Disable sticky */
  .dk-case-study__sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 28px 24px 0;
  }

  .dk-case-study__text-inner,
  .dk-case-study--reversed .dk-case-study__text-inner {
    max-width: 100%;
    margin-left: 0;
    padding: 28px 24px 48px;
  }

  .dk-case-study__diagram-wrap {
    max-width: 100%;
  }
}

/* Phone (≤575px) */
@media (max-width: 575.98px) {
  .dk-case-studies__header {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  .dk-case-study__sticky {
    padding: 20px 20px 0;
  }

  .dk-case-study__text-inner {
    padding: 20px 20px 40px;
  }

  .dk-case-studies__footer-link {
    display: inline-block;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dk-case-study__diagram-wrap,
  .dk-diagram__node,
  .dk-diagram__line,
  .dk-diagram__progress,
  .dk-diagram__pulse {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
  .dk-diagram__progress {
    width: 240px !important;
  }
}


 
/* ── Result pill ── */
.dk-case-study__result {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--dk-muted, #6B7280);
  margin-bottom: 0;
}
 
.dk-case-study__result-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
}
 
/* ── Live site link ── */
.dk-case-study__live-link {
  font-size: .8125rem;
  font-weight: 500;
  color: #f09a05;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, opacity .2s;
}
 
.dk-case-study__live-link:hover {
  border-color: #f09a05;
  opacity: .85;
}
 
/* ============================================================
   CTA Footer (p42-style)
   ============================================================ */
.dk-case-studies__cta-footer {
  margin-top: 2rem;
  padding: 0 0 5rem;
}
 
.dk-cta-inner {
  border-top: 1px solid rgba(11, 31, 53, .12);
  padding-top: 2rem;
}
 
/* Meta row */
.dk-cta-meta {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 2rem;
}
 
.dk-cta-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f09a05;
}
 
.dk-cta-divider {
  color: rgba(11, 31, 53, .25);
  font-size: .75rem;
}
 
.dk-cta-avail {
  font-size: .75rem;
  color: #6B7280;
}
 
/* Headline */
.dk-cta-headline {
  font-size: clamp(2.5rem, 3vw,3.5rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 700;
  color: #0B1F35;
  margin-bottom: 1.5rem;
}
 
.dk-cta-headline em {
  font-style: normal;
  color: #f09a05;
}
 
/* Body copy */
.dk-cta-body {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 2.5rem;
}
 
/* Actions row */
.dk-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
 
.dk-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #0B1F35;
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
  padding: .875rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
 
.dk-cta-primary:hover {
  background: #f09a05;
  color: #fff;
  transform: translateY(-1px);
}
 
.dk-cta-arrow {
  display: inline-block;
  transition: transform .2s;
}
 
.dk-cta-primary:hover .dk-cta-arrow {
  transform: translateX(3px);
}
 
.dk-cta-secondary {
  font-size: .9375rem;
  color: #6B7280;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
 
.dk-cta-secondary:hover {
  color: #0B1F35;
  border-color: #0B1F35;
}
 
/* Tag pills */
.dk-cta-tags li {
  font-size: .75rem;
  font-weight: 500;
  color: #6B7280;
  background: rgba(11, 31, 53, .05);
  border: 1px solid rgba(11, 31, 53, .08);
  border-radius: 100px;
  padding: .3rem .875rem;
  letter-spacing: .01em;
}
 