
/* === Hero Section === */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px;
  color: white;
}

/* Default fallback background */
.hero-section:not([style*="background-image"]) {
  background-image: url("Assets/solar-banner.png");
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-content a {
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: #b80000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* === Quote Section === */
.quote-section.inside-banner {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  margin-top: 30px;
  border-radius: 8px;
}

.quote-section.inside-banner h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: white;
  color: #000;
  min-width: 200px;
  border-radius: 0;
}

.checkbox-row {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-row.center {
  display: flex;
  justify-content: center;
}

.submit-button {
  padding: 12px 24px;
  background: linear-gradient(to right, #ff7a00, #e65c00);
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  width: 200px;
  border-radius: 0;
}



/* === On-grid Diagram Section === */
#diagram-faq {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.diagram-faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.diagram-side, .faq-side {
  flex: 1 1 500px;
}

.diagram-heading,
.faq-heading {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.ongrid-diagram-img {
  width: 100%;
  max-width: 1400px; /* ✅ Increased size */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  object-fit: contain;
  
}


.ongr
/* FAQ Styles */
/* FAQ Styles */
/* FAQ Styles */
.faq-item {
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #b85835;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 0.95rem;
  color: #444;
  transition: 
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
  will-change: max-height; /* Optimize for animation */
}

.faq-question.active + .faq-answer {
  max-height: var(--faq-max-height); /* Will be set by JS */
  padding-bottom: 16px;
}





.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #b85835;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg); /* arrow up */
}


















/* === Gallery === */
.solutions-gallery {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.gallery-box {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.gallery-box h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.work-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.work-image:hover {
  transform: scale(1.05);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.work-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.work-card.slide-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-info {
  padding: 16px;
}

.card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 4px;
}

/* === Slideshow === */
.slideshow-container {
  position: relative;
  max-width: 1800px;
  height: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 16px;
}

.slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}



.work-slide {
  flex: 0 0 100%;
  display: flex;
  height: 100%;
}

.slide-img {
  width: 60%;
  height: 100%;
  object-fit: cover;
}




.slide-info {
  width: 40%;
  padding: 80px 60px;
  background: #141414;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-info h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.slide-info p {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #e0e0e0;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: white;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10;
}

.slide-btn.prev {
  left: 20px;
}

.slide-btn.next {
  right: 20px;
}


/* === Mobile Overrides === */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .quote-section.inside-banner {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input {
    width: 100%;
    min-width: unset;
    padding: 10px;
  }

  .checkbox-row {
    flex-direction: column;
    gap: 12px;
  }

  .submit-button {
    width: 100%;
    padding: 12px;
  }

  .gallery-box {
    padding: 20px;
  }

  .gallery-box h2 {
    font-size: 1.5rem;
  }

  .work-image {
    height: 180px;
  }

  .slideshow-container {
    height: auto;
    border-radius: 0;
  }

 .slides-wrapper {
  flex-direction: row;
  height: 100%;
}

.work-slide {
  flex: 0 0 100%;
  height: 100%;
}

  .slide-img {
    width: 100%;
    height: auto;
    max-height: 250px;
  }

  .slide-info {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .slide-info h1 {
    font-size: 1.6rem;
  }

  .slide-info p {
    font-size: 1rem;
  }

  .slide-btn {
    font-size: 2rem;
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .slide-btn.prev {
    left: 10px;
  }

  .slide-btn.next {
    right: 10px;
  }
}




/* Mobile Slide*/


@media (max-width: 768px) {
  .slideshow-container {
    height: 500px; /* Adjust as needed */
    margin: 40px 20px; /* Add horizontal padding */
    border-radius: 16px; /* Rounded edges */
    overflow: hidden; /* Ensure content respects the border radius */
  }

  .slides-wrapper {
    flex-direction: row; /* ✅ Keep horizontal layout */
    height: 100%;
  }

  .work-slide {
    flex: 0 0 100%;
    flex-direction: column;
    height: 100%;
  }

  .slide-img {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }

  .slide-info {
    width: 100%;
    height: 50%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .slide-btn {
    font-size: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .slide-btn.prev {
    left: 10px;
  }

  .slide-btn.next {
    right: 10px;
  }
}












/*partner slideshow*/




.client-base-section {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.client-heading {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.client-slideshow-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.client-slides-wrapper {
  display: flex;
  width: max-content;
  transition: transform 0.1s linear;
  align-items: center;
}

.client-slide {
  width: 300px;
  height: 200px;
  margin: 0 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-slide img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}







.section-heading {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 0.5rem;   /* 👈 tighter space */
  padding-bottom: 8px;     /* optional */
  transition: all 0.6s ease-out;
}

/* Partial, rounded underline */
.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, #ff6600, #ff9900);
  border-radius: 20px;
  opacity: 0.8;
  transition: width 0.4s ease;
}

/* Animate on scroll */
.animate-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-init.visible {
  opacity: 1;
  transform: translateY(0);
}



.center-heading {
  text-align: center;
  margin-bottom: 0rem !important;
}






.fancy-title {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 12px 24px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 2rem;

  /* 👇 Add this to center it */
  display: inline-block;
  margin: 0 auto 2rem auto;
}

















.stats-section {
  margin-top: 0px; /* ✅ reasonable space */
  padding-top: 0px;
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}






.section-heading.stats-heading {
  margin-bottom: 40px;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: white;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 220px;
  padding: 24px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  width: 64px;  /* Increased size */
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.stat-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: #b85835;
  line-height: 1;
}

.stat-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  line-height: 1.4;
}


.stat-box p {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
}

.experience-box {
  background-color: #fffbe6;
  border: 2px solid #ffe58f;
  max-width: 260px;
}

.experience-box h3 {
  font-size: 1.4rem;
  margin-top: 10px;
  color: #b85835;
}





/* === X-Shape Layout for Stats Section === */
/* === X-Shape Layout for Stats Section (Desktop) === */
@media (min-width: 769px) {
  .stats-row {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    display: block; /* override flex */
  }

  .stats-row .stat-box {
    position: absolute;
    width: 160px;
  }

  .stats-row .stat-box:nth-child(1) {
    top: 0;
    left: 0;
  }

  .stats-row .stat-box:nth-child(2) {
    top: 0;
    right: 0;
  }

  .stats-row .stat-box:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .stats-row .stat-box:nth-child(4) {
    bottom: 0;
    left: 0;
  }

  .stats-row .stat-box:nth-child(5) {
    bottom: 0;
    right: 0;
  }
}

/* === Mobile View: Stack Stats Vertically === */
@media (max-width: 768px) {
  .stats-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }

  .stats-row .stat-box {
    position: static;
    width: 90%;
    max-width: 320px;
    transform: none !important;
  }
}













.solar-calculator {
    padding: 60px 20px;
    padding-bottom: 0;
    background-color: #f9f9f9;
    text-align: center;
    margin-bottom: 0px;
  }
  .calculator-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .calculator-inputs label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
  }
  .calculator-inputs input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  .calculator-inputs button {
    padding: 10px 20px;
    background: linear-gradient(to right, #ff7a00, #e65c00);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
  }
.calculator-results.modern-results {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: fadeInUp 0.5s ease;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}



#stats {
  clear: both;
  margin-top: 1rem;
  padding-top: 60px;
  z-index: 1;
  position: relative;
}



.results-grid.show {
  max-height: 2000px;  /* ensure it's enough to show all result cards */
  opacity: 1;
  transform: translateY(0);
  margin-top: 24px; /* spacing between form and result */
  margin-bottom: 20px;
}

.result-card {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
}

.result-card:hover {
  transform: translateY(-4px);
}

.result-card.highlight {
  background: #fef3e2;
  border-left: 4px solid #e67e22;
}

.result-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.result-card p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
}

.result-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: inherit; /* Ensures consistency */
}



.savings-card {
  background-color: #e6f9ec;  /* soft green */
  border: 2px solid #27ae60;
}

.savings-card .result-value {
  color: #14532d;  /* match green theme */
  font-weight: 700; /* ensure it matches others */
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}











/* Modern form layout */
/* Modern Input Layout */
.modern-form {
  max-width: 480px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.6s ease-out;
}

.modern-form h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: #222;
}

.modern-form .subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.form-group input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background-color: #f9f9f9;
}

.form-group input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
  outline: none;
  background-color: #fff;
}

