/*==================================================
PRODUCT HERO
==================================================*/

.page-banner{
  padding:170px 0 110px;
  background:linear-gradient(135deg,#08152d,#0d6efd);
  position:relative;
  overflow:hidden;
  color:#fff;
}

.page-banner::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
  top:-180px;
  right:-120px;
}

.page-banner::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  background:rgba(255,255,255,.05);
  border-radius:50%;
  bottom:-150px;
  left:-100px;
}

.banner-content{
  max-width:760px;
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

.banner-content span{
  display:inline-block;
  padding:10px 22px;
  background:rgba(255,255,255,.15);
  border-radius:40px;
  margin-bottom:20px;
  font-weight:600;
}

.banner-content h1{
  font-size:64px;
  margin-bottom:20px;
  font-weight:700;
}

.banner-content p{
  font-size:20px;
  opacity:.92;
  line-height:1.9;
}

/*==================================================
FLAGSHIP PRODUCT
==================================================*/

.product-showcase{
  padding:120px 0;
  background:#fff;
}

.product-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.product-left h2{
  font-size:52px;
  margin:25px 0;
  line-height:1.15;
  color:#08152d;
}

.product-left h2 span{
  display:block;
  color:#0d6efd;
  margin-top:8px;
}

.product-left p{
  font-size:18px;
  line-height:1.9;
  color:#667085;
  margin-bottom:35px;
}

.product-right{
  text-align:center;
}

.product-right img{
  max-width:470px;
  width:100%;
  animation:floatPhone 5s ease-in-out infinite;
  filter:drop-shadow(0 35px 60px rgba(0,0,0,.18));
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:40px;
}

.feature-list div{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  padding:15px 20px;
  background:#f8fbff;
  border-radius:14px;
  transition:.3s;
}

.feature-list div:hover{
  background:#0d6efd;
  color:#fff;
  transform:translateY(-5px);
}

.feature-list i{
  color:#0d6efd;
  transition:.3s;
}

.feature-list div:hover i{
  color:#fff;
}

/*==================================================
PRODUCT ECOSYSTEM
==================================================*/

.ecosystem-products{
  padding:120px 0;
  background:#f8fbff;
}

.ecosystem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  margin-top:60px;
}

.eco-card{
  background:#fff;
  padding:40px;
  text-align:center;
  border-radius:24px;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
  transition:.35s;
  border:1px solid #edf2f7;
}

.eco-card:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 60px rgba(13,110,253,.15);
}

.eco-card img{
  height:180px;
  margin:auto;
  margin-bottom:25px;
  object-fit:contain;
}

.eco-card h3{
  font-size:28px;
  margin-bottom:15px;
  color:#08152d;
}

.eco-card p{
  line-height:1.8;
  color:#667085;
}

/*==================================================
PRODUCT DETAIL
==================================================*/

.product-detail{
  padding:120px 0;
  background:#fff;
}

.product-detail:nth-child(even){
  background:#f8fbff;
}

.detail-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.reverse .detail-wrapper{
  direction:rtl;
}

.reverse .detail-content{
  direction:ltr;
}

.detail-image{
  text-align:center;
}

.detail-image img{
  width:100%;
  max-width:500px;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.15));
  transition:.4s;
}

.detail-image img:hover{
  transform:scale(1.05);
}

.detail-content h2{
  font-size:48px;
  margin:20px 0;
  line-height:1.2;
  color:#08152d;
}

.detail-content p{
  font-size:17px;
  line-height:1.9;
  color:#667085;
  margin-bottom:35px;
}

.detail-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.detail-features div{
  padding:16px 20px;
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:14px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.3s;
}

.detail-features div:hover{
  background:#0d6efd;
  color:#fff;
  transform:translateY(-5px);
}

.detail-features i{
  color:#0d6efd;
  transition:.3s;
}

.detail-features div:hover i{
  color:#fff;
}

/*==================================================
ECOSYSTEM FLOW
==================================================*/

.ecosystem-flow{
  padding:120px 0;
  background:linear-gradient(135deg,#08152d,#0d6efd);
  color:#fff;
}

.ecosystem-flow .section-heading h2,
.ecosystem-flow .section-heading p,
.ecosystem-flow .section-heading span{
  color:#fff;
}

.flow-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  margin-top:70px;
}

.flow-box{
  width:170px;
  height:170px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(20px);
  border-radius:24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transition:.35s;
}

.flow-box:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,.18);
}

.flow-box i{
  font-size:48px;
  margin-bottom:20px;
}

.flow-box h4{
  font-size:20px;
  font-weight:600;
}

.flow-arrow{
  font-size:34px;
  opacity:.75;
}

/*==================================================
SPECIFICATION
==================================================*/

.product-specification{
  padding:120px 0;
  background:#fff;
}

.spec-table{
  margin-top:60px;
  overflow:auto;
}

