    
    * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
}

.trailer-product-section {
  
  min-height: auto;
  width: 100%;
  background-color: #ffffff;
  color: #111111;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;

}


.trailer-product-container{

    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
}

/* Left Section: Gallery */
.trailer-product-gallery {
  
  background: url('./imgs/trailers/trailer-3.png') no-repeat 50% 50%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  
  
}

.back-pill {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.back-pill:hover {
  opacity: 0.8;
}

.trailer-image-container {
  width: 100%;
  max-width: 520px;
  display: none;
  justify-content: center;
  align-items: center;
}


/* Right Section: Details */
.trailer-product-details {
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

.trailer-product-title {
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.trailer-product-description {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 32px;
}

.trailer-feature-list {
  list-style: none;
  margin-bottom: 1rem;
}

.trailer-feature-list li {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.trailer-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: #000000;
  border-radius: 50%;
}

/* Purchase Group */
.trailer-purchase-group {
  margin-bottom: 48px;
}

.add-to-bag-btn {
  width: 100%;
  background-color: #0f0f0f;
  color: #ffffff;
  border: none;
  padding: 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-bottom: 16px;
}

.add-to-bag-btn:hover {
  background-color: #2a2a2a;
}

.add-to-bag-btn:active {
  transform: scale(0.99);
}

.perks-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666666;
  padding: 0 4px;
}

/* Specs Table */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  text-align: center;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-label {
  font-size: 0.75rem;
  color: #888888;
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111111;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .trailer-product-section {
    grid-template-columns: 1fr;
  }

  .trailer-product-gallery, 
  .trailer-product-details {
    width: 100%;
    max-width: 100%;
  }

  .trailer-product-gallery {
    min-height: 450px;
  }

  .trailer-product-details {
    padding: 1rem 24px;
  }

  .trailer-product-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 600px) {

.trailer-product-container{
grid-template-columns: 1fr;
}


  .specs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .spec-item {
    flex-direction: row;
    justify-content: space-between;
  }


  .ora-logo{
    left: 0%;
    transform: translateX(0%);
  }

  .ora-header{
    padding: 1rem;
  }
}











.tech-showcase-section {
  width: 100%;
  padding: 2rem 0px 2rem 0px;
  display: flex;
  flex-direction: column;
  
  overflow: hidden;
}

/* Header Area */
.showcase-header {
  text-align: start;
  display: flex;
  flex-direction: column;
  
  margin-bottom: 16px;
  padding: 0 20px;
}

.showcase-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.category-pill {
  display: inline-block;
  background-color: #f2f2f2;
  color: #222222;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 30px;
  letter-spacing: -0.01em;
}

/* Cards Carousel */
.cards-wrapper {
  width: 100%;
  padding-left: calc((100vw - 1280px) / 2);
  overflow: hidden;
  cursor: grab;
}

.cards-wrapper:active {
  cursor: grabbing;
}

.cards-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Individual Feature Card */
.feature-card {
  position: relative;
  width: 580px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #ffffff;
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .card-bg img {
  transform: scale(1.04);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.card-badge {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.card-heading {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 360px;
}

.expand-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.expand-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

/* Bottom Controls with Progress Bar */
.showcase-controls {
  width: 100%;
  max-width: 1280px;
  padding: 32px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.progress-bar-container {
  flex-grow: 1;
  height: 3px;
  background-color: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #111111;
  border-radius: 2px;
  will-change: width;
}

.arrow-group {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #111111;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.arrow-btn:hover {
  border-color: #000000;
  background-color: #f5f5f5;
}

/* Media Queries for Responsiveness */
@media (max-width: 1320px) {
  .cards-wrapper {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .showcase-title {
    font-size: 2.5rem;
  }

  .feature-card {
    width: 82vw;
    height: 340px;
  }

  .card-heading {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .showcase-title {
    font-size: 2rem;
  }

  .feature-card {
    width: 88vw;
    height: 300px;
    padding: 18px;
  }
}
















.showcase-stack-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.showcase-stack-card {
  position: sticky;
  top: 2rem;
  width: 100%;
  min-height: calc(100vh - 4rem);
  background-color: #000000;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform-origin: center top;
  will-change: transform, filter;
}

.showcase-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  min-height: calc(100vh - 4rem);
  gap: 12px;
  padding: 12px;
  background-color: #e3e0d8;
  border-radius: 28px;
}

/* Content Left Side */
.showcase-card-content {
  background-color: #ebe8e1;
  border-radius: 20px;
  padding: 3rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.showcase-card-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-top: 1rem;
}

.divider {
  font-size: 1.2rem;
  color: #777777;
  margin: 1.5rem 0;
}

.showcase-card-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #555555;
  max-width: 380px;
  margin: 0 auto;
}

/* Card Bottom Controls */
.showcase-card-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.nav-steps {
  display: flex;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #888888;
  text-transform: uppercase;
  overflow-x: auto;
  width: 100%;
  justify-content: center;
  padding-bottom: 4px;
}

.nav-steps span {
  white-space: nowrap;
}

.nav-steps .active {
  color: #1a1a1a;
  font-weight: 700;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 2px;
}

.btn-explore {
  width: 100%;
  max-width: 320px;
  background-color: #d8d5cb;
  color: #222222;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.btn-explore:hover {
  background-color: #cbca1f;
}

/* Media Right Side */
.showcase-card-media {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 20px;
  overflow: hidden;
}

.showcase-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Grid Split */
@media (min-width: 900px) {
  .showcase-card-grid {
    grid-template-columns: 420px 1fr;
  }
  
  .showcase-card-content {
    padding: 4rem 3rem 2.5rem 3rem;
  }
  
  .showcase-card-media {
    min-height: auto;
  }
}
















/*************************************************************************/


    /* Modal Backdrop */
    .modal-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: none; justify-content: center; align-items: center; z-index: 1000;
    }
    .modal-overlay.active { display: flex; }

    /* Common Card Styling */
    .modal-card {
      background: #ffffff; width: 100%; max-width: 420px;
      border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      position: relative; max-height: 90vh; overflow-y: auto;
    }

    .close-btn {
      position: absolute; top: 16px; right: 16px; background: none;
      border: none; font-size: 20px; cursor: pointer; color: #888;
    }

    /* Modal 1 Specifics */
    .product-img { width: 100%; height: 180px; object-fit: contain; margin-bottom: 12px; }
    .category-tag { font-size: 11px; font-weight: bold; color: #777; text-transform: uppercase; }
    .title-price { display: flex; justify-content: space-between; align-items: center; margin: 6px 0; }
    .title-price h2 { font-size: 18px; margin: 0; }
    .title-price .price { font-size: 18px; font-weight: bold; }
    .desc { font-size: 13px; color: #666; margin-bottom: 16px; line-height: 1.4; }
    .stats { font-size: 13px; color: #444; margin-bottom: 20px; display: flex; gap: 16px; }

    .btn-main {
      width: 100%; padding: 12px; margin-bottom: 10px; border: none;
      border-radius: 8px; background: #222; color: #fff; font-weight: bold;
      cursor: pointer; transition: background 0.2s;
    }
    .btn-main:hover { background: #444; }

    /* Modal 2 (Form) Specifics */
    .supplier-tag { font-size: 12px; color: #777; margin-bottom: 8px; }
    .form-product-header { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
    .form-product-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; border: 1px solid #eee; }
    .form-product-info h4 { font-size: 13px; margin: 0 0 4px; color: #222; }
    .form-product-info p { font-size: 12px; margin: 0; color: #666; font-weight: 600; }

    .section-title { font-size: 15px; font-weight: bold; margin: 16px 0 8px; color: #111; }
    .textarea-box { background: #f8f8f8; border: 1px solid #eaeaea; border-radius: 8px; padding: 10px; }
    textarea { width: 100%; height: 80px; border: none; background: transparent; resize: none; outline: none; font-size: 13px; }
    .char-count { text-align: right; font-size: 11px; color: #888; }

    .attach-container { margin-top: 10px; display: flex; align-items: center; gap: 10px; }
    .attach-btn { border: 1px solid #ccc; border-radius: 20px; padding: 6px 12px; font-size: 12px; cursor: pointer; background: #fff; }
    .attach-hint { font-size: 11px; color: #888; }

    .input-field { width: 100%; padding: 10px 0; border: none; border-bottom: 1px solid #eee; outline: none; font-size: 13px; margin-top: 8px; }
    .input-field:focus { border-bottom-color: #e53935; }

    .btn-red { width: 100%; background: #e53935; color: #fff; border: none; border-radius: 24px; padding: 12px; font-size: 15px; font-weight: bold; cursor: pointer; margin-top: 20px; }
    .btn-red:hover { background: #d32f2f; }




























    
.camera-slider-section {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.camera-slider-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.slider-wrapper {
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  padding: 10px 0;
  cursor: grab;
}

.slider-wrapper:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Base Card Width (Desktop: 4 Cards Visible) */
.camera-card {
  width: calc((100vw - 40px - 60px) / 4);
  max-width: 320px;
  min-width: 260px;
  flex-shrink: 0;
  background-color: #000000;
  border-radius: 28px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-image-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #111111;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px 8px;
  gap: 10px;
}

.card-content h3 {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.card-content p {
  font-size: 0.8rem;
  color: var(--bg-light);
  line-height: 1.4;
}

.card-btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2c2c2e, #1c1c1e);
  color: #ffffff;
  padding: 6px 8px 6px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.card-btn:hover {
  transform: scale(1.03);
}



/* Controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  color: #000000;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cccccc;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background-color: #000000;
  transform: scale(1.3);
}

/* Media Queries for Responsive Multi-Card Layouts */
@media (max-width: 1200px) {
  /* Show 3 Cards */
  .camera-card {
    width: calc((100vw - 40px - 40px) / 3);
  }
}

@media (max-width: 840px) {
  /* Show 2 Cards */
  .camera-card {
    width: calc((100vw - 40px - 20px) / 2);
  }
}

@media (max-width: 560px) {
  /* Show 1 Card */
  .camera-card {
    width: calc(100vw - 40px);
    max-width: 100%;
  }
}






        .security-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            max-width: 1400px;
            padding: 1rem;
        }

        .tile {
            position: relative;
            aspect-ratio: 494 / 557;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            object-position: top;
        }

        .tile .frame {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .ink {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1.5);
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .ink svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tile:nth-child(1) .ink-a path { stroke: #c9a55a; }
        .tile:nth-child(1) .ink-b path { stroke: #f4f0e8; }
        .tile:nth-child(2) .ink-a path { stroke: #6b9bc4; }
        .tile:nth-child(2) .ink-b path { stroke: #f0eef4; }
        .tile:nth-child(3) .ink-a path { stroke: #c4865a; }
        .tile:nth-child(3) .ink-b path { stroke: #f2efe8; }
        .tile:nth-child(4) .ink-a path { stroke: #c9a84a; }
        .tile:nth-child(4) .ink-b path { stroke: #f4f2ea; }
        .tile:nth-child(5) .ink-a path { stroke: #5a9070; }
        .tile:nth-child(5) .ink-b path { stroke: #f0f2ee; }
        .tile:nth-child(6) .ink-a path { stroke: #d4946a; }
        .tile:nth-child(6) .ink-b path { stroke: #f2ebe4; }

        .security-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 1.25rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
            color: #1a1a1a;
            opacity: 0;
            pointer-events: none;
            z-index: 2;
        }
        .security-label-title {
            font-size: 1.125rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        .security-label-sub {
            font-size: 0.8125rem;
            font-weight: 400;
            color: rgba(26, 26, 26, 0.7);
        }




@media (max-width: 1024px) {

  .security-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
         }


}



@media (max-width: 784px) {

  .security-gallery {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
         }

         
}






.services-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  position: relative;



   background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #000000;
  -webkit-font-smoothing: antialiased;



}

/* Left Column Styling */
.services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}

.tag-services {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 40px;
}

.services-title {
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 80px;
}

.services-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 380px;
  margin-top: auto;
}

/* Right Grid Styling */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-left: 1px solid var(--border-color);
}

.service-card {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  border-right: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  background-color: transparent;
  transition: background-color 0.4s ease;
}

.service-card:nth-child(-n+2) {
  border-top: 1px solid var(--border-color);
}

.service-card:hover {
  background-color: rgba(0, 0, 0, 0.015);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 260px;
}

.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.arrow-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-card:hover .arrow-btn {
  transform: scale(1.08);
}

.service-card:hover .arrow-btn svg {
  transform: translateX(2px);
}

/* Glowing Crosshair Nodes */
.node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, var(--glow-color) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: #6b8cff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.node-top-left { top: 0; left: 50%; }
.node-top-right { top: 50%; left: 50%; }
.node-bottom-left { top: 100%; left: 0%; }
.node-bottom-right { top: 100%; left: 50%; }

/* Responsive Layout */
@media (max-width: 1024px) {
  .services-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }


  .ora-logo{
    transform: 0;
  }

  .title {
    margin-bottom: 40px;
  }

  .description {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 40px 20px;
    border-right: none;
  }

  .service-card:nth-child(-n+2) {
    border-top: none;
  }

  .service-card {
    border-top: 1px solid var(--border-color);
  }

  .node {
    display: none; /* Hide node crosshairs on single-column layouts */
  }
}




:root {
  --bg-light: #f3f3f3;
  --bg-blue: #2d42ee;
  --text-dark: #0f0f11;
  --text-muted: #62636c;
  --text-blue-muted: #a6b2ff;
  --white: #ffffff;
  --radius: 28px;
}



/* Section Wrapper */
.camera-why-feature {
  max-width: 1400px;
  margin: 0 auto;
  padding:2rem;
  width: 100%;

}

/* Header */
.camera-why-feature-header {
  text-align: center;
  margin-bottom: 60px;
}

.camera-why-feature-section-title {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-dark);
}

/* Grid Layout */
.camera-why-feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

/* Base Card Styling */
.camera-why-feature-feature-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.camera-why-feature-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Light Cards */
.camera-why-feature-light-card {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.camera-why-feature-light-card .card-desc {
  color: var(--text-muted);
}

/* Highlighted Center Card */
.camera-why-feature-highlight-card {
  background-color: var(--bg-blue);
  color: var(--white);
  padding-bottom: 0; /* Let image reach bottom edge */
}

.camera-why-feature-highlight-card .card-desc {
  color: var(--text-blue-muted);
}

/* Brand Logo Header */
.camera-why-feature-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.camera-why-feature-star-icon {
  width: 16px;
  height: 16px;
}

/* Typography Inside Cards */
.camera-why-feature-card-title {
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.camera-why-feature-card-desc {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Lists in Light Cards */
.camera-why-feature-feature-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.camera-why-feature-feature-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.asterisk {
  font-weight: bold;
  font-size: 1.1rem;
}

/* Image Container in Highlight Card */
.camera-why-feature-card-image-wrapper {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.camera-why-feature-card-image {
  width: 90%;
  max-width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(10px);
  transition: transform 0.5s ease;
  display: none;
}

.camera-why-feature-highlight-card:hover .card-image {
  transform: translateY(0px) scale(1.03);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .camera-why-feature-section-title {
    font-size: 2.25rem;
  }
  
  .camera-why-feature-cards-grid {
    grid-template-columns: 1fr;
    
    margin: 0 auto;
  }

  .camera-why-feature-highlight-card {
    padding-bottom: 40px;
  }
  
  .camera-why-feature-card-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .camera-why-feature-features-section {
    padding: 50px 16px;
  }

  .camera-why-feature-feature-card {
    padding: 32px 24px;
  }

  .camera-why-feature-card-title {
    font-size: 1.5rem;
  }
}



@media (max-width: 600px) {
#ctaBtn{
  display: none;
}

.ora-nav{
  display: none;
}

.ora-logo {
    left: 16px;
    transform: translateX(0%);

}



.hero-content tag{
  font-size: 1.4rem;
}

.hero-title{
  font-size: 2.4rem;
}


}


