@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');


/* ---------- Clean page background ---------- 
@mixin titleText($titleSize) {
font-size: $titleSize;
color:var(--black);
text-transform: capitalize;
}

@mixin graphText($graphSize) {
font-size: $graphSize;
color:var(--light-color);
line-height: 1.5;
}
*/

/* ---------- Clean page background ---------- */
:root{
    --yellow: #f5bf23;
    --black: #111;
    --white: #fff;
    --light-color: #666;
    --light-bg:#eee;
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    --border:.1rem solid rgba(0,0,0,.3);
    --bg:#f7fbff;
    --surface:#0b1220;
    --text:#0b1220;
    --muted:#2f3d57;
    --accent:#06b6d4;
    --accent-2:#7c3aed;
    --radius:12px;
    --container:1100px;
    --titleSize: 42px;
}


html,body {
  height: 100%;
  margin: 0;
}

body {
  
  background:linear-gradient(130deg, #eed0e5, #d0e8ee, #97a3a1);
  color: var(--text, #0b1220);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-strong {
  background: linear-gradient(90deg, rgba(6,182,212,0.12), rgba(124,58,237,0.08));
  color: #041226;
  padding: 48px 24px;
  border-radius: 16px;
}


*{
    font-family: 'Poppins', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: all .2s linear;

}





html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;

    &::-webkit-scrollbar{
        width: 1rem;
    }

    &::-webkit-scrollbar-track{
        background: transparent;
    }

    &::-webkit-slider-thumb{
        background: var(--yellow);
    }

}

.header{
    position: sticky;
    top: 0; left: 0; right: 0;
    box-shadow: var(--box-shadow);
    padding: 1.5rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: #f3f5f9;
}

/* =========================
   DESKTOP NAVBAR (DEFAULT)
   ========================= */
.header .navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: static;
  clip-path: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* hide hamburger on desktop */
#menu-btn {
  display: none;
}



.logo img {
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(6,182,212,0.4)); /* teal glow */
}





/* Navigation Bar  (Header)*/

/* Neumorphism Navbar Links */
.navbar a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  margin: 0 0.8rem;

  font-size: 1.7rem;
  text-transform: capitalize;
  color: var(--black);

  background: #f3f5f9;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;

  /* Neumorphism shadow */
  box-shadow:
    4px 4px 7px rgba(0,0,0,0.10),
    -4px -4px 7px rgba(156, 144, 248, 0.8);
}

/* Hover → pressed-in effect */
.navbar a:hover {
  background: #eef1f6;

  box-shadow:
    inset 4px 4px 7px rgba(0,0,0,0.12),
    inset -4px -4px 7px rgba(156, 144, 248, 0.8);

  color: var(--accent); /* your brand color */
}


/* Icons Settings in Header */

/* Neumorphism Icons - Smaller Size */
.iconBox {
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  font-size: 1.6rem;
  background: #f3f5f9;
  color: var(--black);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 1rem;
  box-shadow:
    4px 4px 8px rgba(0,0,0,0.12),
    -4px -4px 8px rgba(156, 144, 248, 0.8);
}

.iconBox:hover {
  box-shadow:
    inset 4px 4px 8px rgba(0,0,0,0.13),
    inset -4px -4px 8px rgba(255,255,255,0.85);
  background: #eef1f6;
}


#menu-btn{
    display:none ;
}

/* =========================
   MOBILE NAVBAR (DROPDOWN)
   ========================= */
@media (max-width: 991px) {

  .header #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;

    background: #f3f5f9;
    border-radius: 0 0 16px 16px;

    box-shadow: 
      6px 6px 12px rgba(0,0,0,0.10),
      -6px -6px 12px rgba(156, 144, 248, 0.8);

    padding: 1.2rem 0;
    overflow: hidden;

    /* hidden state (until .active toggled) */
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.35s ease-in-out;
    display: block; /* dropdown, not flex row */
  }

  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    display: block;
    padding: 1.2rem 2rem;
    margin: 0.5rem 1rem;

    background: #f3f5f9;
    border-radius: 12px;
    text-transform: capitalize;
    color: var(--black);
    font-size: 1.6rem;

    box-shadow:
      4px 4px 8px rgba(0,0,0,0.1),
      -4px -4px 8px rgba(156, 144, 248, 0.8);

    transition: 0.25s ease;
  }

  .header .navbar a:hover {
    box-shadow:
      inset 4px 4px 8px rgba(0,0,0,0.12),
      inset -4px -4px 8px rgba(255,255,255,0.85);
    background: #eef1f6;
  }
}





