/* =============================================================================
   Digital Transformation Landing Page Main Stylesheet
   Theme   : Nanosoft (WordPress)
   Updated : 2026-06-12
   Palette : #07111f (bg)  #00d4ff (accent-cyan)  #7c4dff (accent-purple)
   Font    : Inter (Google Fonts)
   ========================================================================== */

/* Reset and Base Styles */

:root{


--primary:#0057ff;


--secondary:#00d4ff;


--dark:#06101f;


--dark2:#0d1a2f;


--card:#13233c;


--text:#e7f0ff;


--muted:#a9b6d3;


}
 
*{


margin:0;


padding:0;


box-sizing:border-box;


font-family:'Inter',sans-serif;


}
 
body{


background:var(--dark);


color:white;


overflow-x:hidden;


line-height:1.7;


}
 
.container{


width:90%;


max-width:1400px;


margin:auto;


}
 
section{


padding:100px 0;


}
 
h1{font-size: 40px;font-weight:800;line-height:1.1;margin-bottom:25px;}
 
h2{


font-size:48px;


font-weight:800;


margin-bottom:20px;


line-height:1.15;


}
 
h3{


font-size:24px;


margin-bottom:15px;


}
 
p{


color:var(--muted);


font-size:15px;


}
 
.eyebrow{


display:inline-block;


font-size:14px;


font-weight:700;


letter-spacing:2px;


text-transform:uppercase;


color:var(--secondary);


margin-bottom:18px;


}
 
.section-intro{


max-width:820px;


margin-bottom:50px;


}
 
.btn{


display:inline-block;


padding:16px 32px;


border-radius:50px;


text-decoration:none;


font-weight:700;


margin-right:15px;


transition:.3s;


}
 
.btn-primary{


background:linear-gradient(90deg,var(--primary),var(--secondary));


color:white;


}
 
.btn-outline{


border:1px solid rgba(255,255,255,.2);


color:white;


}
 
.btn:hover{


transform:translateY(-3px);


}
 
.btn-note{


display:block;


margin-top:14px;


font-size:14px;


color:var(--muted);


}
 
/* ========================================================= */
/* NAV */
/* ========================================================= */

nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 999;
   background: #ffffff;
   backdrop-filter: blur(14px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 22px 0;
}

.logo {
   display: flex;
   align-items: center;
}

.logo img {
   height: 64px;
   width: auto;
   display: block;
   object-fit: contain;
}

@media (max-width: 767px) {
    .logo img {
        height: 48px;
    }
}

.nav-links {
   display: flex;
   gap: 30px;
}

.nav-links a {
   color: #2a2c2f;
   font-size: 15px;
   transition: 0.3s;
   font-weight: 800;
   text-decoration: none;
}

.nav-links a:hover {
   color: #00d9ff;
}

.nav-btn {
   padding: 10px 10px;
   border-radius: 60px;
   background: linear-gradient(90deg, #00d9ff, #0055ff);
   color: white;
   font-weight: 700;
   box-shadow: 0 0 30px rgba(0, 217, 255, 0.25);
   font-size: 13px;
   text-decoration: none;
   transition: box-shadow 0.3s, transform 0.3s;
}

.nav-btn:hover {
   box-shadow: 0 0 40px rgba(0, 217, 255, 0.45);
   transform: translateY(-2px);
}

.nav-toggle { display: none; }

/* ── Mobile nav (tablet + mobile ≤1023px) ── */
@media(max-width:1023px) {
   .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      border-radius: 0.375rem;
      transition: background 0.2s;
      flex-shrink: 0;
      order: 2;
   }
   .nav-toggle:hover { background: rgba(42,44,47,0.07); }
   .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #2a2c2f;
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
   }
   .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
   .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
   .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   .nav-btn { display: none; }
   .nav-links {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 998;
      flex-direction: column;
      gap: 0;
      padding: 0.375rem 0 0.75rem;
      background: #ffffff;
      border-top: 2px solid #00d9ff;
      border-bottom: 1px solid rgba(42,44,47,0.10);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-0.4rem);
      transition: opacity 0.22s ease, visibility 0s 0.22s, transform 0.22s ease;
   }
   .nav-links.is-open {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      transition: opacity 0.22s ease, visibility 0s 0s, transform 0.22s ease;
   }
   .nav-links a {
      display: block;
      padding: 0.875rem 1.5rem;
      border-bottom: 1px solid rgba(42,44,47,0.06);
      color: #2a2c2f !important;
      font-weight: 600;
      font-size: 0.9375rem;
      line-height: 1.4;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
   }
   .nav-links a:last-child { border-bottom: none; }
   .nav-links a:hover,
   .nav-links a:active {
      background: rgba(42,44,47,0.04);
      color: #00d9ff !important;
   }
}

