.hero-section {
  padding: 80px 20px;
  text-align: center;
  background: #f4f7f9;
}

.fancy-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #165153;
  display: inline-block;
  position: relative;
  background-image: linear-gradient(to right, #0a2e2f 0%, #165153 100%);
  background-repeat: no-repeat;
  background-size: 0% 3px;
  background-position: bottom left;
  transition: background-size 0.5s ease;
}

.fancy-heading:hover {
  background-size: 100% 3px; /* subtle underline animation */
}

.fancy-subheading {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #0a2e2f;
  font-weight: 500;
}

.shiriki-cloud-section {
  padding: 80px 20px;
  text-align: center;
  background: #f4f7f9;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* Fancy Heading */
.fancy-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #165153;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* Highlight grow-left effect */
.fancy-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #165153;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

/* Triggered by JS */
.fancy-heading.animate::after {
  transform: scaleX(1);
}

/* Subheading / paragraph */
.fancy-subheading {
  font-size: 1.1rem;
  color: #0a2e2f;
  line-height: 1.8;
  margin: 0 auto;
}


.distributed-edge-section {
  padding: 80px 20px;
  background: #f4f7f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Fancy Heading */
.fancy-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #165153;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

/* Highlight grow-left effect */
.fancy-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #165153;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.fancy-heading.animate::after {
  transform: scaleX(1);
}

/* Grid layout for paragraph + flipbox */
.edge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

/* Left Column */
.edge-text {
  flex: 1 1 400px;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #0a2e2f;
}

/* Flipbox */
.flipbox {
  flex: 1 1 300px;
  perspective: 1000px;
}

.flipbox-inner {
  position: relative;
  width: 100%;
  height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.flipbox:hover .flipbox-inner {
  transform: rotateY(180deg);
}

.flipbox-front,
.flipbox-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.flipbox-front {
  background: #165153;
}

.flipbox-back {
  background: #0a2e2f;
  transform: rotateY(180deg);
}

.flipbox-content h5 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}
.process-section {
  padding: 80px 20px;
  background: #f4f7f9;
  font-family: Arial, sans-serif;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Headings */
.subheading {
  font-size: 1rem;
  color: #165153;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 2rem;
  color: #0a2e2f;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.main-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: #165153;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.main-heading.animate::after {
  transform: scaleX(1);
}

.description {
  font-size: 1.1rem;
  color: #0a2e2f;
  margin-bottom: 50px;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-card {
  flex: 1 1 300px;
  background: #165153;
  color: white;
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.1;
}

.step-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Button */
.cta {
  margin-top: 50px;
}

.btn {
  display: inline-block;
  background: #0a2e2f;
  color: white;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: #165153;
}
.pay-for-use-section {
  padding: 80px 20px;
  background: #f4f7f9;
  font-family: Arial, sans-serif;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-heading {
  font-size: 2rem;
  color: #0a2e2f;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.description {
  font-size: 1.1rem;
  color: #0a2e2f;
  margin-bottom: 50px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature {
  flex: 1 1 300px;
  background: #165153;
  color: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left;
}

.feature h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  line-height: 1.6;
}

.cta {
  margin-top: 50px;
}

.btn {
  display: inline-block;
  background: #0a2e2f;
  color: white;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: #165153;
}


/* STORAGE SOLUTION SECTION */
.storage-solution-section {
    padding: 80px 20px;
    background: #f9fafb;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FLEX LAYOUT */
.storage-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.storage-text {
    flex: 1;
    text-align: left;
}

.highlight-heading {
    font-size: 2rem;
    color: #0a2e2f;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: #0a2e2f;
    margin-bottom: 40px;
}

.image-wrapper {
    flex: 1;
    position: relative;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* PLAY BUTTON OVERLAY */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10,46,47,0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.play-button:hover {
    background: rgba(22,81,83,0.8);
}

/* RESPONSIVE: STACK ON MOBILE */
@media (max-width: 768px) {
    .storage-layout {
        flex-direction: column;
    }
    .storage-text {
        text-align: center;
    }
}



 







.shiriki-why-section {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: Arial, sans-serif;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-heading {
  font-size: 2rem;
  color: #0a2e2f;
  margin-bottom: 40px;
}

.feature {
  margin-bottom: 40px;
}

.feature-title {
  font-size: 1.5rem;
  color: #165153;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 1.1rem;
  color: #0a2e2f;
}

.cta-button {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background: #165153;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0a2e2f;
}

.native-app-section {
  display: flex;
  gap: 40px;
  align-items: stretch; /* Makes columns equal height */
  flex-wrap: nowrap;
}

.text-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
}

.text-column h2 {
  margin-bottom: 20px;
}

.text-column p {
  line-height: 1.6;
}

.image-column {
  flex: 1;
  position: relative;
  background: #f5f5f5; /* Add background color like the example */
  border-radius: 8px; /* Optional: rounded corners */
  padding: 20px; /* Add some padding around the image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-column img {
  width: 100%;
  max-width: 500px; /* Limit image size */
  height: auto;
  display: block;
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px; /* Bigger play button */
  color: white;
  background: rgba(22, 81, 83, 0.8); /* Use your brand color */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: rgba(22, 81, 83, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.btn-start {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #165153;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-start:hover {
  background-color: #1a6365;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .native-app-section {
    flex-direction: column;
  }
  
  .image-column {
    padding: 40px 20px;
  }
}


.pricing-section {
  padding: 60px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-description {
  font-size: 18px;
  color: #555;
}
.faq-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Left Column - Images */
.images-column {
  flex: 1;
  position: relative;
  min-height: 600px;
}

.img-main {
  width: 60%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.img-absolute-1 {
  position: absolute;
  width: 45%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  top: 0;
  right: 0;
  z-index: 2;
}

.img-absolute-2 {
  position: absolute;
  width: 70%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  bottom: 50px;
  left: 40%;
  z-index: 3;
}

/* Right Column - FAQ Content */
.faq-content {
  flex: 1;
}

.faq-label {
  color: #165153;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Accordion Styles */
.accordion {
  border: none;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
  background: transparent;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background: transparent;
  border: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  color: #165153;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button::after {
  display: none; /* Remove default Bootstrap arrow */
}

.accordion-title-txt {
  flex: 1;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-style: normal;
  transition: all 0.3s ease;
}

.icon-plus {
  opacity: 1;
}

.icon-minus {
  opacity: 0;
}

.accordion-button:not(.collapsed) .icon-plus {
  opacity: 0;
}

.accordion-button:not(.collapsed) .icon-minus {
  opacity: 1;
}

.accordion-button:not(.collapsed) {
  color: #165153;
  background: transparent;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  padding: 0 0 20px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

  .images-column {
    min-height: 400px;
    width: 100%;
  }

  .faq-title {
    font-size: 32px;
  }

  .accordion-button {
    font-size: 16px;
  }
}


.footer-widget {
  font-family: sans-serif;
  color: #333;
  margin: 20px 0;
}

.footer-widget h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 5px;
}

.footer-widget ul li a {
  text-decoration: none;
  color: #00bcd4;
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #007b8a;
}



.features-grid { display: flex; gap: 40px; margin-top: 50px; }
.feature-box { flex: 1; display: flex; flex-direction: column; gap: 40px; }
.feature-item { padding: 20px; border-radius: 10px; background: #fbfbfb; }
.feature-label { color: #007bff; font-weight: bold; text-transform: uppercase; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.feature-item h3 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 10px; }
.feature-item p { color: #666; font-size: 1rem; }
@media (max-width: 768px) { .features-grid { flex-direction: column; } }


.section.light { background: #f4f7fa; padding: 80px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.card h3 { font-size: 1.3rem; margin-bottom: 15px; color: #111; }
.card p { font-size: 0.95rem; line-height: 1.6; color: #555; }
@media (max-width: 992px) { .grid-3 { grid-template-columns: 1fr; } }


.distributed-infra { padding: 80px 0; background: #fff; }
.infra-content h2 { font-size: 2.2rem; margin-bottom: 20px; color: #1a1a1a; }
.infra-content p { font-size: 1.05rem; line-height: 1.7; color: #444; margin-bottom: 25px; }
.infra-visual { position: relative; display: flex; justify-content: center; }
.infra-visual img { max-width: 100%; height: auto; border-radius: 8px; }
@media (max-width: 992px) { .grid-2 { grid-template-columns: 1fr; text-align: center; } }

.page-wrapper {
    max-width: 1200px;    /* Controls how wide your content goes */
    margin: 0 auto;       /* Centers the page horizontally */
    padding: 0 20px;      /* Adds some breathing room on sides */
    box-sizing: border-box; /* Ensures padding doesn’t break layout */
}