/* Home page design */

section{
    padding: 5rem 10%;
}


/* visible, clickable button */
.btn{
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(90deg, #4b65ff, var(--accent));;       /* visible, high-contrast color — change to your brand */
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform .12s ease, box-shadow .12s ease;
}

/* hover for affordance */
.btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}


/* slider setting */

.home{
    padding:0;
    .slide{
        min-height: 60rem;
        display: flex;
        align-items: center;
        position: relative;
        background-size:cover !important ;
        background-position: center !important;

        &::before{
            content: '';
            position: absolute;
            top: 0; left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, var(--bg), transparent);
        }



        .content {
            width: 50rem;
            position: relative;

            h3 {
                font-size: 48px;
                font-weight: 700;
                background: linear-gradient(90deg, #4b65ff,#c1028e);
                background-clip: text;
                -webkit-background-clip: text;
                color: transparent;
            }

            p{
                font-size: 18px;
                color:var(--black);
                line-height: 1.5;
                padding: 1rem 0;
            }

            
          
            

        }

        
    }

    /* arrow setting  */
    .swiper-button-next {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background:linear-gradient(90deg, #4b65ff, var(--accent));; 
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.4);
      color: #f7fbff;
      box-shadow: 0 0 20px #0ef;
    }
    .swiper-button-next::after {
      font-size: 18px;
    }


    .swiper-button-prev {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background:linear-gradient(90deg, #4b65ff, var(--accent));; 
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.4);
      color: #f7fbff;
      box-shadow: 0 0 20px #0ef;
    }
    .swiper-button-prev::after {
      font-size: 18px;
    }

}









/* About Section */


.heading{
  margin-bottom: 3rem;
  font-size: 32px;
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--accent);
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;

}


.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
}

.about .video,
.about .content {
  flex: 1 1 41rem;
}

/* Neumorphic video card */
.about .video-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f5f9;
  box-shadow:
    8px 8px 16px rgba(0,0,0,0.14),
    -8px -8px 16px rgba(156, 144, 248, 0.8);
}

/* Aspect Ratio = 9:16 (portrait reel size) */
.about .video-card::before {
  content: "";
  display: block;
  padding-top: 100%; /* (16 / 9) * 100 = 177.77% */
}

/* Make video fill and crop correctly */
.about .video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills the area */
  object-position: center; /* crop from middle */
  display: block;
  transform: scale(1);
}


