/* Base Styles */
.get-aquote {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9ff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.gaq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.gaq-left, .gaq-right {
    flex: 1;
    min-width: 300px;
    padding: 60px;
}

/* Left Section - Form */
.gaq-left {
    background: white;
    position: relative;
}

.gaq-header {
    margin-bottom: 40px;
    text-align: center;
}

.gaq-header h2 {
    font-size: 32px;
    color: #2a2a72;
    margin-bottom: 12px;
    font-weight: 700;
}

.gaq-header p {
    color: #6b6b84;
    font-size: 16px;
    margin-bottom: 24px;
}

.gaq-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.deco-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6c63ff;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.deco-line {
    width: 40px;
    height: 2px;
    background: #e0e0ff;
    transition: all 0.3s ease;
}

.gaq-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a4a6a;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0e0ff;
    font-size: 16px;
    color: #2a2a72;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #6c63ff;
}

.input-underline,
.textarea-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c63ff;
    transition: width 0.4s ease;
}

.form-group input:focus ~ .input-underline,
.form-group textarea:focus ~ .textarea-underline {
    width: 100%;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 0;
    bottom: 12px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #6c63ff;
    border-bottom: 2px solid #6c63ff;
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group select:focus ~ .select-arrow {
    transform: rotate(225deg);
    bottom: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Custom dropdown styling */
.form-group select option {
    padding: 12px;
    background: white;
    color: #2a2a72;
}

.form-group select option:checked {
    background: #f0efff;
    color: #6c63ff;
}

/* Submit Button */
.gaq-submit {
    margin-top: 20px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6c63ff 0%, #8a85ff 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.gaq-submit span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.gaq-submit svg {
    margin-left: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.gaq-submit svg path,
.gaq-submit svg polyline {
    stroke: white;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gaq-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.gaq-submit:hover span {
    transform: translateX(4px);
}

.gaq-submit:hover svg {
    transform: translateX(8px);
}

.gaq-submit:active {
    transform: translateY(0);
}

/* Right Section - Interactive Content */
.gaq-right {
    background: linear-gradient(135deg, #f0efff 0%, #f9f9ff 100%);
    display: flex;
    align-items: center;
}

.interactive-card {
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ic-header {
    text-align: center;
    margin-bottom: 30px;
}

.ic-header h3 {
    font-size: 24px;
    color: #2a2a72;
    margin-bottom: 16px;
}

.ic-decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.ic-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e0e0ff;
    transition: all 0.3s ease;
}

.ic-dot:nth-child(1) {
    background: #6c63ff;
}

.ic-stats {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
}

.stat-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-bg {
    fill: none;
    stroke: #f0efff;
    stroke-width: 4;
}

.stat-fill {
    fill: none;
    stroke: #6c63ff;
    stroke-width: 4;
    stroke-linecap: round;
    animation: stat-fill-animation 1.5s ease-out forwards;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 700;
    color: #2a2a72;
}

.stat-item p {
    font-size: 14px;
    color: #6b6b84;
    margin-top: 8px;
}

.ic-facts {
    margin: 30px 0;
}

.fact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fact-item:hover {
    background: #f9f9ff;
    transform: translateX(4px);
}

.fact-icon {
    width: 24px;
    height: 24px;
    background: #6c63ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-weight: bold;
}

.fact-text {
    color: #4a4a6a;
    font-size: 15px;
}

.ic-testimonial {
    margin-top: 40px;
    background: #f9f9ff;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #f0efff;
}

.testimonial-quote {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: #e0e0ff;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: #4a4a6a;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6c63ff;
    margin-right: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 4c-4.42 0-8 3.58-8 8 0 1.95.7 3.73 1.86 5.12C7.55 17.55 9.68 18 12 18s4.45-.45 6.14-1.88A7.95 7.95 0 0020 12c0-4.42-3.58-8-8-8zm0 2c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm0 14c-3.03 0-5.78-1.09-7.95-2.89C4.17 14.84 4 13.45 4 12c0-4.42 3.58-8 8-8s8 3.58 8 8c0 1.45-.17 2.84-.05 4.11-2.17 1.8-4.92 2.89-7.95 2.89z"/></svg>');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #2a2a72;
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: #8a85ff;
}

/* Background Patterns */
.gaq-pattern {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.05);
}

.pattern-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.pattern-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.pattern-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 20%;
}

.pattern-circle:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 15%;
}

/* Animations */
@keyframes stat-fill-animation {
    from {
        stroke-dasharray: 0, 100;
    }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .gaq-left, .gaq-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .gaq-container {
        flex-direction: column;
    }
    
    .gaq-left, .gaq-right {
        flex: none;
        width: 100%;
    }
    
    .ic-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* Hover Effects */
.deco-circle:hover {
    transform: scale(1.5);
    background: #8a85ff;
}

.deco-line:hover {
    width: 60px;
    background: #8a85ff;
}

.ic-dot:hover {
    transform: translateY(-3px);
    background: #6c63ff;
}

    .our-story-section {
      position: relative;
      padding: 100px 20px;
      background: linear-gradient(145deg, #f0f4ff, #ffffff);
      overflow: hidden;
    }

    .our-story-section::before,
    .our-story-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: rgba(0, 123, 255, 0.08);
      z-index: 0;
    }

    .our-story-section::before {
      width: 300px;
      height: 300px;
      top: -100px;
      left: -100px;
    }

    .our-story-section::after {
      width: 200px;
      height: 200px;
      bottom: -80px;
      right: -80px;
    }

    .container-about {
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
      color: #003366;
      margin-bottom: 20px;
    }

    .intro-text {
      font-size: 1.2rem;
      color: #555;
      max-width: 750px;
      margin: 0 auto 60px;
      line-height: 1.8;
    }

    .story-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .story-card {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      padding: 40px 30px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .story-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      opacity: 0.1;
      border-radius: 50%;
      z-index: 0;
    }

    .story-card h4 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #007bff;
      position: relative;
      z-index: 1;
    }

    .story-card p {
      font-size: 1rem;
      color: #333;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .story-card:hover {
      transform: translateY(-10px);
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }

      .intro-text {
        font-size: 1rem;
      }
    }
	
	
 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f3f6fb;
  color: #1a2b4c;
}

