    /* ----- RESET & BASE ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fafaff;
      color: #1e1e2f;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* ----- TYPOGRAPHY & COLORS (template: light bg, dark text, cyan touch) ----- */
    h1,
    h2,
    h3,
    h4 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: 3.2rem;
      line-height: 1.2;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    h4 {
      font-size: 1.2rem;
      font-weight: 500;
      color: #3a4f6c;
    }

    /* ----- NAVIGATION (transparent, minimal) ----- */
    #navToggleImg {
      position: fixed;
      top: 1.8rem;
      right: 2rem;
      width: 32px;
      height: 32px;
      cursor: pointer;
      z-index: 1001;
      filter: invert(30%) sepia(8%) saturate(1245%) hue-rotate(182deg) brightness(92%) contrast(85%);
      transition: 0.2s;
      display: none;
      /* hidden on desktop, shown via media query */
    }

    .header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      z-index: 1000;
      border-bottom: 1px solid rgba(0, 180, 200, 0.15);
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 1rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      background: linear-gradient(145deg, #1e2b3c, #2c4058);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      font-weight: 500;
      color: #1f2a41;
      font-size: 1.1rem;
      transition: 0.2s;
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: #00d4c0;
      transition: 0.25s;
    }

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

    .nav-links li a:hover::after {
      width: 100%;
    }

    /* ----- HERO SECTION (based on attached screenshot) ----- */
    /* Hero Section - Clean Version */
.hero {
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 2.5rem 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-height: 85vh;
}

/* Left content */
.hero-left {
  flex: 1 1 500px;
}

.hero-left h4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #4a6b8f;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.hero-left h1 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(145deg, #1e293b, #0f344d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.25rem 0 0.5rem;
  line-height: 1.2;
}

.role {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1d4e6f;
  margin-bottom: 1.5rem;
  border-left: 6px solid #00d4c0;
  padding-left: 1.2rem;
}

.intro {
  font-size: 1.2rem;
  color: #4a5f7a;
  max-width: 550px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-main {
  background: #1d3b5c;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -8px rgba(0,150,180,0.3);
  border: 1px solid transparent;
}

.btn-main:hover {
  background: #0f344d;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px rgba(0,150,180,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #d4ecf0;
  color: #1d3b5c;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: #00d4c0;
  border-color: #00d4c0;
  color: white;
  transform: translateY(-3px);
}

/* Right content - Image */
.hero-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
  object-fit: cover;
  box-shadow: 0 30px 40px -20px rgba(0,120,140,0.4);
  border: 6px solid white;
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 7rem 2rem 3rem;
  }
  
  .hero-left h1 {
    font-size: 3.5rem;
  }
  
  .role {
    font-size: 1.6rem;
  }
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 6rem;
    gap: 2rem;
  }
  
  .role {
    border-left: none;
    border-top: 4px solid #00d4c0;
    padding-left: 0;
    padding-top: 1rem;
    display: inline-block;
  }
  
  .intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .profile-image {
    max-width: 350px;
  }
}

