/* Darshil created this file */


/* dp header main css */

.zunesis-logo{
    height: 60px;
}


/*dp footer  */

.zunesis-footer-logo{
    height: 60px;
}

.footer-phone{
    width: 10px;
}

.copyright-comp{
    color: white!important;
    font-weight:bold;
}

.dp-footerblogimg{
    width: 5rem !important;
}


/* Dp's careers css */

.detail-skill {
    list-style: circle;
    margin-left: 2rem;
}

/* Dp's Talk To Us */
.msg{
    z-index: 9 !important;
}

/* Dp's privacy policy */


    .privacy{
        margin-top: 20px !important;
        margin-bottom: 10px !important;
    }
  
    .dp-service{
        height: 21rem !important;
    }

/* Dp's Marque */

.dp-marque{
    padding-top: 9rem !important;
}


/* Dp's Careers */

.dp-selects{
    padding: 20px;
}

.profile{
    font-weight: 600;
    color: black;
}

/* Dp's contact */

.dp-emailsmall{
    text-transform: lowercase;
}
.img{
    z-index: -1;
}

/* 404  */
.img404{
    height: 22rem !important;
}

.error-items h3 {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  /* dp's services */

  .dp-white{
    color: white;
  }

  /* Dp's Blog */

  .dp-blog ul{
    /* display: flex;    */
    gap: 19px !important;
  }
  
  /*.active li{*/
  /*    color:#384BFF!important;*/
  /*}*/
  
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(138, 42, 163, 0.15) !important;
  position: relative;
  z-index: 5;
}


.contact-form-card .form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fafafa;
  transition: all 0.3s ease-in-out;
}

.contact-form-card .form-control:focus {
  border-color: #8a2aa3;
  box-shadow: 0 0 0 0.15rem rgba(138, 42, 163, 0.2);
  background-color: #fff;
}

.insight-section {
  background: #f8f9fb;
  position: relative;
  overflow: hidden;
}

.icon-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 10px;
  box-shadow: 0 6px 20px rgba(138, 42, 163, 0.08);
  transition: all 0.3s ease;
}

.icon-card i {
  font-size: 32px;
  color: #8a2aa3;
  margin-bottom: 12px;
  display: block;
}

.icon-card h6 {
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}

.icon-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #fff, #f9f3ff);
  box-shadow: 0 12px 28px rgba(138, 42, 163, 0.15);
}