.achievements-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #eef5ff, #ffffff);
  overflow: hidden;
  z-index: 1;
}

.decor-rings::before,
.decor-rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(rgba(0, 119, 255, 0.1), transparent 70%);
  z-index: 0;
}

.decor-rings::before {
  width: 450px;
  height: 450px;
  top: -150px;
  left: -120px;
}

.decor-rings::after {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: -90px;
}

.container-about
 {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title-about {
  font-size: 3rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.section-subtitle-about {
  font-size: 1.2rem;
  color: #5a6570;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 50px 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 119, 255, 0.15);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(0, 119, 255, 0.3);
}

.icon-wrapper img {
  width: 36px;
  height: 36px;
  filter: brightness(1000%);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #003a70;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #4a5568;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-title-about {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .icon-wrapper img {
    width: 28px;
    height: 28px;
  }
}

.stats-grid.new-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

.mini-stat-card {
  background: #ffffff;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.05);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 220px;
}

.mini-stat-card:hover {
  transform: translateY(-6px);
}

.mini-icon {
  margin-bottom: 12px;
}

.mini-stat-text h3 {
  font-size: 1.8rem;
  color: #003a70;
  margin-bottom: 5px;
}

.mini-stat-text p {
  font-size: 0.85rem;
  color: #5a6570;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.minimal-achievements {
  padding: 80px 20px;
  background: #ffffff;
}

.inline-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.inline-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.inline-stat svg {
  flex-shrink: 0;
}

.inline-stat h3 {
  font-size: 1.8rem;
  color: #003a70;
  margin: 0;
}

.inline-stat p {
  font-size: 0.85rem;
  color: #5a6570;
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 768px) {
  .inline-stat {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.styled-achievements {
  padding: 90px 20px;
  background: #e3f3ff;
}

.enhanced-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}

.enhanced-stat-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 119, 255, 0.15);
}

.enhanced-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 119, 255, 0.25);
}

.enhanced-icon svg {
  width: 26px;
  height: 26px;
}

.enhanced-number {
  font-size: 2.4rem;
  color: #003a70;
  font-weight: bold;
  margin: 0;
}

.enhanced-label {
  font-size: 0.9rem;
  color: #5a6570;
  margin-top:

}
 .dapp-hero {
  background: linear-gradient(106deg, #2d4df4 0%, #8298d4 50%, #24243e 100%);
  color: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.dapp-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.dapp-hero-content {
  flex: 1;
  z-index: 2;
}

.dapp-hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dapp-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}

.dapp-hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.dapp-primary-btn {
  background: linear-gradient(90deg, #6e45e2 0%, #88d3ce 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.dapp-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.dapp-secondary-btn {
  border: 2px solid #6e45e2;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.dapp-secondary-btn:hover {
  background: rgba(110, 69, 226, 0.2);
}

.dapp-hero-image {
  flex: 1;
  z-index: 1;
  position: relative;
}

.dapp-hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dapp-hero-partners {
  max-width: 1200px;
  margin: 3rem auto 0;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.dapp-hero-partners p {
  margin-bottom: 1rem;
  opacity: 0.7;
}

.dapp-partner-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.dapp-partner-logos img {
  height: 40px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.dapp-partner-logos img:hover {
  opacity: 1;
}

/* Why Choose Us Section */
.dapp-why {
  padding: 6rem 2rem;
  position: relative;
  background-color: #f9f9ff;
}

.dapp-why-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.03;
  z-index: 0;
}

.dapp-why-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dapp-why h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.dapp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.dapp-why-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.dapp-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.dapp-why-icon img {
  height: 80px;
  margin-bottom: 1.5rem;
}

.dapp-why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.dapp-why-card p {
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.dapp-process {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #231e1e 0%, #0c38ad 100%);
  color: white;
}

.dapp-process-container {
  max-width: 1200px;
  margin: 0 auto;
  
}

.dapp-process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color:#CCCCCC;
}

.dapp-process-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.8;
  font-size: 1.1rem;
  color:#CCCCCC;
  
}

.dapp-process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.dapp-process-steps::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #6e45e2, #88d3ce);
  border-radius: 2px;
}

.dapp-process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.dapp-process-number {
  background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.dapp-process-content {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 2rem;
  flex: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  
}

.dapp-process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.dapp-process-content p {
  opacity: 0.8;
  line-height: 1.6;
  color:#CCCCCC;
}

/* Expertise Section */
.dapp-expertise {
  padding: 6rem 2rem;
  background-color: white;
}

.dapp-expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.dapp-expertise-content {
  flex: 1;
}

.dapp-expertise h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.dapp-expertise p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 500px;
}

.dapp-expertise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dapp-expertise-item {
  background: #f9f9ff;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s;
}

.dapp-expertise-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #f9f9ff 0%, #e6f4ff 100%);
}