@media (max-width: 550px) {
  .hero {
    padding: 5rem 1.5rem 2rem;
  }
  
  .hero-left h1 {
    font-size: 2.8rem;
  }
  
  .role {
    font-size: 1.4rem;
  }
  
  .intro {
    font-size: 1.1rem;
  }
  
  .btn-main {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
  
  .btn-outline {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }
  
  .profile-image {
    max-width: 280px;
  }
}
    /* ----- GENERAL SECTION STYLE (about / projects / etc) ----- */
    .about {
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 2rem;
      scroll-margin-top: 5rem;
    }

    .project {
      background: white;
      border-radius: 36px;
      padding: 2.5rem;
      margin-bottom: 3rem;
      box-shadow: 0 20px 35px -8px rgba(0, 60, 80, 0.08);
      border: 1px solid rgba(0, 200, 200, 0.2);
      transition: 0.25s;
    }

    .project:hover {
      box-shadow: 0 30px 45px -10px rgba(0, 130, 140, 0.15);
    }

    .project h3 {
      font-size: 2rem;
      color: #14445f;
      margin-bottom: 0.75rem;
    }

    .project p {
      color: #335566;
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .iframe-container {
      width: 100%;
      height: 380px;
      border-radius: 24px;
      overflow: hidden;
      margin: 1.8rem 0 1.2rem;
      border: 1px solid #cfecf0;
    }

    .iframe-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      pointer-events: none;
      /* keeps it as a static preview */
    }

    .project-img {
      max-width: 100%;
      border-radius: 28px;
      border: 1px solid #bae3ea;
      margin: 1rem 0 1.8rem;
      box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.05);
    }

    .project a {
      display: inline-block;
      margin-top: 0.5rem;
      background: #00b8c0;
      color: white;
      text-decoration: none;
      padding: 0.7rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      transition: 0.2s;
    }

    .project a:hover {
      background: #008c9e;
    }

    /* steyp special */
    .imgsteyp {
      vertical-align: middle;
      background: #f0feff;
      border-radius: 40px;
      padding: 5px 12px;
    }

    /* skills icons (template-like) */
    .skills-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 2.2rem 2.5rem;
      justify-content: center;
      margin: 2rem 0;
    }

    .skill {
      font-size: 3.5rem;
      color: #245e7a;
      position: relative;
      transition: 0.2s;
    }

    .skill i {
      filter: drop-shadow(0 6px 8px #b3dff0);
    }

    .skill:hover {
      transform: translateY(-8px);
      color: #00b3b3;
    }

    .skill::after {
      content: attr(data-skill);
      position: absolute;
      bottom: -28px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.8rem;
      font-weight: 600;
      background: #1d3b5c;
      color: white;
      padding: 0.2rem 0.8rem;
      border-radius: 30px;
      white-space: nowrap;
      opacity: 0;
      transition: 0.15s;
      pointer-events: none;
    }

    .skill:hover::after {
      opacity: 1;
      bottom: -36px;
    }

    /* contact section */
    .contact-section {
      max-width: 900px;
      margin: 3rem auto 4rem;
      padding: 3rem 2rem;
      background: rgba(220, 248, 255, 0.4);
      border-radius: 70px 20px 70px 20px;
      box-shadow: 0 25px 35px -15px #b5d9e6;
    }

    .contact-section h2 {
      text-align: center;
    }

    .glassest p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
    }

    .contact-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem 2rem;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      padding: 0.8rem 2rem;
      border-radius: 60px;
      text-decoration: none;
      font-weight: 600;
      color: #1d3b5c;
      box-shadow: 0 8px 16px -6px #c0dbe5;
      border: 1px solid #b3e2ec;
      transition: 0.2s;
      font-size: 1.2rem;
    }

    .contact-link i {
      font-size: 1.8rem;
    }

    .contact-link:hover {
      background: #1e445e;
      color: white;
      border-color: #1e445e;
      transform: scale(1.02);
    }

    .footer {
      text-align: center;
      padding: 2rem;
      color: #3b5e79;
      border-top: 1px solid #c5e3ec;
    }

    /* ----- MOBILE & RESPONSIVE (template alike) ----- */
    @media (max-width: 1024px) {
      h1 {
        font-size: 2.8rem;
      }

      .hero-left h1 {
        font-size: 3.2rem;
      }

      .container {
        padding: 1rem 1.8rem;
      }
    }
body.no-scroll{
  overflow: hidden;
}
    @media (max-width: 1001px) {
      #navToggleImg {
        display: block;
        /* show hamburger */
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -10px 0 25px rgba(0, 0, 0, 0.05);
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 2px solid #abe0ed;
      }

      .nav-links.active {
        right: 0;
      }

      .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 6rem;
      }

      .hero-left h1 {
        font-size: 3rem;
      }

      .role {
        border-left: none;
        border-top: 4px solid #00d4c0;
        padding-top: 0.8rem;
      }

      .hero-buttons {
        justify-content: center;
      }

      .intro {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-right img {
        max-width: 340px;
      }

      .about {
        padding: 3rem 1.5rem;
      }

      .iframe-container {
        height: 280px;
      }
    }

    @media (max-width: 550px) {
      .hero-left h1 {
        font-size: 2.5rem;
      }

      .role {
        font-size: 1.5rem;
      }

      .btn-main {
        padding: 0.75rem 1.8rem;
      }

      .btn-outline {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
      }

      .skills-icons {
        gap: 1.5rem;
      }

      .skill {
        font-size: 2.8rem;
      }

      .contact-link {
        width: 100%;
        justify-content: center;
      }
    }

    /* small fine-tune for short name */
    @media (max-width: 500px) {
      .logo[data-short="Yadhav"] {
        font-size: 1.3rem;
      }
    }
    h2{
      text-align: center !important;
    }
