.data-power-section {
    position: relative;
    padding: 100px 0;
    background-image: url('/images/60148189_xl-1-scaled.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.overlay-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        #0e1f40 0%, 
        rgba(14, 31, 64, 0.95) 20%,
        rgba(14, 31, 64, 0.85) 50%,
        rgba(14, 31, 64, 0.69) 100%
    );
    z-index: 1;
}

.data-power-section .container {
    position: relative;
    z-index: 2;
}

.section-heading {
    font-size: 44px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content-box,
.points-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.main-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}

.main-paragraph:last-child {
    margin-bottom: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bullet-icon {
    background-color: 
#3a85c3;
    color: #0e1f40;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 3px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-heading {
        font-size: 32px;
    }

    .content-box,
    .points-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .data-power-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 26px;
    }

    .content-box,
    .points-box {
        padding: 25px;
    }

    .main-paragraph,
    .feature-text {
        font-size: 14px;
    }

    .bullet-icon {
        width: 25px;
        height: 25px;
        font-size: 16px;
        margin-right: 15px;
    }
}


.bg-fit-section {
  width: 100%;
  min-height: 100vh;
  background-image: url('/images/hardware-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}


.container {
  position: relative;
  z-index: 2;
}

.sensor-showcase {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 80px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.features-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  grid-template-rows: repeat(4, auto);
  gap: 40px 60px;
  min-height: 700px;
  align-items: center;
}

/* Center Hardware */
.center-hardware {
  grid-column: 2;
  grid-row: 1 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hardware-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hardware-image:hover {
  transform: scale(1.05);
}

.pulse-ring {
  position: absolute;
  width: 550px;
  height: 550px;
  border: 3px solid rgba(139, 195, 74, 0.5);
  border-radius: 50%;
  animation: pulse 3s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* Feature Items - NO CARD BACKGROUND */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.4s ease;
  padding: 10px;
  position: relative;
}

.feature-item:hover {
  transform: translateX(-5px);
}

.feature-item.top-right:hover,
.feature-item.middle-right-top:hover,
.feature-item.middle-right-bottom:hover,
.feature-item.bottom-right:hover {
  transform: translateX(5px);
}

.icon-circle {
  min-width: 56px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #66BB6A, #388E3C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.icon-circle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover .icon-circle {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(139, 195, 74, 0.6);
}

.feature-item:hover .icon-circle::after {
  opacity: 1;
}

.feature-content {
  flex: 1;
}

.feature-item h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 8px 0;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.feature-item:hover h3 {
  color: #8BC34A;
}

.feature-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Grid Positioning */
.top-left {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.top-right {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  flex-direction: row-reverse;
  text-align: right;
}

.middle-left-top {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

.middle-left-bottom {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}

.middle-right-top {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  flex-direction: row-reverse;
  text-align: right;
}

.middle-right-bottom {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
  flex-direction: row-reverse;
  text-align: right;
}

.bottom-left {
  grid-column: 1;
  grid-row: 4;
  justify-self: end;
}

.bottom-right {
  grid-column: 3;
  grid-row: 4;
  justify-self: start;
  flex-direction: row-reverse;
  text-align: right;
}

/* Connecting Lines Effect */
.feature-item::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.5));
  top: 28px;
  opacity: 0;
  transition: all 0.4s ease;
}

.top-left::before,
.middle-left-top::before,
.middle-left-bottom::before,
.bottom-left::before {
  right: -45px;
}

.top-right::before,
.middle-right-top::before,
.middle-right-bottom::before,
.bottom-right::before {
  left: -45px;
  background: linear-gradient(90deg, rgba(139, 195, 74, 0.5), transparent);
}

.feature-item:hover::before {
  opacity: 1;
  width: 50px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  .center-hardware {
    order: -1;
    margin: 40px 0;
  }
  
  .feature-item {
    max-width: 500px;
    margin: 0 auto;
    text-align: left !important;
    flex-direction: row !important;
  }
  
  .feature-item::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .hardware-image {
    max-width: 280px;
  }
  
  .pulse-ring {
    width: 320px;
    height: 320px;
  }
  
  .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .feature-item h3 {
    font-size: 1rem;
  }
  
  .feature-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .bg-fit-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .hardware-image {
    max-width: 220px;
  }
}


/* Specialty Section */
.specialty-section {
  width: 100%;
  padding: 80px 0;
  background-color: #f5f5f0;
  position: relative;
}

.specialty-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  color: #8b7355;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title span {
  font-weight: 600;
  color: #6b5644;
}

.section-subtitle {
  font-size: 1rem;
  color: #8b7355;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards Container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Individual Card */
.specialty-card {
  position: relative;
  min-height: 550px;
  background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=800');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Different background images for each card */
.specialty-card:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=800');
}

.specialty-card:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=800');
}

/* Card Overlay */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #112140, rgba(60, 40, 25, 0.605));
  z-index: 1;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
  padding: 40px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  text-align: justify;
}