.dapp-expertise-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.dapp-expertise-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.dapp-expertise-image {
  flex: 1;
}

.dapp-expertise-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Tech Stack Section */
.dapp-tech {
  padding: 6rem 2rem;
  background-color: #f9f9ff;
}

.dapp-tech-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dapp-tech h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.dapp-tech-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.dapp-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.dapp-tech-category {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dapp-tech-category h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
  position: relative;
  padding-bottom: 0.5rem;
}

.dapp-tech-category h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #6e45e2 0%, #88d3ce 100%);
}

.dapp-tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dapp-tech-items span {
  background: #f0f0ff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #6e45e2;
  font-weight: 500;
}

/* Case Studies Section */
.dapp-cases {
  padding: 6rem 2rem;
  background-color: white;
}

.dapp-cases-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dapp-cases h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.dapp-cases-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

.dapp-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.dapp-case-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dapp-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.dapp-case-image {
  height: 200px;
  overflow: hidden;
}

.dapp-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dapp-case-card:hover .dapp-case-image img {
  transform: scale(1.1);
}

.dapp-case-content {
  padding: 2rem;
}

.dapp-case-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.dapp-case-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.dapp-case-stats {
  display: flex;
  gap: 1.5rem;
}

.dapp-case-stats div {
  text-align: center;
}

.dapp-case-stats strong {
  display: block;
  font-size: 1.8rem;
  color: #6e45e2;
  font-weight: 700;
}

.dapp-case-stats span {
  font-size: 0.9rem;
  color: #666;
}

/* CTA Section */
.dapp-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
  color: white;
}

.dapp-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.dapp-cta-content {
  flex: 1;
}

.dapp-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color:#FFFFFF;
}

.dapp-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
  color:#FFFFFF;
}

.dapp-cta-image {
  flex: 1;
}

.dapp-cta-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .dapp-hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .dapp-hero-cta {
    justify-content: center;
  }
  
  .dapp-expertise-container {
    flex-direction: column;
  }
  
  .dapp-cta-container {
    flex-direction: column;
    text-align: center;
  }
  
  .dapp-cta p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .dapp-hero h1 {
    font-size: 2.5rem;
  }
  
  .dapp-process-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .dapp-process-steps::before {
    left: 40px;
  }
  
  .dapp-process-content {
    margin-left: 0;
  }
}

 :root {
  --color-primary: #457b9d;
  --color-secondary: #a8dadc;
  --color-accent: #f1faee;
  --color-bg: #f9f9f9;
  --text-dark: #1d3557;
  --text-light: #527a95;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition: 0.4s ease;
}


/* GENERAL RESET */
.partner-page-hero, .partner-page-benefits, .partner-page-expertise, .partner-page-culture, .partner-page-future {
  width: 100%;
  height: 350px;
  font-family: var(--font-main);
}

/* HERO */
.partner-page-hero {
  background: linear-gradient(135deg, #a8dadc 0%, #f1faee 100%);
  color: var(--text-dark);
  text-align: center;
  padding: 10vh 1rem 5vh;
  position: relative;
  overflow: hidden;
}
.partner-page-hero-content {
  max-width: 720px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}
.partner-page-hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.partner-page-hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}
.partner-page-hero-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  left: 0;
}

/* BENEFITS with diagonal split and blob */
.partner-page-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 6rem 2rem;
  background: var(--color-accent);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 95%);
  position: relative;
  overflow: visible;
  gap: 2rem;
}
.partner-page-benefits-text {
  flex: 1 1 55%;
  max-width: 600px;
  color: var(--text-dark);
  font-weight: 500;
  z-index: 10;
}
.partner-page-benefits-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.partner-page-benefits-text p {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: var(--text-light);
  line-height: 1.6;
}
.partner-page-benefits-text ul {
  list-style: none;
  padding-left: 0;
}
.partner-page-benefits-text ul li {
  margin-bottom: 1rem;
  padding-left: 1.6rem;
  position: relative;
  font-size: 1rem;
}
.partner-page-benefits-text ul li::before {
  content: "0";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  top: 2px;
}

