@media (max-width: 768px) {
    .hero-btn{
        margin: auto;
        margin-top: 14px;
    }
  }

.common-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}

.common-bg::before,
.common-bg::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px; /* Adjust fade strength */
  pointer-events: none;
  z-index: 1;
}

/* Top Fade */
.common-bg::before {
  top: 0;
  background: linear-gradient(to bottom, #000000, transparent);
}

/* Bottom Fade */
.common-bg::after {
  bottom: 0;
  background: linear-gradient(to top, #000000, transparent);
}

  .floating-box {
    position: absolute;
    width: 150px;
    height: 120px;
    background: linear-gradient(145deg, #e74d3cab, #c0392bab); /* red to orange gradient */
    border-radius: 12px;
    box-shadow:
      0 8px 15px rgba(231, 76, 60, 0.3),  /* deeper shadow */
      inset -2px -2px 6px rgba(255, 255, 255, 0.2), /* light top highlight */
      inset 2px 2px 8px rgba(0, 0, 0, 0.1); /* slight inner depth */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatY 5s ease-in-out infinite;
    z-index: 10;
    transform-style: preserve-3d;
  }
  
  
  .box-content {
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .box-content i {
    font-size: 24px;
    margin-bottom: 4px;
  }
  
  @keyframes floatY {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-40px);
    }
  }
  

 
  /* lead section */

  .lead-section {
    padding: 60px 40px;
  }
  
  .lead-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .lead-image-area {
    position: relative;
    height: auto;
    flex-shrink: 0;
  }
  
  .lead-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffb347 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
    top: 0;
    left: 0;
  }
  
  .lead-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  
  .lead-content {
    max-width: 600px;
  }
  
  .lead-content h1 {
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .text-highlight {
    color: #ff7a45;
  }
  
  .text-bold {
    font-weight: bold;
  }
  
  .lead-content p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .lead-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid #ffb347;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .lead-button:hover {
    background: #ffb347;
    color: #0e001d;
  }
  
  .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .lead-button:hover .arrow {
    transform: translateX(5px);
  }
  
  @media (max-width: 768px) {
    .lead-wrapper {
      flex-direction: column-reverse;
      text-align: center;
    }
  }

  .blade-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 2px;
  height: 70%;
  background: linear-gradient(to bottom, #ff0000, #b30000);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
  z-index: 10;
}

/* Card Container */


/* Testimonial card*/


/* .card-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 80%;
}


.card {
  position: relative;
  background-color: #1e1e1e;
  color: white;
  border: 2px solid transparent;
  padding: 2rem 1.5rem 1.5rem;
  
  min-width: 300px;
  border-radius: 1rem;
  transition: 0.4s;
  box-shadow: 0 0 0 2px #1e1e1e;
  
}

@media (max-width: 768px) {
  .card {
    width: 45%;
  }
}


.card:hover .card-icons {
  transform: scale(1.1);
  transition: transform 0.8s ease;
}

.card:hover {
  border-image: linear-gradient(to right, #ff4e50, #f97123);
  border-image-slice: 1;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  border-radius: 1rem;

}

.icon-box {
  position: absolute;
  top: -20px;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(6px);
}

.icon-box img {
  width: 24px;
  height: 24px;
}

.main-text {
  margin-top: 2rem;
}

.secondary-text {
  color: #cccccc;
  margin: 0.5rem 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #ff4e50, #f9d423);
  color: #121212;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  filter: brightness(1.1);
}
 */

 /* Updated card container */

/* From Uiverse.io by Ashon-G */ 
.uiverse {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(255, 163, 26, 0.7);
  --c-color-2: #ff1a1a;
  --c-color-3: #b34b4b;
  --c-color-4: rgba(255, 232, 26, 0.7);
  --c-shadow: rgba(255, 223, 87, 0.5);
  --c-shadow-inset-top: rgba(255, 52, 52, 0.9);
  --c-shadow-inset-bottom: rgba(255, 250, 215, 0.8);
  --c-radial-inner: #ff1515;
  --c-radial-outer: #fff172;
  --c-color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  border: none;
  display: table;
  border-radius: 24px;
  width: 200px;
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--c-color);
  background: radial-gradient(
    circle,
    var(--c-radial-inner),
    var(--c-radial-outer) 80%
  );
  box-shadow: 0 0 14px var(--c-shadow);
}

.uiverse:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 3px 12px var(--c-shadow-inset-top),
    inset 0 -3px 4px var(--c-shadow-inset-bottom);
}

.uiverse .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  border-radius: 24px;
  min-width: 132px;
  padding: 12px 0;
}

.uiverse .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.uiverse:hover {
  --duration: 1400ms;
}