/* Text side */
.about-title {
  font-size: 4rem;
  margin: 0 0 1.2rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.about-text {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.5rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  font-size: 1.5rem;
}

.about-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.6rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.about-actions .small {
  font-size: 1.4rem;
}


/* Client count project count section */


/* ============================
   STAT SECTION (NEUMORPHISM)
   ============================ */

.stats {
  padding: 40px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-box {
  width: 200px;
  background: linear-gradient(130deg,#2C3E50 ,#000000 );
  padding: 2rem 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow:
    8px 8px 16px rgba(0,0,0,0.12),
    -8px -8px 16px rgba(75, 70, 121, 0.8);
  transition: 0.3s;
}

.stat-box:hover {
  box-shadow:
    inset 8px 8px 16px rgba(0,0,0,0.10),
    inset -8px -8px 16px rgba(82, 80, 93, 0.8);
}

.stat-box h3 {
  font-size: 3.2rem;
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.stat-box p {
  margin-top: 0.6rem;
  font-size: 1.4rem;
  color: var(--light-bg);
}




/* ========== SERVICES SECTION ========== */

.services {
  padding: 48px 0;

}

.services-kicker {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.services-heading {
  font-size: 32px;
  margin: 0 0 0.8rem;
  padding-left: 1rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* gradient text */
  border-left: 1rem solid var(--accent);
  display: inline-block;
}

.services-sub {
  margin: 0 0 2.4rem;
  color: var(--muted);
  font-size: 1.5rem;
  max-width: 640px;
}

/* grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* service card */
.service-card {
  background: #f3f5f9;
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.12),
    -10px -10px 20px rgba(156, 144, 248, 0.8);
  transition: 0.3s ease;
}

.service-card:hover {
  box-shadow:
    inset 8px 8px 16px rgba(0, 0, 0, 0.10),
    inset -8px -8px 16px rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
}

/* image / icon area */
.service-media {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at top left,
              rgba(6,182,212,0.20),
              rgba(124,58,237,0.08),
              #f3f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* text */
.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-title {
  font-size: 1.8rem;
  margin: 0;
  
}

.VOC-title {
  font-size: 3rem;
  margin: 0;
  border-left: 1rem solid var(--accent);
  padding-left: 1rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* gradient text */
  display: inline-block;

}

.service-tagline {
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0;
}

.service-desc {
  font-size: 1.4rem;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

/* learn more link */
.service-more {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.service-more::after {
  content: "→";
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.service-more:hover::after {
  transform: translateX(3px);
}

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

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services {
    padding: 36px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 450px) {
  .service-card {
    padding: 1.4rem;
    border-radius: 14px;
  }
  .service-media {
    height: 120px;
  }
  .service-title {
    font-size: 1.6rem;
  }
}





/* =======================
   SERVICE PAGE BASE
   ======================= */
.service-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7f3;
}

.service-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.service-logo {
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  color: #0b1220;
}

/* HERO */
.service-hero {
  padding: 48px 10% 36px;
  background: #f7f8ff;
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.service-eyebrow {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7d84a5;
  margin-bottom: 0.6rem;
}

.service-title {
  font-size: 3.2rem;
  line-height: 1.1;
 
  margin: 0 0 1rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-sub {
  font-size: 1.5rem;
  color: #5a627f;
  margin: 0 0 1.4rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.service-tag {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 1.2rem;
  background: rgba(75, 101, 255, 0.08);
  color: #4b65ff;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.service-note {
  font-size: 1.3rem;
  color: #7d84a5;
}

.service-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.service-visual-card {
  perspective: 1200px;          /* allows 3D transform */
  display: inline-block;
}

.service-visual-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  transform: translateZ(30px);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.25s ease-out;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}






/* GENERIC SECTIONS */
.service-section {
  padding: 40px 10%;
}

.service-section.service-alt {
  background: #f8f9ff;
}

.service-section-title {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-left: 0.6rem solid var(--accent);
  padding-left: 0.8rem;
}

.service-section-subtitle {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* gradient text */
  border-left: 0.6rem solid var(--accent);
  display: inline-block;
  padding-left: 0.8rem;
}


.service-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
}

.service-two-col p {
  font-size: 1.5rem;
  color: #5a627f;
}

.service-list {
  margin: 0;
  padding-left: 1.6rem;
  font-size: 1.5rem;
  color: #5a627f;
}



/* =======================
   RELATED SERVICES
   ======================= */

.related-services {
  padding: 48px 10%;
  margin-top: 40px;
}

.related-title {
  font-size: 32px;
  margin-bottom: 2.4rem;
  padding-left: 1rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-left: 1rem solid var(--accent);
  display: inline-block;
}

/* grid layout */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* neumorphism card */
.related-card {
  background: #f3f5f9;
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;

  box-shadow:
    10px 10px 20px rgba(0,0,0,0.12),
    -10px -10px 20px rgba(156, 144, 248, 0.8);

  transition: 0.3s ease;
}

/* hover */
.related-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 8px 8px 16px rgba(0,0,0,0.12),
    inset -8px -8px 16px rgba(255,255,255,0.95);
}

/* image block */
.related-media {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at top left,
              rgba(6,182,212,0.20),
              rgba(124,58,237,0.08),
              #f3f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.related-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

/* text */
.related-name {
  font-size: 1.8rem;
  margin: 0;
}

.related-tagline {
  font-size: 1.4rem;
  color: var(--muted);
  margin: 0;
}

/* CTA */
.related-more {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 500;
}

.related-more:hover {
  text-decoration: underline;
}

/* responsive */
@media (max-width: 1200px) {
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}






/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

/* Cards */
.feature-card {
  position: relative;
  background: #f3f5f9;
  border-radius: 18px;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.12),
    -10px -10px 20px rgba(156, 144, 248, 0.8);
  border: 1px solid rgba(75, 101, 255, 0.10);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, #4b65ff, #9f00ff);
}

/* small soft gradient bubble in corner */
.feature-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(124,58,237,0.18),
    rgba(6,182,212,0) 60%);
  pointer-events: none;
}

.feature-card h3,
.benefit-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
}

.feature-card p,
.benefit-card p {
  font-size: 1.35rem;
  color: #5a627f;
  margin: 0;
  line-height: 1.6;
}

.feature-tagline {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #03175b !important;
}

/* BENEFIT CARDS – "What You Gain with VOCA" */
.benefit-card {
  background: #f3f5f9;
  border-radius: 18px;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.10),
    -8px -8px 18px rgba(156, 144, 248, 0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* subtle glow edge on left to feel like "gain" */
.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4b65ff, #9f00ff);
}

/* top row: icon + metric chip */
.benefit-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 0.4rem; /* offset for left bar */
}

/* circular icon */
.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(75, 101, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: #4b65ff;
}

/* metric chip (Strategy, Live, Brand, etc.) */
.benefit-metric {
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(6, 182, 212, 0.08);
  color: #047b96;
}

/* title + text */
.benefit-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.7rem;
  margin-left: 0.4rem; /* align with top row */
}

.benefit-card p {
  margin: 0;
  font-size: 1.4rem;
  color: #5a627f;
  line-height: 1.6;
  margin-left: 0.4rem;
}

/* small hover feedback */
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow:
    4px 4px 16px rgba(0, 0, 0, 0.10),
    -4px -4px 16px rgba(255, 255, 255, 0.98);
}





/* process */
/* VOCA Process section intro */
.process-intro {
  font-size: 1.4rem;
  color: #5a627f;
  margin: 0.4rem 0 1.8rem;
}

/* wrapper for timeline + steps */
.process-wrapper {
  position: relative;
  margin-top: 1.2rem;
}

/* base line behind steps */
.process-line {
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.3);
  overflow: hidden;
}