.partner-page-benefits-graphic {
  flex: 1 1 40%;
  max-width: 400px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05));
  transition: transform 0.5s ease;
}
.partner-page-benefits-graphic:hover {
  transform: translateY(-10px) rotate(-3deg);
}
.partner-page-blob {
  width: 100%;
  height: auto;
}

/* EXPERTISE: multi column fluid */
.partner-page-expertise {
  background: var(--color-bg);
  padding: 5rem 3rem;
  color: var(--text-dark);
  text-align: center;
}
.partner-page-expertise h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  font-weight: 700;
}
.partner-page-expertise-columns {
  column-count: 2;
  column-gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
}
.partner-page-expertise-columns article {
  margin-bottom: 2rem;
  break-inside: avoid;
}
.partner-page-expertise-columns h3 {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* CULTURE: asymmetrical with circles */
.partner-page-culture {
  background: linear-gradient(135deg, #e0f7fa 0%, #fff9f9 100%);
  padding: 7rem 2rem;
  position: relative;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
.partner-page-culture-text {
  flex: 1 1 60%;
  max-width: 700px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
  animation: fadeInLeft 1.2s ease forwards;
  opacity: 0;
}
.partner-page-culture-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.partner-page-culture-text p {
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.partner-page-culture-shapes {
  position: relative;
  flex: 1 1 30%;
  min-height: 280px;
}
.partner-page-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.2;
  filter: blur(45px);
  animation: pulse 6s ease-in-out infinite;
}
.partner-page-circle.circle1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.partner-page-circle.circle2 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 50%;
  animation-delay: 2s;
}
.partner-page-circle.circle3 {
  width: 100px;
  height: 100px;
  top: 75%;
  left: 25%;
  animation-delay: 4s;
}

/* FUTURE VISION: horizontal split with overlay */
.partner-page-future {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
  color: var(--text-dark);
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f1faee 0%, #cde7f0 100%);
  position: relative;
}
.partner-page-future-text {
  flex: 1 1 50%;
  padding: 3rem 2rem;
  max-width: 600px;
  z-index: 2;
}
.partner-page-future-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.partner-page-future-text p {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}
.partner-page-future-image {
  flex: 1 1 50%;
  background: url('https://images.unsplash.com/photo-1526378722023-7dbb092db239?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  border-radius: 120px 0 0 120px;
  filter: brightness(0.95);
  transition: filter var(--transition);
}
.partner-page-future-image:hover {
  filter: brightness(1);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .partner-page-benefits {
    flex-direction: column;
    clip-path: none;
  }
  .partner-page-benefits-graphic {
    max-width: 60vw;
    margin: 0 auto;
  }
  .partner-page-expertise-columns {
    column-count: 1;
    max-width: 100%;
  }
  .partner-page-culture {
    flex-direction: column;
  }
  .partner-page-culture-shapes {
    width: 100%;
    height: 200px;
    min-height: auto;
  }
  .partner-page-future {
    flex-direction: column;
  }
  .partner-page-future-image {
    border-radius: 0 0 80px 80px;
    height: 300px;
    width: 100%;
  }
  .partner-page-future-text {
    max-width: 100%;
    padding: 1rem 1.5rem;
  }
  
  
}

@media (max-width: 450px) {
  .partner-page-hero-content h1 {
    font-size: 2rem;
  }
  .partner-page-benefits-text h2,
  .partner-page-expertise h2,
  .partner-page-culture-text h2,
  .partner-page-future-text h2 {
    font-size: 2rem;
  }
}

/* === PARTNER PROGRAM SECTION === */
.partner-page-programs {
  background: linear-gradient(to right, #fefefe, #f4faff);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.partner-page-programs::before {
  content: '';
  background: url('https://www.transparenttextures.com/patterns/white-wall.png');
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: 0;
}

.partner-page-section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.partner-page-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  z-index: 2;
  position: relative;
}

.partner-page-program {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.partner-page-program:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partner-page-program img {
  width: 60px;
  margin-bottom: 20px;
}

.partner-page-program h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #004080;
}

.partner-page-program p {
  font-size: 0.95rem;
  color: #333;
}

/* === LAYOUT FIX FOR IMAGE ON RIGHT === */
.partner-page-reverse {
  flex-direction: row-reverse;
}

.partner-page-future-img {
  flex: 1;
  text-align: center;
  animation: fadeInUp 1.5s ease;
}

.partner-page-future-img img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
}

/* === BENEFITS MODERN === */
.partner-page-benefits-modern {
  position: relative;
  padding: 120px 20px 100px;
  background: linear-gradient(135deg, #f9fcff, #e7f2ff);
  overflow: hidden;
}

.partner-page-benefits-background {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 200%;
  height: 150%;
  background: radial-gradient(circle, #d4f1f9 0%, transparent 70%);
  z-index: 0;
  transform: rotate(12deg);
  opacity: 0.3;
}

.partner-page-benefits-modern-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.partner-page-benefits-heading h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #004466;
}

.partner-page-benefits-heading p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 50px;
}

.partner-page-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.benefit-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 2rem;
  color: #2692d0;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #003b5a;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Floating hexagons */
.floating-shapes .hex {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #d0ecff, #a0d8ef);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
  position: absolute;
  opacity: 0.4;
  animation: floatHex 10s infinite ease-in-out;
}

.hex1 {
  top: 10%;
  left: 85%;
  animation-delay: 0s;
}

.hex2 {
  top: 70%;
  left: 5%;
  animation-delay: 3s;
}

.hex3 {
  top: 40%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes floatHex {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* === CTA SECTION === */
.partner-page-cta {
  background: linear-gradient(to right, #f2fcff, #e4f5fc);
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.cta-heading {
  font-size: 2.5rem;
  color: #003b5a;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #00a8e8;
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #007cb0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .partner-page-benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-heading {
    font-size: 2rem;
  }
}

.partner-page-benefits-flow {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #f7fcff, #eaf7fa);
  position: relative;
  overflow: hidden;
}

.benefits-flow-heading {
  font-size: 2.5rem;
  text-align: center;
  color: #003b5a;
  margin-bottom: 10px;
}

.benefits-flow-subheading {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  color: #444;
  margin: 0 auto 60px auto;
}

.benefits-flow-timeline {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.flow-marker {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7bdff2, #4098d7);
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(64, 152, 215, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.flow-content {
  background: transparent;
  padding: 5px 0;
  transition: all 0.3s ease;
  border-left: 3px solid #00a8e8;
  padding-left: 25px;
  position: relative;
}

.flow-content::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #00a8e8, #2692d0);
  animation: glowLine 4s ease-in-out infinite;
}

.flow-item:hover .flow-marker {
  transform: scale(1.1) rotate(5deg);
}

.flow-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00688b;
  position: relative;
}

.flow-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Glowing animated border line */
@keyframes glowLine {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .flow-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .flow-content {
    border-left: none;
    padding-left: 0;
  }

  .flow-content::before {
    display: none;
  }
}

/* Reset & base */
* {
  box-sizing: border-box;
}


/* Container */
.careers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* --- Hero Section --- */
.careers-hero {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.careers-hero-text {
  flex: 1 1 55%;
}

.careers-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0d47a1;
}

.careers-hero-text p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: #444;
}

.careers-hero-visual {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-placeholder {
  font-size: 8rem;
  user-select: none;
  color: #0d47a1;
}

/* --- Job Openings --- */
.careers-openings {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.07);
}

.careers-openings h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #0d47a1;
  padding-bottom: 0.3rem;
  font-weight: 700;
  color: #0d47a1;
}

/* Grid for job cards */
.careers-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem 2rem;
}

.careers-job {
  background: #e8f0fe;
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
}

.careers-job:hover {
  background: #d2e3fc;
}

.careers-job h3 {
  margin: 0 0 0.6rem 0;
  color: #0d47a1;
  font-size: 1.3rem;
  font-weight: 700;
}

.careers-job p {
  margin: 0.15rem 0;
  font-size: 0.95rem;
  color: #333;
}

.careers-apply-link {
  margin-top: 1.2rem;
  align-self: flex-start;
  background-color: #0d47a1;
  color: white;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.careers-apply-link:hover {
  background-color: #08306b;
}

/* --- Application Form --- */
.careers-application {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.07);
}

.careers-application h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #0d47a1;
  border-bottom: 3px solid #0d47a1;
  padding-bottom: 0.3rem;
  text-align: center;
}

.careers-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row.full-width {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #222;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='file'],
textarea {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1.7px solid #bbb;
  font-size: 1rem;
  transition: border-color 0.25s ease;
  font-family: 'Inter', sans-serif;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='file']:focus,
textarea:focus {
  border-color: #0d47a1;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 0.85rem 3rem;
  background-color: #0d47a1;
  border: none;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1.2rem;
}

.submit-btn:hover {
  background-color: #08306b;
}

/* --- Footer --- */
.careers-footer {
  width: 100%;
  background-color: #0d47a1;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 4rem;
  box-shadow: 0 -5px 15px rgb(0 0 0 / 0.2);
}

/* Responsive */

@media (max-width: 900px) {
  .careers-hero {
    flex-direction: column;
    gap: 2rem;
  }

  .careers-hero-visual {
    order: -1;
  }

  .careers-form {
    grid-template-columns: 1fr;
  }

  .form-row.full-width {
    grid-column: 1;
  }
}

.careers-intro {
  background-color: #e3f2fd; /* Light blue background */
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 18px rgba(13, 71, 161, 0.12);
}

.careers-intro-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding-left: 1.5rem;
}

.accent-bar {
  width: 6px;
  height: 60px;
  background-color: #0d47a1;
  position: absolute;
  left: 0;
  top: 12px;
  border-radius: 3px;
}

.careers-intro h2 {
  font-size: 2.5rem;
  color: #0d47a1;
  margin-bottom: 1rem;
  font-weight: 700;
}

.careers-intro p {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .careers-intro-content {
    padding-left: 0.8rem;
  }

  .accent-bar {
    height: 50px;
    top: 8px;
  }

  .careers-intro h2 {
    font-size: 2rem;
  }
}

* {
  box-sizing: border-box;

}

.application-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #edf1f4, #fefefe);
}

.application-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.form-section {
  flex: 1 1 60%;
  padding: 50px;
}

.visual-section {
  flex: 1 1 40%;
  background: linear-gradient(to bottom, #f6f9fc, #e2ecf7);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.visual-content {
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Subtle pattern */
  background-blend-mode: overlay;
}

/* List Styling */
.perks-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #333;
  font-size: 1.05rem;
}

/* Stats section */
.stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 20px;
  flex: 1;
  text-align: center;
}