/* STEYP Section Styles */
.steyp-section {
  background: linear-gradient(135deg, #f8fdff 0%, #f0f9ff 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.steyp-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,212,192,0.1) 0%, rgba(0,212,192,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.steyp-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,168,176,0.08) 0%, rgba(0,168,176,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.steyp-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3.5rem;
  background: linear-gradient(145deg, #14445f, #00a8b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00d4c0, #00a8b0);
  border-radius: 2px;
}

.steyp-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.steyp-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 200, 200, 0.2);
  border-radius: 24px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 150, 180, 0.15);
  position: relative;
  overflow: hidden;
}

.steyp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00d4c0, #00a8b0);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.steyp-card:hover {
  transform: translateX(10px) translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(0, 150, 180, 0.3);
  border-color: rgba(0, 212, 192, 0.4);
}

.steyp-card:hover::before {
  opacity: 1;
}

.highlight-card {
  background: linear-gradient(105deg, #ffffff, #f0fcff);
  border: 2px solid rgba(0, 212, 192, 0.3);
  box-shadow: 0 15px 35px -12px rgba(0, 150, 180, 0.25);
}

.highlight-card .steyp-text p {
  font-size: 1.2rem;
  color: #0a344f;
}

.highlight-card .steyp-icon i {
  color: #00d4c0;
  text-shadow: 0 0 15px rgba(0, 212, 192, 0.3);
}

.steyp-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e6f7ff, #d4f0f5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00a8b0;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 192, 0.3);
}

.steyp-card:hover .steyp-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #00d4c0, #00a8b0);
  color: white;
  border-color: transparent;
}

.steyp-text {
  flex: 1;
}

.steyp-text p {
  color: #335566;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
}

.steyp-text strong {
  color: #0a3b50;
  font-weight: 600;
}

.steyp-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.steyp-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1d3b5c, #0f344d);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 25px -8px rgba(0, 150, 180, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.steyp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.steyp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -8px rgba(0, 180, 200, 0.5);
  background: linear-gradient(135deg, #00a8b0, #00d4c0);
}

.steyp-button:hover::before {
  left: 100%;
}

.steyp-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.steyp-button:hover i {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .steyp-section {
    padding: 3rem 1.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .steyp-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.8rem;
  }
  
  .steyp-card::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }
  
  .steyp-card:hover {
    transform: translateY(-5px);
  }
  
  .steyp-icon {
    margin-bottom: 0.5rem;
  }
  
  .steyp-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.9rem;
  }
  
  .steyp-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .highlight-card .steyp-text p {
    font-size: 1.1rem;
  }
  
  .steyp-button {
    width: 100%;
    justify-content: center;
  }
}
/* Pricing Section Styles */
.pricing-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fdff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,192,0.05) 0%, rgba(0,212,192,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, #1e293b, #0f344d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #4a5f7a;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: white;
  border-radius: 30px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px -15px rgba(0,100,120,0.15);
  border: 1px solid rgba(0,212,192,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px -15px rgba(0,150,180,0.3);
  border-color: rgba(0,212,192,0.4);
}

.pricing-card.popular {
  border: 2px solid #00d4c0;
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, #00d4c0, #00a8b0);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0,212,192,0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed rgba(0,212,192,0.3);
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: #1d3b5c;
  margin-bottom: 0.5rem;
}

.package-type {
  color: #00a8b0;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.currency {
  font-size: 1.5rem;
  color: #1d3b5c;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(145deg, #1e293b, #00a8b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  color: #4a5f7a;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: #00d4c0;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Additional Services */
.additional-services {
  margin: 4rem 0;
}

.additional-services h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1d3b5c;
  position: relative;
}

.additional-services h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00d4c0, #00a8b0);
  border-radius: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.service-item {
  display: flex;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,212,192,0.15);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 30px -12px rgba(0,150,180,0.2);
  border-color: rgba(0,212,192,0.3);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6f7ff, #d4f0f5);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #00a8b0;
  border: 1px solid rgba(0,212,192,0.3);
}

.service-content {
  flex: 1;
}

.service-content h4 {
  font-size: 1.3rem;
  color: #1d3b5c;
  margin-bottom: 0.8rem;
}