.uiverse .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse .wrapper .circle.circle-1,
.uiverse .wrapper .circle.circle-9,
.uiverse .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse .wrapper .circle.circle-3,
.uiverse .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse .wrapper .circle.circle-5,
.uiverse .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.uiverse .wrapper .circle.circle-2,
.uiverse .wrapper .circle.circle-7,
.uiverse .wrapper .circle.circle-8,
.uiverse .wrapper .circle.circle-11,
.uiverse .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.uiverse .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }

  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}

@keyframes circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }

  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}

@keyframes circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }

  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}

@keyframes circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }

  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}

@keyframes circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }

  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}

@keyframes circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }

  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}

@keyframes circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }

  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}

@keyframes circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }

  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}

@keyframes circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }

  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}

@keyframes circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }

  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}

@keyframes circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }

  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}

@keyframes circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }

  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
}

/* Testimonials */
/* Blobs */
@keyframes blob1 {
  0% { transform: translate(0px, 0px); }
  33% { transform: translate(30px, -50px); }
  66% { transform: translate(-20px, 20px); }
  100% { transform: translate(0px, 0px); }
}

@keyframes blob2 {
  0% { transform: translate(0px, 0px); }
  33% { transform: translate(-40px, 30px); }
  66% { transform: translate(20px, -30px); }
  100% { transform: translate(0px, 0px); }
}

@keyframes blob3 {
  0% { transform: translate(0px, 0px); }
  33% { transform: translate(50px, 20px); }
  66% { transform: translate(-30px, -40px); }
  100% { transform: translate(0px, 0px); }
}

.blob1 {
  animation: blob1 2s ease-in-out infinite;
}

.blob2 {
  animation: blob2 3s ease-in-out infinite;
}

.blob3 {
  animation: blob3 4s ease-in-out infinite;
}
/* css for index */
/* =========================
   TEAM GRID
========================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop */
  gap: 10px;
  width: 100%;
  border-radius: 24px;
}

/* =========================
   ROLE CARD
========================= */
.role-card {
  background-color: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Hover Effect */
.role-card:hover {
  transform: translateY(-6px);
  border-color: #EC1C23;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
}

/* Icon */
.role-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

/* Title */
.role-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    padding: 28px 20px;
  }

  .role-title {
    font-size: 15px;
  }
}
/* Default (Desktop & Tablet) */
.vertical-info {
  display: none;
}

.horizontal-info {
  display: block;
}

/* Mobile */
@media (max-width: 640px) {
  .vertical-info {
    display: block;
    width: 70%;
  }

  .horizontal-info {
    display: none;
  }
}
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 370px;
  overflow: hidden;
  border-top-left-radius: 200px; /* Big curved corner */
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25); /* subtle shadow */
  margin: auto; /* center horizontally */
}

/* Image Styling */
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .image-wrapper {
    max-width: 70%;
    
  }
}
/* services in index */

  :root {
    --bg: #080B10;
    --surface: #111111;
    --border: #2A2A2A;
    --accent: #F31B22;
    --accent-light: rgba(240,80,58,0.12);
    --accent-border: rgba(240,80,58,0.35);
    --text: #F0F4FF;
    --muted: #7A8499;
    --white: #ffffff;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #1D2430;
    border: 1px solid #1D2430;
    font-family: 'Epilogue', 'sans-serif';
  }
  
  .pillar {
    background: var(--surface);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .pillar:hover { background: #121820; }

  .pillar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #F0503A;
    transition: width 0.4s ease;
  }
  .pillar:hover::after { width: 100%; }

  .pillar-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #F0503A;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }

  .pillar h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .pillar-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    font-weight: 300;
  }

  .pillar-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }

  .pillar-points li {
    font-size: 13px;
    color: var(--muted);
    padding-left: 16px;
    position: relative;
  }
  .pillar-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #F0503A;
    font-size: 11px;
  }

  .pillar-outcome {
    font-size: 13px;
    font-weight: 700;
    color: #F0503A;
    border-top: 1px solid #1D2430;
    padding-top: 20px;
    font-family: 'Epilogue', sans-serif;
    letter-spacing: 0.02em;
  }
@media (max-width: 768px){
    .pillars-grid {
    grid-template-columns: repeat(1, 1fr)
  }
}
  /* MEDIA */
  #media {
    background: var(--surface);
    display: grid;
  
    gap: 80px;
    align-items: center;
  }

  .media-visual {
    background-color: #111111;
    border: 1px solid #2A2A2A;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
  }

  .media-visual::before {
    content: '◎';
    font-size: 120px;
    color: rgba(240,80,58,0.06);
    position: absolute;
    right: -20px; top: -20px;
    font-family: 'Epilogue', sans-serif;
  }

  .media-label-big {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #F0503A;
    opacity: 0.15;
    margin-bottom: -20px;
  }

  .media-word {
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .media-tag {
    margin-top: 28px;
    display: inline-block;
    background: rgba(240,80,58,0.12);
    border: 1px solid rgba(240,80,58,0.35);
    color: #F0503A;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .media-secondary {
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
    font-style: italic;
  }