.stat-box h4 {
  font-size: 2rem;
  margin: 0;
  color: #6a82fb;
}

.stat-box p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #555;
}

/* Image Styling */
.visual-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}


/* Floating label style */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.input-group-career {
  position: relative;
}

.input-group-career input,
.input-group-career textarea {
  width: 100%;
  padding: 16px 14px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  background: #fefefe;
  transition: 0.3s;
  color:#000000;
}

.input-group-career label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  background: white;
  padding: 0 5px;
  font-size: 0.95rem;
  color: #888;
  pointer-events: none;
  transition: 0.3s;
}

.input-group-career input:focus + label,
.input-group-career input:not(:placeholder-shown) + label,
.input-group-career textarea:focus + label,
.input-group-career textarea:not(:placeholder-shown) + label {
  top: 8px;
  font-size: 0.75rem;
  color: #6a82fb;
}

/* Submit button */
.submit-btn {
  grid-column: 1 / -1;
  padding: 16px;
  background: linear-gradient(to right, #6a82fb, #56ccf2);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(86, 204, 242, 0.3);
}


/* Responsive */
@media (max-width: 900px) {
  .application-container {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}



/* Get a Quote */
/* Container for both panels */
.quote-container {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  background: #f9fbff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  min-height: 520px; /* enough height to show stretching */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Left panel: form container */
.quote-left {
  flex: 1;
  background: white;
  padding: 40px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading on left panel */
.quote-left h2 {
  font-size: 30px;
  margin-bottom: 28px;
  color: #222;
  font-weight: 700;
  text-align: center;
}

/* Form layout */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form row with two fields */
.form-row {
  display: flex;
  gap: 20px;
}

/* Each input group */
.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Labels */
.input-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  font-size: 15px;
  user-select: none;
}

/* Inputs and selects styling */
.input-group input,
.input-group select {
  padding: 12px 15px;
  font-size: 15px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  font-family: inherit;
  cursor: pointer;
  outline-offset: 2px;
}

/* Hover and focus for inputs/selects */
.input-group input:hover,
.input-group select:hover,
.input-group input:focus,
.input-group select:focus {
  border-color: #007bff;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
  outline: none;
}

/* Custom dropdown arrow */
.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  padding-right: 38px;
}
.input-group select {
  padding: 12px 15px;
  padding-right: 42px; /* extra space for dropdown arrow */
  font-size: 15px;
  color: #333;
  background-color: #fafafa;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-group select:hover,
.input-group select:focus {
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
  outline: none;
  color: #000;
}


/* Submit button */
.submit-btn {
  margin-top: 10px;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.submit-btn:hover {
  background-color: #0056d2;
  box-shadow: 0 4px 12px rgba(0, 86, 210, 0.6);
}

/* Right panel */
.quote-right {
  flex: 1;
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  color: white;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Background pattern on right panel */
.quote-right::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

/* Right panel content wrapper */
.quote-right-content {
  position: relative;
  z-index: 1;
}

/* Right panel heading */
.quote-right h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Right panel descriptive text */
.quote-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Highlight block or callout */
.quote-highlight {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  max-width: 400px;
  margin-top: auto;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .quote-container {
    flex-direction: column;
    min-height: auto;
  }

  .quote-left,
  .quote-right {
    flex: none;
    width: 100%;
    padding: 30px 25px;
  }

  .quote-right {
    min-height: 250px;
  }
}



/* smart-contract-service.css */
/* Hero Section */
.smart-contract-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5% 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4f0ff 100%);
  position: relative;
  overflow: hidden;
}

.smart-contract-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/connected.png');
  opacity: 0.1;
}

.smart-contract-hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.smart-contract-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a237e;
}

.smart-contract-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #424242;
}