/* Gradient heading text */
.insight-content h3.gradient-text {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(90deg, #ed3267 0%, #8a2aa3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Supporting paragraph */
.insight-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Gradient line separator */
.gradient-line {
  border: none;
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, #ed3267 0%, #8a2aa3 100%);
  border-radius: 3px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .insight-section {
    text-align: center;
  }
  .gradient-line {
    margin: 20px auto;
  }
}

.insight-content p + h3 {
  margin-top: 40px; /* gap before next heading */
}
.approach-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Each block (step) */
.approach-section .approach-block {
  overflow: hidden;
  width: 100%;
}

/* Image container */
.approach-section .approach-img {
  height: clamp(320px, 40vw, 440px);
  overflow: hidden;
  position: relative;
}

/* Image styling */
.approach-section .approach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Subtle zoom hover effect */
.approach-section .approach-img:hover img {
  transform: scale(1.03);
}

/* --- 2. Make Icons POP with Theme Colors --- */

.icon-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* THIS IS THE CHANGE: Use your full-color gradient */
  background: linear-gradient(135deg, var(--theme2, #892aa3), var(--theme, #f33262));
  /* Add a subtle shadow for depth */
  box-shadow: var(--box-shadow-2, 0px 4px 25px rgba(56, 75, 255, 0.1));
}

/* This makes your .svg icon white */
.icon-circle img {
  filter: brightness(0) invert(1);
  width: 32px; /* 32px fits better in a 64px circle */
  height: 32px;
}

/* Typography */
.approach-section h3 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.approach-section p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* Alternate backgrounds */
.approach-section .bg-light {
  background: #f7f8fb !important;
}

.approach-section .bg-white {
  background: #ffffff !important;
}

/* Button styling */
.approach-section .theme-btn {
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.approach-section .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* Image fit helper */
.object-fit-cover {
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .approach-section .col-lg-6.px-5.py-5 {
    padding: 40px 32px !important;
  }
}

@media (max-width: 991.98px) {
  .approach-section .col-lg-6.px-5.py-5 {
    padding: 30px 20px !important;
  }
  .approach-section .approach-img {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .approach-section .approach-img {
    height: 260px;
  }
  .icon-circle {
    width: 54px;
    height: 54px;
  }
  .approach-section h3 {
    font-size: 1.25rem;
  }
}

/* Optional: subtle divider between steps */
.approach-section .approach-block + .approach-block {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.approach-section .approach-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

/* Case Studies Section */
.case-studies-section {
  text-align: center;
  padding: 100px 0 60px;
}

.case-studies-section .section-title p {
  color: #555;
  max-width: 720px;
  margin: 0 auto;
}

.case-block {
  width: 100%;
  overflow: hidden;
}

.case-block.bg-white {
  background: #fff;
}

.case-block.bg-gray {
  background: #f7f8fb;
}

.case-block .case-image {
  height: clamp(320px, 40vw, 480px);
  overflow: hidden;
}

.case-block .case-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}

.case-block .case-image:hover img {
  transform: scale(1.03);
}

.case-content .case-tag {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #8a2aa3;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
}

.case-content h3 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.case-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.case-content .theme-btn {
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .case-block .case-content {
    padding: 40px 20px !important;
  }
  .case-block .case-image {
    height: 300px;
  }
}

/* ---------- Eyebrow Labels ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  color: #8a2aa3;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ---------- Object Fit Utility ---------- */
.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Section: Data Analysis (Hero) ---------- */
.service-data-analysis {
  background: #fff;
}
.service-data-analysis .data-image {
  height: 100%;
  min-height: 380px;
  max-height: 640px;
  overflow: hidden;
}
.service-data-analysis .lead {
    font-size: 16px;
    color: #444;
    margin-top: 0.5rem;
    font-weight: 400;
}
.service-data-analysis .theme-btn {
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- Section: Data Techniques ---------- */
.data-techniques {
  background: #f6f7fb;
}

.tech-grid {
  margin-top: 1.5rem;
}
.tech-grid .tech-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.tech-grid .tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.tech-grid .tech-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.tech-grid .tech-title {
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
}

/* ---------- Section: CTA ---------- */
.service-cta {
  background: linear-gradient(90deg, #8a2aa3 0%, #ed3267 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.service-cta h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}
.service-cta p {
  color: #fff;
  font-size: 17px;
  opacity: 0.9;
}
.service-cta .theme-btn {
  background: #fff;
  color: #8a2aa3;
  border-radius: 999px;
  padding: 14px 38px;
  margin-top: 20px;
  transition: 0.3s;
}
.service-cta .theme-btn:hover {
  background: #f0f0f0;
}

/* ---------- Utility Colors ---------- */
.bg-gray {
  background: #f6f7fb !important;
}
.bg-white {
  background: #fff !important;
}

/* ---------- Icon Circle (for section steps / approach icons) ---------- */
.icon-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(138, 42, 163, 0.08), rgba(237, 50, 103, 0.08));
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 1199.98px) {
  .service-data-analysis h2 {
    font-size: 34px;
  }
}
@media (max-width: 991.98px) {
  .service-data-analysis .col-lg-5,
  .service-data-analysis .col-lg-6 {
    padding: 30px !important;
  }
  .data-image {
    min-height: 260px;
    max-height: 400px;
  }
  .service-data-analysis h2 {
    font-size: 30px;
  }
  .tech-grid .tech-card {
    padding: 18px;
  }
}
@media (max-width: 767.98px) {
  .tech-grid .tech-title {
    font-size: 14px;
  }
  .service-cta h3 {
    font-size: 26px;
  }
}

/* ---------- Marquee Section (optional if used) ---------- */
.dp-marque {
  overflow: hidden;
  position: relative;
}
.dp-marque .marquee-wrapper {
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
}
.dp-marque .text-style {
  font-weight: 600;
  color: #1a1a1a;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.icon-data .list li:not(:last-child) {
    margin-bottom: 10px;
}
.icon-data  .list li {
    font-weight: 500;
}

.icon-data .list li i {
    color: var(--theme);
    margin-right: 5px;
}

.list li { display:flex; gap:12px; align-items:flex-start; margin-bottom:10px; color:#333; }
.list li i { font-size:18px; color:var(--theme); margin-top:4px; }

.tech-card img {
	width:100px;
}

.dp-service .icon img {
	width:35px !important;
}