/* ========================================================= */

.hero{min-height:100vh;padding-top: 120px;display:flex;align-items:center;background:


linear-gradient(rgba(4,9,20,.8),rgba(4,9,20,.95)),


url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80');background-size:cover;background-position:center;}
 
.hero-content{


max-width:980px;


}
 
.hero .eyebrow{


border:1px solid rgba(0,212,255,.35);


padding:8px 18px;


border-radius:50px;


}
 
.metric-strip{


margin-top:70px;


display:grid;


grid-template-columns:repeat(4,1fr);


gap:20px;


}
 
.metric{


background:rgba(255,255,255,.05);


backdrop-filter:blur(20px);


padding:30px;


border-radius:20px;


border:1px solid rgba(255,255,255,.08);


text-align:center;


}
 
.metric h3{


font-size:42px;


color:var(--secondary);


}
 
.grid{


display:grid;


gap:25px;


}
 
.grid-2{


grid-template-columns:repeat(2,1fr);


}
 
.grid-3{


grid-template-columns:repeat(3,1fr);


}
 
.grid-4{


grid-template-columns:repeat(4,1fr);


}
 
.card{


background:var(--card);


padding:35px;


border-radius:24px;


border:1px solid rgba(255,255,255,.05);


transition:.3s;


}

.card h3{
   color:var(--secondary);
}
 
.card:hover{


transform:translateY(-8px);


border-color:rgba(0,212,255,.35);


}

.card-icon {
   width: 52px;
   height: 52px;
   background: rgba(0, 212, 255, 0.08);
   border: 1px solid rgba(0, 212, 255, 0.22);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 18px;
   flex-shrink: 0;
}
 
.card .tag{


display:inline-block;


font-size:12px;


font-weight:700;


letter-spacing:1.5px;


text-transform:uppercase;


color:var(--secondary);


margin-bottom:12px;


}
 
.section-dark{


background:var(--dark2);


}
 
.download-banner{


background:linear-gradient(135deg,var(--primary),var(--secondary));


padding:50px;


border-radius:30px;


margin-top:50px;


display:flex;


justify-content:space-between;


align-items:center;


gap:40px;


flex-wrap:wrap;


}
 
.download-banner p{


color:rgba(255,255,255,.9);


max-width:640px;


}
 
.download-banner .btn-outline{


border-color:rgba(255,255,255,.6);


white-space:nowrap;


}
 
.case-study{


background:linear-gradient(135deg,#0f1e37,#172c4f);


padding:60px;


border-radius:30px;


border:1px solid rgba(255,255,255,.06);


}
 
.case-study + .case-study{


margin-top:30px;


}
 
.results{


display:grid;


grid-template-columns:repeat(3,1fr);


gap:20px;


margin-top:40px;


}
 
.result{


text-align:center;


}
 
.result h3{


font-size:56px;


color:var(--secondary);


}
 
.framework{


display:grid;


grid-template-columns:repeat(4,1fr);


gap:20px;


}
 
.framework div{


background:var(--card);


padding:30px;


border-radius:20px;


text-align:center;


font-weight:700;


}
 
.framework div span{


display:block;


font-size:13px;


font-weight:400;


color:var(--muted);


margin-top:6px;


}
 
.layer-label{


font-size:14px;


font-weight:700;


letter-spacing:2px;


text-transform:uppercase;


color:var(--secondary);


margin:40px 0 15px;


}
 
.layer-label:first-of-type{


margin-top:0;


}
 
.gap-list{


list-style:none;


margin-top:10px;


}
 
.gap-list li{


position:relative;


color:var(--muted);


padding:10px 0 10px 42px;


border-bottom:1px solid rgba(255,255,255,.05);


font-size:17px;


}

.gap-list li:last-child{


border-bottom:none;


}

.gap-list li::before{


content:'\2713';


position:absolute;


left:0;


top:50%;


transform:translateY(-50%);


width:26px;


height:26px;


background:rgba(0,212,255,0.12);


border:1px solid rgba(0,212,255,0.35);


border-radius:50%;


color:var(--secondary);


font-size:13px;


font-weight:700;


line-height:24px;


text-align:center;


}
 
.card-future{


border:1px solid rgba(0,212,255,.4);


background:linear-gradient(160deg,#13233c,#0e2a4a);


}
 
.trust-strip{


display:flex;


gap:18px;


flex-wrap:wrap;


margin-top:40px;


}
 
.badge{


background:rgba(255,255,255,.06);


border:1px solid rgba(255,255,255,.12);


border-radius:50px;


padding:12px 26px;


font-weight:600;


font-size:15px;


color:var(--text);


}
 
.quote-card{


background:var(--card);


padding:40px;


border-radius:24px;


border:1px solid rgba(255,255,255,.05);


}
 
.quote-card p.quote{


font-size:19px;


color:var(--text);


font-style:italic;


margin-bottom:22px;


}
 
.quote-card .who{


font-weight:700;


color:white;


font-size:16px;


}
 
.quote-card .role{


font-size:14px;


color:var(--muted);


}
 
.faq-accordion {
   max-width: 100%;
   margin: auto;
}

.faq-item {
   background: var(--card);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 18px;
   margin-bottom: 16px;
}

.faq-question {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   padding: 24px 30px;
   background: none;
   border: none;
   color: #ffffff;
   font-family: 'Inter', sans-serif;
   font-size: 18px;
   font-weight: 600;
   text-align: left;
   cursor: pointer;
   transition: color 0.25s;
}

.faq-question:hover {
   color: var(--secondary);
}

.faq-icon {
   flex-shrink: 0;
   position: relative;
   width: 20px;
   height: 20px;
}

.faq-icon::before,
.faq-icon::after {
   content: '';
   position: absolute;
   background: var(--secondary);
   border-radius: 2px;
   transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before {
   width: 100%;
   height: 2px;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}

.faq-icon::after {
   width: 2px;
   height: 100%;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
}

.faq-item.faq-open .faq-icon::after {
   transform: translateX(-50%) rotate(90deg);
   opacity: 0;
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.35s ease;
}

.faq-answer p {
   padding: 0 30px 24px;
   font-size: 17px;
   line-height: 1.75;
}
 
.footer-cta{


background:linear-gradient(135deg,var(--primary),#021433);


text-align:center;


padding:110px 0;


}
 
.footer-cta p{


color:rgba(231,240,255,.85);


max-width:760px;


margin:0 auto;


}
 
.workshop-grid{


display:grid;


grid-template-columns:repeat(5,1fr);


gap:16px;


margin:50px 0;


text-align:left;


}
 
.workshop-grid div{


background:rgba(255,255,255,.07);


border:1px solid rgba(255,255,255,.12);


border-radius:18px;


padding:24px;


font-weight:600;


font-size:15px;


}
 
.workshop-grid div em{


display:block;


font-style:normal;


font-size:12px;


letter-spacing:1.5px;


color:var(--secondary);


text-transform:uppercase;


margin-bottom:8px;


}
 
@media(max-width:991px){
 
h1{


font-size:40px;


}
 
h2{


font-size:32px;


}
 
.metric-strip,


.grid-2,


.grid-3,


.grid-4,


.results,


.framework,


.workshop-grid{


grid-template-columns:1fr;


}
 
.case-study{


padding:35px;


}

} /* end @media(max-width:991px) */

/* ========================================================= */
/* TESTIMONIALS CAROUSEL */
/* ========================================================= */

.testimonial-carousel__wrapper {
   position: relative;
}

#testimonial-carousel {
   overflow: hidden;
   width: 100%;
}

#testimonial-track {
   display: flex;
   gap: 32px;
   transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   will-change: transform;
}

.testimonial {
   flex: 0 0 calc((100% - 64px) / 3);
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 16px;
   padding: 36px 32px 32px;
   display: flex;
   flex-direction: column;
   gap: 20px;
   transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
   border-color: var(--secondary);
   box-shadow: 0 8px 32px rgba(0, 212, 255, 0.18);
}

.testimonial__stars {
   color: var(--secondary);
   font-size: 16px;
   letter-spacing: 2px;
}

.testimonial__text {
   color: rgba(255, 255, 255, 0.8);
   font-size: 15px;
   line-height: 1.75;
   flex: 1;
   margin: 0;
   font-style: italic;
}

.testimonial__author {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-top: auto;
}

.testimonial__avatar {
   width: 46px;
   height: 46px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--secondary), #7c4dff);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 12px;
   color: #fff;
   flex-shrink: 0;
}

.testimonial__name {
   font-weight: 700;
   font-size: 15px;
   color: #fff;
}

.testimonial__role {
   font-size: 13px;
   color: rgba(255, 255, 255, 0.5);
   margin-top: 2px;
}

.testimonial-carousel__controls {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   margin-top: 40px;
}

.carousel-arrow {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   border: 2px solid rgba(0, 212, 255, 0.3);
   background: rgba(0, 212, 255, 0.06);
   color: var(--secondary);
   font-size: 18px;
   cursor: pointer;
   transition: background 0.3s, border-color 0.3s, transform 0.2s;
   display: flex;
   align-items: center;
   justify-content: center;
}

.carousel-arrow:hover:not(:disabled) {
   background: rgba(0, 212, 255, 0.15);
   border-color: var(--secondary);
   transform: scale(1.1);
}

.carousel-arrow:disabled {
   opacity: 0.3;
   cursor: default;
}

.testimonial-carousel__dots {
   display: flex;
   gap: 8px;
}

.testimonial-carousel__dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   border: none;
   background: rgba(255, 255, 255, 0.2);
   cursor: pointer;
   padding: 0;
   transition: background 0.3s, transform 0.3s;
}

.testimonial-carousel__dot.active {
   background: var(--secondary);
   transform: scale(1.4);
}

@media (max-width: 1023px) {
   #testimonial-track { gap: 24px; }
   .testimonial { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 639px) {
   #testimonial-track { gap: 20px; }
   .testimonial { flex: 0 0 100%; padding: 28px 22px; }
}

/* ========================================================= */
/* BACK TO TOP BUTTON */
/* ========================================================= */

#back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 48px;
   height: 48px;
   background: linear-gradient(135deg, #00d4ff, #7c4dff);
   color: #fff;
   font-size: 28px;
   line-height: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   text-decoration: none;
   box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
   z-index: 9999;
}

#back-to-top.visible {
   opacity: 1;
   visibility: visible;
}

#back-to-top:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

/* ========================================================= */
/* SCROLL ANIMATIONS */
/* ========================================================= */
.anim-hidden {
   opacity: 0;
   transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.anim-hidden    { transform: translateY(40px); }
.anim-fade-left.anim-hidden  { transform: translateX(-50px); }
.anim-fade-right.anim-hidden { transform: translateX(50px); }
.anim-fade-in.anim-hidden    { transform: translateY(16px); }
.anim-visible                { opacity: 1; }

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

.cs-footer {
  background: #ffffff;
  color: #dce6ff;
  padding-block: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cs-footer p {
  padding-top: 15px;
  font-size: 15px;
  color: #202224;
}

.cs-footer__grid {
  display: grid;
  gap: 3rem 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .cs-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cs-footer__grid {
    grid-template-columns: 3fr 1.5fr 1.5fr 2.5fr;
    gap: 4rem 2rem;
  }
}

.cs-footer h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 18px;
}

.cs-footer ul li {
  margin-bottom: 0.875rem;
  color: #000000;
  font-size: 15px;
}

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

.cs-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3f444a;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cs-footer-menu a svg {
  color: #2563eb;
  transition: transform 0.2s ease;
}

.cs-footer-menu a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.cs-footer a {
  color: #323438;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 15px;
}

.cs-footer a:hover {
  color: #2563eb;
}

.cs-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #010206;
}

.cs-footer__copy p {
  margin: 0;
  color: #ffffff;
  font-size: 0.875rem;
}

/* ========================================================= */
/* CONTACT POPUP MODAL */
/* ========================================================= */

.contact-popup-overlay {
   position: fixed;
   inset: 0;
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
   background: rgba(5, 8, 22, 0.85);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-popup-overlay.is-open {
   opacity: 1;
   visibility: visible;
}

.contact-popup-box {
   position: relative;
   width: 100%;
   max-width: 580px;
   max-height: 90vh;
   overflow-y: auto;
   background: #080d1c;
   border: 1px solid rgba(0, 217, 255, 0.2);
   border-radius: 24px;
   padding: 44px 40px 40px;
   box-shadow:
      0 0 0 1px rgba(0, 217, 255, 0.06),
      0 24px 80px rgba(0, 0, 0, 0.6),
      0 0 60px rgba(0, 217, 255, 0.08);
   transform: translateY(24px) scale(0.97);
   transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-popup-overlay.is-open .contact-popup-box {
   transform: translateY(0) scale(1);
}

/* Top accent bar */
.contact-popup-box::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 3px;
   background: linear-gradient(90deg, #00d9ff, #0055ff);
   border-radius: 24px 24px 0 0;
}

/* Scrollbar styling for the box */
.contact-popup-box::-webkit-scrollbar { width: 6px; }
.contact-popup-box::-webkit-scrollbar-track { background: transparent; }
.contact-popup-box::-webkit-scrollbar-thumb { background: rgba(0, 217, 255, 0.3); border-radius: 3px; }

/* Close button */
.contact-popup-close {
   position: absolute;
   top: 18px;
   right: 18px;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.12);
   background: rgba(255, 255, 255, 0.05);
   color: #aac5e0;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-popup-close:hover {
   background: rgba(0, 217, 255, 0.12);
   border-color: rgba(0, 217, 255, 0.45);
   color: #00d9ff;
   transform: rotate(90deg);
}

/* Header */
.contact-popup-header {
   margin-bottom: 28px;
}

.contact-popup-tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 7px 16px;
   border-radius: 40px;
   background: rgba(0, 217, 255, 0.08);
   border: 1px solid rgba(0, 217, 255, 0.2);
   color: #00d9ff;
   font-size: 13px;
   font-weight: 600;
   margin-bottom: 18px;
}

.contact-popup-header h3 {
   font-size: 26px;
   font-weight: 800;
   line-height: 1.25;
   margin-bottom: 10px;
   color: #ffffff;
}

.contact-popup-header p {
   font-size: 14px;
   color: #8fa3c0;
   line-height: 1.7;
   margin: 0;
}

/* Form area */
.contact-popup-form {
   min-height: 100px;
}

/* Responsive */
@media (max-width: 600px) {
   .contact-popup-box {
      padding: 36px 22px 28px;
   }
   .contact-popup-header h3 {
      font-size: 22px;
   }
}

/* ========================================================= */
/* CASE STUDIES */
/* ========================================================= */

.case-study {
  background: #0d1b2f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.08);
}

/* Header row: icon + tag + title */
.case-study__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.case-study__icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 77, 255, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 22px;
}