.smart-contract-hero-cta {
  display: flex;
  gap: 20px;
}

.smart-contract-primary-btn {
  background: #1a237e;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.smart-contract-primary-btn:hover {
  background: #303f9f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.smart-contract-secondary-btn {
  border: 2px solid #1a237e;
  color: #1a237e;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.smart-contract-secondary-btn:hover {
  background: #1a237e;
  color: white;
  transform: translateY(-3px);
}

.smart-contract-hero-image {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.smart-contract-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Why Us Section */
.smart-contract-why-us {
  padding: 100px 5%;
  background: white;
  position: relative;
}

.smart-contract-why-us-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.smart-contract-section-badge {
  display: inline-block;
  background: #e8eaf6;
  color: #1a237e;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.smart-contract-why-us-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a237e;
}

.smart-contract-why-us-header p {
  font-size: 1.1rem;
  color: #616161;
  line-height: 1.6;
}

.smart-contract-why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.smart-contract-why-us-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.smart-contract-why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(26, 35, 126, 0.1);
  border-color: #c5cae9;
}

.smart-contract-why-us-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8eaf6;
  border-radius: 50%;
}

.smart-contract-why-us-icon img {
  width: 40px;
  height: 40px;
}

.smart-contract-why-us-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a237e;
}

.smart-contract-why-us-card p {
  color: #616161;
  line-height: 1.6;
}