.spec-table table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.spec-table th{
  width:35%;
  padding:22px;
  background:#f8fbff;
  text-align:left;
  font-size:17px;
  color:#08152d;
  border-bottom:1px solid #edf2f7;
}

.spec-table td{
  padding:22px;
  border-bottom:1px solid #edf2f7;
  color:#667085;
}

.spec-table tr:hover{
  background:#f5f9ff;
}

/*==================================================
PRODUCT GALLERY
==================================================*/

.product-gallery{
  padding:120px 0;
  background:#f8fbff;
}

.gallery-grid{
  display:grid;
  /* स्क्रीन चौड़ाई के हिसाब से कॉलम संख्या अपने आप सेट होगी */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:25px;
  margin-top:60px;
}

.gallery-grid img{
  width:100%;
  /* इमेज के लिए एक निश्चित शेप सुनिश्चित करने के लिए aspect-ratio */
  aspect-ratio: 4 / 3;
  /* किसी भी साइज की इमेज को स्ट्रेच किए बिना क्रॉप करके फिट करने के लिए object-fit */
  object-fit:cover;
  border-radius:20px;
  transition:.4s;
  cursor:pointer;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-grid img:hover{
  transform:scale(1.04);
}

/*==================================================
DOWNLOADS
==================================================*/

.product-downloads{
  padding:120px 0;
  background:#fff;
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:60px;
}

.download-card{
  padding:45px;
  text-align:center;
  border-radius:24px;
  background:#f8fbff;
  transition:.35s;
}

.download-card:hover{
  transform:translateY(-10px);
  background:#0d6efd;
  color:#fff;
}

.download-card i{
  font-size:60px;
  margin-bottom:25px;
  color:#0d6efd;
  transition:.35s;
}

.download-card:hover i{
  color:#fff;
}

.download-card h3{
  margin-bottom:18px;
  font-size:24px;
}

.download-card a{
  display:inline-block;
  margin-top:15px;
  padding:12px 28px;
  background:#08152d;
  color:#fff;
  border-radius:50px;
  font-weight:600;
  transition:.3s;
}

.download-card:hover a{
  background:#fff;
  color:#0d6efd;
}

/*==================================================
FAQ
==================================================*/

.product-faq{
  padding:120px 0;
  background:#f8fbff;
}

.faq-wrapper{
  max-width:900px;
  margin:60px auto 0;
}

.faq-item{
  background:#fff;
  border-radius:18px;
  margin-bottom:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.faq-question{
  width:100%;
  padding:24px 30px;
  background:none;
  border:none;
  text-align:left;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  position:relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:30px;
  font-size:28px;
  color:#0d6efd;
}

.faq-answer{
  padding:0 30px 25px;
  line-height:1.9;
  color:#667085;
}

/*==================================================
CTA
==================================================*/

.product-cta{
  padding:130px 0;
  background:linear-gradient(135deg,#08152d,#0d6efd);
  color:#fff;
}

.cta-box{
  max-width:850px;
  margin:auto;
  text-align:center;
}

.cta-box span{
  display:inline-block;
  padding:10px 22px;
  border-radius:40px;
  background:rgba(255,255,255,.12);
  margin-bottom:25px;
}

.cta-box h2{
  font-size:52px;
  line-height:1.2;
  margin-bottom:25px;
}

.cta-box p{
  font-size:18px;
  line-height:1.9;
  margin-bottom:40px;
  opacity:.92;
}

.product-cta .hero-buttons{
  justify-content:center;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){
  .product-wrapper,
  .detail-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }

  .reverse .detail-wrapper{
    direction:ltr;
  }

  .feature-list,
  .detail-features{
    grid-template-columns:1fr;
  }
}

@media(max-width:991px){
  .banner-content h1{
    font-size:48px;
  }

  .product-left h2,
  .detail-content h2{
    font-size:40px;
  }

  /* .gallery-grid को यहाँ से हटा दिया गया है क्योंकि ग्रिड का आकार अब ऑटो-रिस्पॉन्सिव है */
  .ecosystem-grid,
  .download-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .flow-arrow{
    display:none;
  }

  .flow-wrapper{
    gap:25px;
  }
}

@media(max-width:768px){
  .banner-content h1{
    font-size:36px;
  }

  .banner-content p{
    font-size:16px;
  }

  .product-left h2,
  .detail-content h2{
    font-size:32px;
  }

  /* .gallery-grid को यहाँ से भी हटा दिया गया है */
  .ecosystem-grid,
  .download-grid{
    grid-template-columns:1fr;
  }

  /* .gallery-grid img की fixed height हटा दी गई है ताकि aspect-ratio सही से काम करे */

  .flow-box{
    width:140px;
    height:140px;
  }

  .flow-box i{
    font-size:36px;
  }

  .cta-box h2{
    font-size:34px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .hero-buttons a{
    width:100%;
    max-width:280px;
    text-align:center;
  }
}