.modern-btn {
  background: linear-gradient(to right, #ff7a00, #e65c00);
  color: #fff;
  font-size: 1rem;
  padding: 0.9rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
}

.modern-btn:hover {
  background: linear-gradient(to right, #e65c00, #cc4b00);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }

  body {
  background: linear-gradient(135deg, #f2f6f9, #eaeff2);
}

}





.landscape-layout {
  max-width: 900px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.btn-wrapper {
  margin-top: 2rem;
  text-align: center;
}











/* Section Heading Styles */
.section-heading {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 2rem auto;
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.2;
}

.section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 4px; /* 🎯 thinner underline */
  background: linear-gradient(to right, #ff7a00, #e65c00);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.6;
}

.animate-init {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}











.ongrid-diagram-faq {
  background: #e0e0e0;
  padding: 120px 0;
  border-radius: 24px;
  margin: 80px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.diagram-faq-box {
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: row;
  gap: 100px;
  padding: 100px 120px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  max-width: 2000px;
  width: 100%;
  align-items: flex-start;
}

/* Diagram & FAQ sections */
.diagram-side,
.faq-side {
  flex: 1;
}

/* Line divider */
.middle-divider {
  width: 3px;
  height: 70%;
  background: linear-gradient(to bottom, #ff9800, #ff5722);
  border-radius: 10px;
  align-self: center;
}




@media (max-width: 992px) {
  /* Stack layout */
  .diagram-faq-box {
    flex-direction: column;
    padding: 32px 20px;   /* room to breathe on small screens */
    gap: 24px;
  }

  /* Horizontal divider for stacked layout */
  .middle-divider {
    width: 70%;
    height: 4px;
    margin: 16px auto 8px;
    background: linear-gradient(to right, #ff7a00, #e65c00);
    border-radius: 4px;
  }

  /* Make the diagram full-width on mobile */
  .ongrid-diagram-img {
    width: 100%;
    max-width: none;  /* allow full container width */
    height: auto;
  }

  /* Readable headings */
  .diagram-heading,
  .faq-heading {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
    text-align: center;
  }

  /* FAQ spacing + tap targets */
  .faq-item { margin-bottom: 12px; }
  .faq-question { padding: 14px; font-size: 1rem; }

  /* CLOSED state — remove padding so it collapses fully */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;            /* key fix: no vertical padding when closed */
    margin: 0;                        /* prevent child margins from peeking */
    font-size: 0.95rem;
    transition: max-height 0.4s ease; /* animate height only */
  }

  /* OPEN state — add padding only when expanded */
  .faq-question.active + .faq-answer {
    padding: 0 12px 12px !important;
  }

  /* Normalize first/last child margins inside the answer */
  .faq-answer > *:first-child { margin-top: 0; }
  .faq-answer > *:last-child  { margin-bottom: 0; }
}



/* For Solar Installations Slideshow */
.slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.work-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

/* For Client Base Slideshow */
.client-slides-wrapper {
  display: flex;
  align-items: center;
  will-change: transform; /* Optimize performance */
}

.client-slide {
  flex: 0 0 auto;
  margin: 0 10px;
}




/* Responsive fallback for mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 768px) {
  .results-grid {
    flex-direction: column;
    align-items: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-form-wrap {
    grid-template-columns: 1fr;
  }
}









.ongrid-process {
  padding: 40px 20px;
  text-align: center;
}

.process-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  padding: 20px;
  width: 140px;
  transition: transform 0.3s ease, opacity 0.8s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.process-step img {
  max-width: 60px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.process-step p {
  font-weight: 600;
  margin: 0;
}

.arrow {
  font-size: 32px;
  color: #f57c00;
  user-select: none;
  font-weight: bold;
  margin: 0 10px;
  transition: transform 0.3s;
}

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

  .arrow {
    font-size: 28px;
    transform: rotate(90deg); /* arrow now points down */
    margin: 10px 0;
  }
}