.service-content p {
  color: #4a5f7a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}

.price-tag {
  background: #f0f9ff;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  color: #1d3b5c;
  font-weight: 500;
  border: 1px solid rgba(0,212,192,0.2);
}

.price-tag.highlight {
  background: linear-gradient(135deg, #00d4c0, #00a8b0);
  color: white;
  border: none;
}

/* CTA Section */
.pricing-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #f0fcff, #ffffff);
  border-radius: 50px;
  border: 1px solid rgba(0,212,192,0.3);
}

.pricing-cta p {
  font-size: 1.3rem;
  color: #1d3b5c;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1d3b5c, #0f344d);
  color: white;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 25px -10px rgba(0,150,180,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-button:hover {
  background: linear-gradient(135deg, #00a8b0, #00d4c0);
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px rgba(0,180,200,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .popular-badge {
    top: 15px;
    right: -35px;
    padding: 0.4rem 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .service-icon {
    margin: 0 auto;
  }
  
  .service-pricing {
    justify-content: center;
  }
  
  .pricing-cta {
    padding: 2rem 1.5rem;
  }
  
  .pricing-cta p {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .service-pricing {
    flex-direction: column;
    align-items: center;
  }
  
  .price-tag {
    width: 100%;
    text-align: center;
  }
}
/* Trust & Transparency Section */
.trust-section {
  padding: 5rem 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #f5fcff 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,212,192,0.05) 0%, rgba(0,212,192,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.trust-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,168,176,0.04) 0%, rgba(0,168,176,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-section .section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(145deg, #1e293b, #0f344d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.trust-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00d4c0, #00a8b0);
  border-radius: 2px;
}

.trust-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Main Message Card - Full Width */
.trust-card.main-message {
  grid-column: span 2;
  background: linear-gradient(135deg, #1d3b5c, #0f344d);
  color: white;
  text-align: center;
  padding: 3rem 4rem;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0,80,100,0.3);
}

.trust-card.main-message::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(0,212,192,0.3);
  margin-bottom: 1rem;
}

.trust-statement {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Common Card Styles */
.trust-card {
  background: white;
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px -15px rgba(0,100,120,0.1);
  border: 1px solid rgba(0,212,192,0.15);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px -15px rgba(0,150,180,0.25);
  border-color: rgba(0,212,192,0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-header i {
  font-size: 2rem;
  color: #00d4c0;
  background: rgba(0,212,192,0.1);
  padding: 1rem;
  border-radius: 18px;
}

.card-header h3 {
  font-size: 1.5rem;
  color: #1d3b5c;
  margin: 0;
}

/* Verification Card */
.social-verification {
  margin: 2rem 0;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  background: #f8fdff;
  border-radius: 18px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,212,192,0.1);
  transition: all 0.2s ease;
}

.social-item:hover {
  background: white;
  border-color: rgba(0,212,192,0.3);
  transform: translateX(5px);
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.linkedin-bg {
  background: #0077b5;
}

.instagram-bg {
  background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.social-details {
  display: flex;
  flex-direction: column;
}

.platform {
  font-weight: 700;
  color: #1d3b5c;
  font-size: 1.1rem;
}

.status {
  font-size: 0.9rem;
  color: #00a8b0;
  font-weight: 500;
}

.social-note {
  color: #4a5f7a;
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed rgba(0,212,192,0.2);
}

/* Contact Transparency Card */
.contact-availability {
  margin-top: 2rem;
}

.availability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  color: #4a5f7a;
}

.availability-item i {
  color: #00d4c0;
  width: 24px;
  font-size: 1.2rem;
}

/* Goal Card */
.trust-card.goal-card {
  background: linear-gradient(145deg, #f0fcff, #ffffff);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  grid-column: span 2;
}

.goal-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d4c0, #00a8b0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 15px 25px -10px rgba(0,212,192,0.4);
}

.goal-content h3 {
  font-size: 1.8rem;
  color: #1d3b5c;
  margin-bottom: 0.5rem;
}

.goal-content p {
  font-size: 1.2rem;
  color: #4a5f7a;
  line-height: 1.6;
}

/* Stats Summary */
.trust-stats {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1rem;
  padding: 2rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  border: 1px solid rgba(0,212,192,0.2);
}

.stat-circle {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(145deg, #1d3b5c, #00a8b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5f7a;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .trust-card.main-message,
  .trust-card.goal-card,
  .trust-stats {
    grid-column: span 1;
  }
  
  .trust-statement {
    font-size: 1.4rem;
  }
  
  .trust-card.goal-card {
    flex-direction: column;
    text-align: center;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 30px;
    padding: 1.5rem;
  }
  
  .trust-section .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .trust-statement {
    font-size: 1.2rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .social-item {
    flex-direction: column;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}
body.slide-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}