/* Card Features List */
.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: #8BC34A;
  stroke-width: 3;
  margin-top: 2px;
}

/* Card Button */
.card-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 35px;
  background-color: #102142
;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.card-btn:hover {
  background-color: #1b5c92;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.card-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .specialty-card {
    min-height: 500px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .specialty-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .card-content {
    padding: 30px 25px;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .card-description {
    font-size: 0.9rem;
  }
  
  .card-features li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .card-content {
    padding: 25px 20px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-description {
    font-size: 0.85rem;
    text-align: left;
  }
  
  .card-features li {
    font-size: 0.85rem;
  }
  
  .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  
  .card-btn {
    padding: 10px 28px;
    font-size: 0.9rem;
  }
}



/* Product Showcase Section */
.product-showcase-section {
  width: 100%;
  padding: 80px 0;
  background-color: #d5dde8;
  position: relative;
}

.product-showcase-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Section */
.showcase-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Right Section */
.showcase-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Content Block */
.content-block {
  background-color: transparent;
}

.showcase-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a3828;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.showcase-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5a4a3a;
  margin-bottom: 25px;
  text-align: justify;
}

/* Showcase List */
.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5a4a3a;
}

.showcase-list li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: #8b7355;
  font-size: 1.2rem;
  line-height: 1.3;
}

/* Image Stack - Left Side (Vertical over Horizontal) */
.image-stack {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 20px;
}