/* Platforms Section */
.smart-contract-platforms {
  padding: 120px 5% 100px;
  position: relative;
  background: #f5f7fa;
}

.smart-contract-platforms-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
  z-index: 0;
}

.smart-contract-platforms-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.smart-contract-platforms h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a237e;
}

.smart-contract-platforms-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #616161;
  line-height: 1.6;
}

.smart-contract-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.smart-contract-platform-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.smart-contract-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26, 35, 126, 0.1);
}

.smart-contract-platform-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.smart-contract-platform-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a237e;
}

.smart-contract-platform-card p {
  color: #616161;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Process Section */
.smart-contract-process {
  padding: 100px 5%;
  background: white;
}

.smart-contract-process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.smart-contract-process-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a237e;
}

.smart-contract-process-header p {
  font-size: 1.1rem;
  color: #616161;
  line-height: 1.6;
}

.smart-contract-process-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.smart-contract-process-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e0e0e0;
  z-index: 0;
}

.smart-contract-process-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.smart-contract-process-step:last-child {
  margin-bottom: 0;
}

.smart-contract-process-number {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #1a237e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 30px;
  box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.smart-contract-process-content {
  padding-top: 15px;
}

.smart-contract-process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a237e;
}

.smart-contract-process-content p {
  color: #616161;
  line-height: 1.6;
}

/* Use Cases Section */
.smart-contract-use-cases {
  padding: 100px 5%;
  background: #f5f7fa;
}

.smart-contract-use-cases-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.smart-contract-use-cases-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a237e;
}

.smart-contract-use-cases-header p {
  font-size: 1.1rem;
  color: #616161;
  line-height: 1.6;
}

.smart-contract-use-cases-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.smart-contract-use-cases-tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.smart-contract-tab-btn {
  background: none;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #e0e0e0;
  color: #424242;
}

.smart-contract-tab-btn.active {
  background: #1a237e;
  color: white;
}

.smart-contract-tab-btn:hover:not(.active) {
  background: #bdbdbd;
}

.smart-contract-tab-pane {
  display: none;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.smart-contract-tab-pane.active {
  display: flex;
}

.smart-contract-tab-pane-image {
  flex: 1;
}

.smart-contract-tab-pane-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-contract-tab-pane-text {
  flex: 1;
  padding: 50px;
}

.smart-contract-tab-pane-text h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #1a237e;
}

.smart-contract-feature-list {
  list-style-type: none;
  padding: 0;
}

.smart-contract-feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1rem;
  color: #424242;
  position: relative;
  padding-left: 30px;
}

.smart-contract-feature-list li:last-child {
  border-bottom: none;
}

.smart-contract-feature-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #1a237e;
  font-weight: bold;
}

/* Audit Section */
.smart-contract-audit {
  display: flex;
  align-items: center;
  padding: 100px 5%;
  background: white;
}

.smart-contract-audit-content {
  flex: 1;
  max-width: 600px;
}

.smart-contract-audit h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a237e;
}

.smart-contract-audit-description {
  font-size: 1.1rem;
  color: #616161;
  line-height: 1.6;
  margin-bottom: 40px;
}

.smart-contract-audit-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.smart-contract-audit-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a237e;
}

.smart-contract-audit-feature p {
  color: #616161;
  line-height: 1.6;
}

.smart-contract-audit-image {
  flex: 1;
  max-width: 600px;
  margin-left: 50px;
}

.smart-contract-audit-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.smart-contract-faq {
  padding: 100px 5%;
  background: #f5f7fa;
}

.smart-contract-faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.smart-contract-faq-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a237e;
}