.case-study__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7c4dff;
  background: rgba(124, 77, 255, 0.1);
  border: 1px solid rgba(124, 77, 255, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.case-study h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Three-column Challenge / Solution / Outcomes grid */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.case-box {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.case-box--challenge { border-top-color: #ef4444; }
.case-box--solution  { border-top-color: #00d4ff; }
.case-box--outcomes  { border-top-color: #22c55e; }

.case-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-box--challenge h4 { color: #ef4444; }
.case-box--solution  h4 { color: #00d4ff; }
.case-box--outcomes  h4 { color: #22c55e; }

.case-box p {
  color: #8fa3bc;
  font-size: 14px;
  line-height: 1.65;
}

.case-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #c8d4e5;
  line-height: 1.6;
}

.case-box ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  margin-top: 2px;
}

/* Challenge icon (Red X) */
.case-box--challenge ul li::before {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 9L9 3M3 3l6 6' stroke='%23ef4444' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Solution icon (Cyan Check) */
.case-box--solution ul li::before {
  background-color: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2.5 2.5L9 4' stroke='%2300d4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* Outcomes icon (Green Check) */
.case-box--outcomes ul li::before {
  background-color: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2.5 2.5L9 4' stroke='%2322c55e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* ========================================================= */
/* THANK YOU POPUP */
/* ========================================================= */

.thankyou-popup-overlay {
   z-index: 10000;
}

.thankyou-popup-box {
   max-width: 460px;
   text-align: center;
   border-color: rgba(0, 217, 255, 0.28);
}

.thankyou-popup-box::before {
   background: linear-gradient(90deg, #00d9ff, #00ff99, #0055ff);
}

.thankyou-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding-top: 8px;
}

/* Animated SVG checkmark */
.thankyou-icon {
   width: 76px;
   height: 76px;
   margin: 0 auto 28px;
}

.thankyou-icon svg {
   width: 100%;
   height: 100%;
   overflow: visible;
}

.thankyou-circle {
   stroke-dasharray: 151;
   stroke-dashoffset: 151;
}

.thankyou-check {
   stroke-dasharray: 38;
   stroke-dashoffset: 38;
}

.thankyou-popup-overlay.is-open .thankyou-circle {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.thankyou-popup-overlay.is-open .thankyou-check {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.75s;
}

.thankyou-popup-box h3 {
   font-size: 26px;
   font-weight: 800;
   line-height: 1.3;
   color: #fff;
   margin-bottom: 12px;
}

.thankyou-popup-box > .thankyou-content > p,
.thankyou-popup-box p {
   font-size: 14px;
   color: #8fa3c0;
   line-height: 1.75;
   margin-bottom: 24px;
   max-width: 340px;
}

.thankyou-popup-box p strong {
   color: #00d9ff;
}

.thankyou-items {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 32px;
   width: 100%;
   max-width: 290px;
   text-align: left;
}

.thankyou-item {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13px;
   color: #a8bdd6;
}

.thankyou-item i {
   color: #00d9ff;
   font-size: 12px;
   flex-shrink: 0;
}

.thankyou-close-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   justify-content: center;
   min-width: 150px;
   font-family: inherit;
   cursor: pointer;
   font-size: 15px;
}

@media (max-width: 600px) {
   .thankyou-popup-box {
      padding: 36px 22px 28px;
   }
   .thankyou-popup-box h3 {
      font-size: 22px;
   }
}

/* ========================================================= */
/* READ MORE POPUP                                            */
/* ========================================================= */

.rm-popup-box::before {
   background: linear-gradient(90deg, #7b2ff7, #00d9ff, #0055ff);
}

.rm-success-state {
   display: none;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding-top: 8px;
}

.rm-circle {
   stroke-dasharray: 151;
   stroke-dashoffset: 151;
}

.rm-check {
   stroke-dasharray: 38;
   stroke-dashoffset: 38;
}

.rm-success-state.rm-shown .rm-circle {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.rm-success-state.rm-shown .rm-check {
   stroke-dashoffset: 0;
   transition: stroke-dashoffset 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.75s;
}

.rm-success-state h3 {
   font-size: 26px;
   font-weight: 800;
   line-height: 1.3;
   color: #fff;
   margin-bottom: 12px;
}

.rm-success-state p {
   font-size: 14px;
   color: #8fa3c0;
   line-height: 1.75;
   margin-bottom: 24px;
   max-width: 340px;
}

.rm-success-state p strong { color: #00d9ff; }

@media (max-width: 600px) {
   .rm-popup-box { padding: 36px 22px 28px; }
   .rm-success-state h3 { font-size: 22px; }
}

.lead-form input, .lead-form select {
    width: 100%;
    padding: 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 14px;
    background: #0c1730;
    color: white;
    font-size: 16px;
}

.btn-primary {
    padding: 18px 34px !important;
    border-radius: 60px !important;
    background: linear-gradient(90deg, #00d9ff, #0055ff) !important;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.25);
    transition: 0.35s;
    display: inline-block;
    border: none;
    cursor: pointer;
}