/* animated gradient fill */
.process-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #4b65ff, #9f00ff);
  transform-origin: left center;
  transition: width 0.9s ease-out;
}

/* when active (via JS) */
.process-wrapper.process-active .process-line-fill {
  width: 100%;
}

/* steps layout */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  position: relative;
}

/* each step card */
.process-step {
  background: #f3f5f9;
  border-radius: 18px;
  padding: 2.2rem 1.6rem 1.6rem;
  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.10),
    -8px -8px 18px rgba(156, 144, 248, 0.8);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover glow for active step */
.process-step:hover {
  transform: translateY(-4px);
  box-shadow:
    4px 4px 18px rgba(79, 70, 229, 0.35),
    -4px -4px 18px rgba(255, 255, 255, 0.98);
}

/* soft background glow blob */
.process-step::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(79, 70, 229, 0.18),
    rgba(79, 70, 229, 0) 65%);
  pointer-events: none;
}

/* top row: circle + icon */
.step-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

/* numbered circle */
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(75, 101, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.10),
    -2px -2px 6px rgba(156, 144, 248, 0.8);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.step-index {
  font-size: 1.4rem;
  font-weight: 600;
  color: #4b65ff;
}

/* icon next to circle */
.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-emoji {
  font-size: 3rem;
}




/* hover - emphasize circle */
.process-step:hover .step-circle {
  transform: scale(1.05);
  box-shadow:
    0 0 18px rgba(79, 70, 229, 0.45),
    0 0 0 1px rgba(79, 70, 229, 0.4);
}

/* text */
.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.process-step p {
  margin: 0;
  font-size: 1.35rem;
  color: #5a627f;
  line-height: 1.6;
}

