/* curser */
/* Hide default cursor */

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease;
  z-index: 9999;
}

/* Bigger dot on links */
.cursor-dot.link-hover {
  background-color: rgb(255, 255, 255, 0.4);
  width: 80px;
  height: 80px;
}

/* Hero Section */
.hero {
  /* background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.8)), url('https://picsum.photos/seed/insurance/1600/600.jpg') center/cover; */
  color: white;
  padding: 125px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease;
}

.hero-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}


.btn {
  display: inline-block;
  padding: 7px 29px;
  background-color: var(--secondary-color);
  color: #000;
  text-decoration: none;
  border-radius: 25px 25px 25px 25px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-image: linear-gradient(160deg, #941c97 0%, #337b8b 80%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  margin-left: 15px;
}

.btn-outline:hover {
  background-color: white;
  color: white;
}

/* branding section css */
.trusted-section {
  /* background: #000; */
  padding: 80px 0;
  overflow: hidden;
}

.trusted-section h2 {
  text-align: center;
  color: #fff;
  font-size: 40px;
  margin-bottom: 60px;
}

.trusted-section h2 span {
  color: #8b5cf6;
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  width: 100%;
  margin: 25px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation-play-state: running;
}

/* LOGOS */
.marquee-track img {
  background: #fff;
  padding: 20px 30px;
  border-radius: 14px;
  height: 70px;
  object-fit: contain;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); */
}

/* Hover Pause */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Animations */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Responsive */

@media (max-width: 400px) {
 .btn {
    padding: 7px 22px;
  }
}

@media (max-width: 768px) {
  .trusted-section h2 {
    font-size: 28px;
  }

  .marquee-track img {
    height: 55px;
    padding: 14px 20px;
  }
}


/* about us section  */

.btn-1 {
  display: inline-block;
  padding: 7px 29px;
  background-image: linear-gradient(160deg, #941c97 0%, #337b8b 80%);
  color: #000;
  text-decoration: none;
  border-radius: 25px 25px 25px 25px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-1:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* SECTION */
.about-section {
    border-top: 1px solid rgb(143, 135, 135);
    background-image: linear-gradient(160deg, #941c97 0%, #337b8b 80%);

  padding: 80px 0;
  /* background: #000000ff; */
}

/* CONTAINER */
.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #ede9fe;
  color: #5b21b6;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1b1b1b;
}

.about-content p {
  color: #ffffff;
  margin-bottom: 25px;
}

.about-content h4 {
  margin-bottom: 15px;
  color: #1b1b1b;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-content ul li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #fff;
}

.about-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000000;
}

/* BUTTON */

/* RIGHT IMAGE */
.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content ul li {
    text-align: left;
    max-width: 400px;
    margin: auto auto 10px;
  }
}

/* drive growth section */

.services-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    color: #fff;
}

/* Background Video */
.services-section .bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay for readability */
.services-section .video-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(15, 23, 42, 0.85); */
    z-index: -1;
}

/* Content above video */
.services-section .container {
    position: relative;
    z-index: 2;
}

/* Headings */
.services-section h2 {
  
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.badge {
    display: block;
    text-align: center;
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Button */
.service-card button {
    margin-top: 18px;
    padding: 10px 22px;
    border-radius: 20px;
    border: none;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
    font-weight: 600;
}

/* View more */
.view-more {
    text-align: center;
    margin-top: 50px;
}

.view-more button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 25px;
}

/* Hidden cards */
.hidden {
    display: none;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section h2 {
        font-size: 28px;
    }

    /* Disable video for performance */
    .services-section .bg-video {
        display: none;
    }

    .services-section {
        background: #0f172a;
    }
}


/* our projects */
.portfolio-section {
    background-image: linear-gradient(160deg, #941c97 0%, #337b8b 80%);
    padding: 90px 0;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* MAIN LAYOUT */
.portfolio-layout {
    display: grid;
    grid-template-columns: 3fr 3fr;
    gap: 30px;
}

/* LEFT COLUMN */
.left-column {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.hover-card {
    position: relative;
    height: 230px;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
}

/* BIG CARD */
.hover-card.big {
    height: 100%;
}

/* IMAGE */
.hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* DARK OVERLAY */
.hover-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: 0.4s;
}

/* HOVER INTERACTION */
.portfolio-layout:hover .hover-card {
    opacity: 0.5;
    transform: scale(0.96);
}

.portfolio-layout:hover .hover-card:hover {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

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

.hover-card:hover::before {
    background: rgba(0,0,0,0.1);
}

/* TEXT OVERLAY */
.overlay {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    z-index: 2;
}

.overlay span {
    font-size: 15px;
}

.overlay button {
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 13px;
    cursor: pointer;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media (max-width: 992px) {
    .portfolio-layout {
        grid-template-columns: 1fr;
    }

    .left-column {
        grid-template-rows: none;
        grid-template-columns: repeat(3, 1fr);
    }

    .hover-card {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 576px) {
  .con-btn {
  margin-top: 14px;
}
    .left-column {
        grid-template-columns: 1fr;
    }

    .hover-card {
        height: 200px;
    }

    .portfolio-layout:hover .hover-card {
        opacity: 1;
        transform: none;
    }
}


/* faq's csss */
.collab-section {
    background: #0b0f0e;
    padding: 100px 0;
    color: #fff;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* GRID */
.collab-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */
.collab-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 60px;
}

.team {
    display: flex;
    gap: 40px;
}

.member img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 15px;
}

.member h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.member h4 span {
    font-size: 12px;
    background: #fff;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.member p {
    font-size: 14px;
    color: #a3a3a3;
}

/* RIGHT FAQ */
.collab-right h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.collab-right details {
    border-bottom: 1px solid #2a2a2a;
    padding: 18px 0;
}

.collab-right summary {
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    padding-right: 25px;
}

.collab-right summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
}

.collab-right details[open] summary::after {
    content: "–";
}

.collab-right details p {
    font-size: 14px;
    color: #cfcfcf;
    margin-top: 15px;
    line-height: 1.6;
}

/* -------- RESPONSIVE -------- */

/* Tablet */
@media (max-width: 992px) {
    .collab-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .collab-left h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .collab-section {
        padding: 70px 0;
    }

    .team {
        order: -1; /* images on top */
        justify-content: center;
        margin-bottom: 40px;
        gap: 30px;
    }

    .collab-left h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
    }

    .member {
        text-align: center;
    }
}


 .progress-section {
  padding: 80px 0;
  background-color: #000; /* Matching your body background */
  color: white;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #941c97, #337b8b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.progress-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

/* The Connecting Line (Desktop) */
.progress-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #941c97, #337b8b);
  z-index: 1;
}

.progress-card {
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.progress-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #337b8b;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(160deg, #941c97 0%, #337b8b 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(148, 28, 151, 0.4);
}

.card-content h3 {
  margin-bottom: 10px;
  color: #fff;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .progress-grid {
    flex-direction: column;
    align-items: center;
  }

  .progress-grid::before {
    width: 2px;
    height: 80%;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
  }

  .progress-card {
    width: 100%;
    max-width: 350px;
    margin-bottom: 40px;
  }
}


/* other */
@media (max-width: 480px) {
  .about-content h2 {
    font-size: 26px;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 30px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    z-index: 99;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav li {
    margin: 15px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-outline {
    display: block;
    margin: 15px auto 0;
  }
}

@media (max-width: 576px) {
}