.smart-contract-faq-header p {
  font-size: 1.1rem;
  color: #616161;
  line-height: 1.6;
}

.smart-contract-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.smart-contract-faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.smart-contract-faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a237e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.smart-contract-faq-question:hover {
  background: #f5f5f5;
}

.smart-contract-faq-question::after {
  content: '+';
  font-size: 1.5rem;
}

.smart-contract-faq-question.active::after {
  content: '-';
}

.smart-contract-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.smart-contract-faq-answer p {
  padding: 0 25px 20px;
  color: #616161;
  line-height: 1.6;
}

/* CTA Section */
.smart-contract-cta {
  padding: 100px 5%;
  background: #d9dcfb;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smart-contract-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/45-degree-fabric-light.png');
  opacity: 0.1;
}

.smart-contract-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.smart-contract-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.smart-contract-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.smart-contract-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.smart-contract-cta .smart-contract-secondary-btn {
  border-color: white;
  color: white;
}

.smart-contract-cta .smart-contract-secondary-btn:hover {
  background: white;
  color: #1a237e;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .smart-contract-hero {
    flex-direction: column;
    padding: 60px 5% 80px;
  }
  
  .smart-contract-hero-content {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .smart-contract-hero-cta {
    justify-content: center;
  }
  
  .smart-contract-audit {
    flex-direction: column;
  }
  
  .smart-contract-audit-content {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .smart-contract-audit-features {
    grid-template-columns: 1fr;
  }
  
  .smart-contract-audit-image {
    margin-left: 0;
  }
  
  .smart-contract-tab-pane {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .smart-contract-hero h1 {
    font-size: 2.5rem;
  }
  
  .smart-contract-hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .smart-contract-process-step {
    flex-direction: column;
  }
  
  .smart-contract-process-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .smart-contract-process-content {
    padding-top: 0;
  }
  
  .smart-contract-use-cases-tab-buttons {
    flex-direction: column;
   
   .smart-contract-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1rem;
}

.smart-contract-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s;
}

.smart-contract-faq-question:hover {
  background-color: #f5f5f5;
}

.smart-contract-faq-question:after {
  content: '+';
  position: absolute;
  right: 1rem;
  transition: transform 0.3s;
}

.smart-contract-faq-question[aria-expanded="true"]:after {
  transform: rotate(45deg);
}

.smart-contract-faq-item {
  border-bottom: 1px solid #eee;
}

.smart-contract-faq-answer p {
  padding: 1rem 0;
  margin: 0;
}


.get-a-quote {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #0a0b1a;
  position: relative;
  overflow: hidden;
}

.get-a-quote-header {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a1b3a 0%, #0a0b1a 100%);
}

.blockchain-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(46, 49, 146, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(101, 44, 179, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.header-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.get-a-quote-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.subtitle {
  font-size: 1.2rem;
  color: #a1a1c2;
  margin-bottom: 30px;
}

.animated-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.dot.bitcoin {
  background: #f7931a;
  animation-delay: 0s;
}

.dot.ethereum {
  background: #627eea;
  animation-delay: 0.5s;
}

.dot.solana {
  background: #00ffbd;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.get-a-quote-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 30px;
}

.quote-form-container {
  flex: 1;
  background: rgba(16, 18, 37, 0.8);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.form-header p {
  color: #a1a1c2;
  margin-bottom: 30px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.input-group {
  position: relative;
}

.input-group.floating {
  grid-column: span 1;
}

.input-group.textarea-group {
  grid-column: span 2;
}

.input-group label {
  position: absolute;
  top: 18px;
  left: 50px;
  color: #a1a1c2;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 20px 20px 20px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.input-group select {
  appearance: none;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a11cb;
  width: 24px;
  height: 24px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.2);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-30px) scale(0.9);
  color: #6a11cb;
  background: #0a0b1a;
  padding: 0 5px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: transparent;
}

.select-group::after {
  content: '-';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a1a1c2;
  pointer-events: none;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.submit-btn:hover svg {
  transform: translateX(5px);
}

.quote-info-container {
  flex: 1;
}

.info-card {
  background: linear-gradient(135deg, #1a1b3a 0%, #0a0b1a 100%);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

.info-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 3px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106, 17, 203, 0.1);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon.blockchain-icon {
  color: #6a11cb;
}

.feature-icon.security-icon {
  color: #2575fc;
}

.feature-icon.time-icon {
  color: #00ffbd;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
}

.feature-item p {
  color: #a1a1c2;
  font-size: 0.95rem;
  line-height: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: #a1a1c2;
  font-size: 0.9rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 3rem;
  color: rgba(106, 17, 203, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: #fff;
  padding: 10px 10px 10px 30px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.author-name {
  font-weight: 600;
  color: #fff;
}

.author-title {
  font-size: 0.9rem;
  color: #a1a1c2;
}

@media (max-width: 992px) {
  .get-a-quote-container {
    flex-direction: column;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .input-group.textarea-group {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .get-a-quote-header h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}