/* responsive tweaks */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 700px) {
  .process-wrapper {
    margin-top: 1.4rem;
  }

  /* hide horizontal line on mobile; we keep steps vertical */
  .process-line {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .process-step {
    padding: 1.8rem 1.4rem 1.4rem;
  }
}


/* audience grid reuses benefits style */

/* CTA section */
.service-cta {
  padding: 32px 10;
  background: linear-gradient(90deg, #4b65ff, #9f00ff);
  color: #ffffff;
}


.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.service-cta-inner h2 {
  margin: 0 0 0.4rem;
  font-size: 2.2rem;
}

.service-cta-inner p {
  margin: 0;
  font-size: 1.4rem;
}

/* responsive */
@media (max-width: 1024px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-hero-visual {
    justify-content: flex-start;
  }

  .service-two-col {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .service-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .service-hero {
    padding: 32px 0 24px;
  }

  .service-title {
    font-size: 2.4rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-cta-inner h2 {
    font-size: 2rem;
  }
}



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

.case-studies {
  padding: 48px 0;
}

.section-heading {
  font-size: 32px;
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--accent);
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.case-sub {
  margin: 0.5rem 0 2.4rem;
  color: var(--muted);
  font-size: 1.5rem;
}

/* swiper container */
.caseSwiper {
  padding: 1rem 0 3.5rem;
}

/* slide */
.caseSwiper .swiper-slide {
  height: auto;                    /* allow card height to adapt */
}

/* card */
.case-card {
  background: #f3f5f9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    10px 10px 20px rgba(0,0,0,0.12),
    -10px -10px 20px rgba(156, 144, 248, 0.8);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card:hover {
  box-shadow:
    inset 10px 10px 20px rgba(0,0,0,0.10),
    inset -10px -10px 20px rgba(255,255,255,0.95);
  transform: translateY(-3px);
}

/* image area */
.case-media {
  width: 100%;
  height: 150px;
  background: radial-gradient(circle at top left,
              rgba(6,182,212,0.15),
              rgba(124,58,237,0.1),
              #f3f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

/* text */
.case-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.case-body h3 {
  font-size: 1.7rem;
  margin: 0;
}

.case-metric {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
}

.case-desc {
  font-size: 1.4rem;
  color: var(--muted);
}

.case-more {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.case-more::after {
  content: "→";
  transition: transform 0.2s ease;
}

.case-more:hover::after {
  transform: translateX(3px);
}

/* customize swiper arrows for case section */
.case-prev,
.case-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f5f9;
  box-shadow:
    4px 4px 10px rgba(0,0,0,0.12),
    -4px -4px 10px rgba(23, 21, 35, 0.8);
  border: 1px solid rgba(148,163,184,0.35);
}

.case-prev::after,
.case-next::after {
  font-size: 16px;
  color: var(--accent);
}

/* pagination dots */
.case-pagination .swiper-pagination-bullet {
  background: rgba(148,163,184,0.8);
  opacity: 1;
}

.case-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #4b65ff, #9f00ff);
}

/* responsive slides per view handled in JS, minor spacing tweaks here */
@media (max-width: 768px) {
  .case-studies {
    padding: 36px 0;
  }
}



/* =======================
   CONTACT SECTION
   ======================= */

.contact {
  padding: 60px 0;
}

.contact-text {
  background: linear-gradient(130deg,#2C3E50 ,#000000 );
  padding: 2rem;
  border-radius: 18px;

  box-shadow:
    10px 10px 20px rgba(0,0,0,0.10),
    -10px -10px 20px rgba(50, 62, 101, 0.8);
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 1rem;
  background-image: linear-gradient(90deg, #d0d4ee, #d8f2e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-sub {
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  color: #fcf5f5;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.45rem;
  color: #fcf5f5;
}

.contact-points li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-points i {
  color: var(--accent);
  font-size: 1.4rem;
}

/* neumorphic form */
.contact-form {
  background: linear-gradient(130deg,#2C3E50 ,#000000 );
  padding: 2rem;
  border-radius: 18px;
  box-shadow:
    12px 12px 24px rgba(0,0,0,0.12),
    -12px -12px 24px rgba(156, 144, 248, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color:#fcf5f5 ;
}

/* inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.4rem;
  font-size: 1.5rem;
  border-radius: 12px;
  background: #f3f5f9;
  box-shadow:
    inset 6px 6px 14px rgba(0,0,0,0.1),
    inset -6px -6px 14px rgba(195, 237, 255, 0.9);
  resize: none;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow:
    inset 4px 4px 10px rgba(0,0,0,0.12),
    inset -4px -4px 10px rgba(149, 204, 229, 0.85);
}


/* Overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Active state */
.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Popup card */
.success-popup {
  width: 90%;
  max-width: 420px;
  background: #f3f5f9;
  border-radius: 22px;
  padding: 3rem 2.5rem;
  text-align: center;
  transform: scale(0.9);
  transition: 0.3s ease;

  box-shadow:
    12px 12px 24px rgba(0,0,0,0.15),
    -12px -12px 24px rgba(255,255,255,0.9);
}

/* Animate in */
.success-overlay.active .success-popup {
  transform: scale(1);
}

/* Icon */
.success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b65ff, #9f00ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.6rem;
  box-shadow: 0 0 25px rgba(79, 70, 229, 0.6);
}

.success-popup h2 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}

.success-popup p {
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Close button tweak */
.success-close {
  padding: 10px 26px;
}



/* responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}





/* ======================
   BLOGS SECTION
   ====================== */

.blog-section {
  padding: 48px 0;
}

.blog-sub {
  margin: 0 0 2.4rem;
  color: var(--muted);
  font-size: 1.5rem;
}

/* grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* card */
.blog-card {
  background: linear-gradient(130deg,#2C3E50 ,#000000 );
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    10px 10px 20px rgba(0,0,0,0.10),
    -10px -10px 20px rgba(156, 144, 248, 0.8);
  transition: 0.3s ease;
}

.blog-card:hover {
  box-shadow:
    inset 8px 8px 16px rgba(0,0,0,0.1),
    inset -8px -8px 16px rgba(255,255,255,0.9);
  transform: translateY(-3px);
}

/* media */
.blog-media {
  width: 100%;
  height: 120px;
  overflow: hidden; 
  background: radial-gradient(circle at top left,
              rgba(6,182,212,0.15),
              rgba(124,58,237,0.1),
              #f3f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* text */
.blog-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-body h3 {
  font-size: 1.7rem;
  margin: 0;
  color: #d0d4ee;
}

.blog-desc {
  font-size: 1.4rem;
  color: #d0d4ee;
}

.blog-more {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.4rem;
}

.blog-more:hover {
  text-decoration: underline;
}

.blog-view-all {
  margin-top: 2.5rem;
  text-align: center;
}

/* responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}



/* ==========================
   BLOG PAGE
   ========================== */

.blog-page {
  padding-bottom: 60px;
}

/* hero */

.blog-hero {
  padding: 40px 20px 38px;
  background: linear-gradient(135deg, #e8edff, #f3f5ff);
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 1rem;
  align-items: center;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.3rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.blog-back-link i {
  font-size: 1.2rem;
}

.blog-back-link:hover {
  text-decoration: underline;
}

.blog-category-chip {
  display: inline-flex;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 1.2rem;
  background: rgba(76,81,191,0.12);
  color: #4b65ff;
  margin-bottom: 0.8rem;
}

.blog-hero-text {
  padding-left: 10rem !important;
  
  padding: 32px 0 36px;;
}


.blog-title {
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  background-image: linear-gradient(90deg, #4b65ff, #9f00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 1.3rem;
  color: var(--muted);
}

.blog-meta i {
  margin-right: 0.4rem;
}

/* hero image */

.blog-hero-media {
  display: grid;
  justify-content: flex-end;
}

.blog-cover {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f5f9;
  box-shadow:
    10px 10px 22px rgba(0,0,0,0.12),
    -10px -10px 22px rgba(255,255,255,0.9);
}

.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* image fits top part */
  object-position: left;
  border-radius: 14px;
}

/* main content */

.blog-content {
  padding: 32px 10 36px;
}

.blog-content-inner {
  max-width: 800px;
}

.blog-intro {
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.blog-content h2 {
  font-size: 2.1rem;
  margin: 2rem 0 0.8rem;
}

.blog-content p,
.blog-content li {
  font-size: 1.45rem;
  color: var(--text);
  line-height: 1.6;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.6rem;
  margin: 0.6rem 0 1rem;
}

/* callout text */

.blog-callout {
  padding: 1rem 1.4rem;
  border-radius: 12px;
  background: #f3f5f9;
  border: 1px dashed rgba(148,163,184,0.7);
  font-style: italic;
  margin: 1rem 0 1.4rem;
}

/* image blocks */

.blog-image-block {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f5f9;
  box-shadow:
    8px 8px 16px rgba(0,0,0,0.12),
    -8px -8px 16px rgba(255,255,255,0.92);
}

.blog-image-block img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.blog-image-block figcaption {
  font-size: 1.3rem;
  color: var(--muted);
  padding: 0.8rem 1.2rem 1rem;
}

/* two small images side-by-side */

.blog-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.4rem;
  margin: 1.8rem 0;
}

.blog-inline-grid figure {
  border-radius: 14px;
  overflow: hidden;
  background: #f3f5f9;
  box-shadow:
    6px 6px 14px rgba(0,0,0,0.1),
    -6px -6px 14px rgba(255,255,255,0.9);
}

.blog-inline-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.blog-inline-grid figcaption {
  font-size: 1.25rem;
  color: var(--muted);
  padding: 0.6rem 0.9rem 0.9rem;
}

/* quote */

.blog-quote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: #f3f5f9;
  font-size: 1.5rem;
  color: var(--muted);
}

/* CTA box */

.blog-cta-box {
  margin: 2.4rem 0 0.5rem;
  padding: 1.8rem 1.8rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #4b65ff, #9f00ff);
  color: #ffffff;
  box-shadow:
    8px 8px 18px rgba(0,0,0,0.18),
    -8px -8px 18px rgba(255,255,255,0.85);
}

.blog-cta-box h3 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
}

.blog-cta-box p {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: #e5e7ff;
}

/* related */

.blog-related {
  padding: 20px 10 40px;
}

/* responsive */

@media (max-width: 1024px) {
  .blog-hero-inner {
    grid-template-columns: 1fr;
  }
  .blog-hero-media {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2.4rem;
  }
  .blog-inline-grid {
    grid-template-columns: 1fr;
  }
}





.site-footer {
  background: linear-gradient(130deg,#2C3E50 ,#000000);
  padding: 5rem 0 0;
  margin-top: 6rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-col h4 ,
.footer-col p
 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: whitesmoke;
}

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

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  font-size: 1.5rem;
  color: wheat;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}


.footer-desc {
  margin-top: 1.2rem;
  margin-left: 2rem;
  font-size: 1.4rem;
  color: wheat;
  max-width: 320px;
}



/* Bottom bar */
.footer-bottom {
  margin-top: 4rem;
  padding: 1.6rem 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom p {
  font-size: 1.3rem;
  color: rgb(191, 206, 203);
}


.footer-col img{
  width: 30%;
  padding-left: 2rem;
}


/* Social icons */

.footer-socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.footer-socials a,
.footer-socials img {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-socials img {
  width: 26px;
  height: 26px;
  display: block;
}


.footer-socials img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}



/* Responsive */
@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}




.blogs-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.blog-row-text h2 {
  font-size: 2.6rem;
  margin: 0.6rem 0;
}

.blog-row-text p {
  color: var(--muted);
  font-size: 1.5rem;
  max-width: 520px;
}

.blog-row-media img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-row {
    grid-template-columns: 1fr;
  }
}



/* Media Queries */




@media (max-width:1200px){
    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding: 3rem 5%;
    }

}



@media (max-width:991px){
    html{
        font-size: 55%;
    }
     section{
        padding: 3rem 2rem;
    }


  }

@media (max-width:768px){
  .home .slide{
    justify-content: center;

    .content{
      text-align: center;

      h3{
        font-size: 3rem;
      }
    }
  }
  
}

@media (max-width:450px){
  html{
    font-size: 50%;
  }
}