.image-horizontal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85%;
  height: 300px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-vertical {
  position: absolute;
  top: 0;
  left: 150px;
  width: 320px;
  height: 420px;
  z-index: 2;
  overflow: hidden;
  border: 8px solid #e8dfd5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image Frame - Right Side */
.image-frame {
  width: 100%;
  height: 350px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Showcase Button */
.showcase-btn {
  margin-top: 25px;
  padding: 12px 35px;
  background-color: 
#1f2b4b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.showcase-btn:hover {
  background-color: #1b5a8f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.showcase-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-showcase-section .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .image-stack {
    height: 450px;
  }
  
  .image-vertical {
    width: 280px;
    height: 380px;
  }
  
  .image-horizontal {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .product-showcase-section {
    padding: 60px 0;
  }
  
  .product-showcase-section .container {
    padding: 0 20px;
    gap: 50px;
  }
  
  .showcase-heading {
    font-size: 1.5rem;
  }
  
  .showcase-description {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .showcase-list li {
    font-size: 0.85rem;
  }
  
  .image-stack {
    height: 400px;
  }
  
  .image-vertical {
    width: 240px;
    height: 340px;
    left: 30px;
  }
  
  .image-horizontal {
    height: 250px;
    width: 90%;
  }
  
  .image-frame {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .showcase-heading {
    font-size: 1.3rem;
  }
  
  .showcase-description {
    font-size: 0.85rem;
  }
  
  .showcase-list li {
    font-size: 0.8rem;
    padding-left: 20px;
  }
  
  .image-stack {
    height: 350px;
  }
  
  .image-vertical {
    width: 200px;
    height: 300px;
    left: 20px;
    border: 5px solid #e8dfd5;
  }
  
  .image-horizontal {
    height: 220px;
  }
  
  .image-frame {
    height: 250px;
  }
  
  .showcase-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
}

/* Hardware Section */
.hardware-section {
 position: relative;
  padding: 6rem 0;
  background-image: url('/images/shop-bg.jfif'); /* replace image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hardware-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.77); /* adjust darkness */
  z-index: 1;
}

.hardware-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #1b5c92;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

/* Hardware Cards Container */
.hardware-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Position last 2 cards in center */
.hardware-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
  margin-right: 17.5px;
}

.hardware-card:nth-child(5) {
  grid-column: 2 / 3;
  margin-left: 17.5px;
  margin-right: auto;
}

/* Individual Hardware Card */
.hardware-card {
  background: rgba(30, 50, 80, 0.34);
  border: 1px solid rgba(139, 195, 74, 0.2);
  border-radius: 25px;
  padding: 0 0 25px 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hardware-card:hover {
  transform: translateY(-10px);
  border-color: #1b5c92;
  box-shadow: 0 15px 40px rgba(139, 195, 74, 0.2);
  background: rgba(30, 50, 80, 0.533);
}

/* Card Image - Protruding Effect */
.card-image {
  width: 200px;
  height: 200px;
  margin: -10px auto 20px;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;

  padding: 15px;
  
  transition: transform 0.3s ease;
}

.hardware-card:hover .card-image {
  transform: scale(1.05);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Card Content */
.card-content {
  padding: 0 25px;
  text-align: center;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  min-height: 48px;
}

/* Card Buy Button */
.card-buy-btn {
  padding: 10px 25px;
  background:#1b5c92;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.card-buy-btn:hover {
  background: #1b5d9291;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 114, 175, 0.5);
}

.card-buy-btn:active {
  transform: translateY(0);
}

/* Update Card Footer for better spacing */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 195, 74, 0.2);
  gap: 15px;
}



.card-icon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background:#1b5c92;
  border: 2px solid rgba(139, 195, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.card-icon-btn svg {
  width: 22px;
  height: 22px;
  color: #f1f1f1;
  stroke-width: 2;
}

.card-icon-btn:hover {
  background: #2785d2;
  border-color: #0e304b;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hardware-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .hardware-card:nth-child(4),
  .hardware-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hardware-section {
    padding: 60px 0 80px;
  }
  
  .hardware-section .container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2rem;
    padding: 12px 30px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .hardware-cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .card-image {
    width: 180px;
    height: 180px;
    margin: -30px auto 15px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-description {
    font-size: 0.85rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    padding: 10px 25px;
  }
  
  .card-content {
    padding: 0 20px;
  }
  
  .card-image {
    width: 160px;
    height: 160px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-description {
    font-size: 0.8rem;
  }
  
  .card-price {
    font-size: 1.3rem;
  }
  
  .card-icon-btn {
    width: 40px;
    height: 40px;
  }
  
  .card-icon-btn svg {
    width: 20px;
    height: 20px;
  }
}



.guided-demo-form-section {
  background: linear-gradient(135deg, #F5F7FA, #E8ECF1);
  padding: 100px 0;
  position: relative;
}
.guided-demo-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2078FF, #0E2041, #2078FF);
}
/* ================= LEFT INTRO CONTENT ================= */
.demo-form-intro {
  padding-right: 30px;
}
.demo-form-intro h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0E2041;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.intro-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-points p {
  font-size: 16px;
  font-weight: 400;
  color: #2C3E50;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}
.intro-points p.highlight {
  font-weight: 600;
  color: #0E2041;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid rgba(32, 120, 255, 0.3);
}
/* ================= RIGHT FORM ================= */
.guided-contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px 45px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(32, 120, 255, 0.1);
}
/* Form Labels */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.required {
  color: #E74C3C;
  font-weight: 700;
}
/* Form Inputs */
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  color: #2C3E50;
  background: #F8F9FA;
  border: 2px solid #E1E8ED;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.form-input:focus {
  background: #FFFFFF;
  border-color: #2078FF;
  box-shadow: 0 0 0 4px rgba(32, 120, 255, 0.1);
}
.form-input::placeholder {
  color: #95A5A6;
  font-weight: 300;
}
/* Field Helper Text */
.field-helper {
  display: block;
  font-size: 12px;
  color: #7F8C8D;
  margin-top: 5px;
  font-weight: 300;
}
/* Textarea */
textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: 'Sora', sans-serif;
}
/* ================= CUSTOM CHECKBOX ================= */
.form-check-wrapper {
  margin: 25px 0;
}
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 22px;
  width: 22px;
  background: #F8F9FA;
  border: 2px solid #CBD5E0;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.custom-checkbox:hover .checkmark {
  border-color: #2078FF;
  background: rgba(32, 120, 255, 0.05);
}
.custom-checkbox input:checked ~ .checkmark {
  background: #2078FF;
  border-color: #2078FF;
}
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}
.checkbox-label {
  font-size: 14px;
  color: #2C3E50;
  line-height: 1.6;
  font-weight: 400;
}
/* ================= LEGAL NOTICE ================= */
.legal-notice {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #2078FF;
}
.legal-notice p {
  font-size: 12px;
  line-height: 1.7;
  color: #5A6C7D;
  margin-bottom: 12px;
}
.legal-notice a {
  color: #2078FF;
  text-decoration: none;
  font-weight: 500;
}
.legal-notice a:hover {
  text-decoration: underline;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-links a {
  font-size: 13px;
  color: #2078FF;
  text-decoration: underline;
  font-weight: 500;
}
/* ================= SUBMIT BUTTON ================= */
.submit-btn-demo {
  width: 100%;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #2078FF, #0E2041);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(32, 120, 255, 0.3);
}
.submit-btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(32, 120, 255, 0.5);
  background: linear-gradient(135deg, #1A5FD6, #0A1A2E);
}
.submit-btn-demo:active {
  transform: translateY(-1px);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .demo-form-intro {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .demo-form-intro h2 {
    font-size: 32px;
  }
  .guided-contact-form {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .guided-demo-form-section {
    padding: 60px 0;
  }
  .demo-form-intro h2 {
    font-size: 26px;
  }
  .intro-points p {
    font-size: 15px;
  }
  .guided-contact-form {
    padding: 30px 20px;
  }
  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .submit-btn-demo {
    padding: 14px 30px;
    font-size: 15px;
  }
}