/* ================= ABOUT HERO ================= */
.about-hero {
  padding: 12vw 0 6vw;
  background: linear-gradient(rgba(11, 60, 111, 0.8), rgba(0, 0, 0, 0.7)),
              url("../images/Slider/banner.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.about-heading {
  font-size: 3.5vw;
  font-weight: 800;
  margin-bottom: 1vw;
}

.about-heading span {
  color: #FFD532;
}

.breadcrumb {
  font-size: 1.2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  margin: 0;
  font-weight: 500;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #FFD532;
}

.breadcrumb .divider {
  color: #FFD532;
  font-size: 1vw;
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

/* ================= PRODUCTS HERO ================= */
.products-hero {
  background: linear-gradient(135deg, #0b3c6f 0%, #052140 100%);
  padding: 8vw 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Slider/banner.webp") center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.products-hero .container {
  position: relative;
  z-index: 1;
}

.products-hero .about-heading {
  font-size: 3.5vw;
  font-weight: 800;
  margin-bottom: 1vw;
  color: #fff;
}

.products-hero .about-heading span {
  color: #FFD532;
}

.products-hero .breadcrumb {
  font-size: 1.2vw;
  color: rgba(255, 255, 255, 0.8);
}

.products-hero .breadcrumb a {
  color: #FFD532;
}

.products-hero .breadcrumb .divider {
  color: rgba(255, 255, 255, 0.6);
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
  padding: 2vw 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle background gradient */
.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 60, 111, 0.04), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 213, 50, 0.06), transparent 40%);
  pointer-events: none;
}

.products-section .container {
  position: relative;
  z-index: 1;
}

/* ================= INTRO SECTION ================= */
.products-intro {
  text-align: center;
  margin-bottom: -2vw;
}

.products-intro .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0.5vw 1.2vw;
  border-radius: 2vw;
  background: rgba(255, 213, 50, 0.15);
  border: 1px solid #FFD532;
  color: #0b3c6f;
  font-size: 0.85vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12vw;
  margin-bottom: 1.5vw;
}

.products-intro .section-tag i {
  color: #FFD532;
  font-size: 1vw;
}

.products-intro h2 {
  font-size: 2.8vw;
  font-weight: 800;
  color: #0b3c6f;
  margin-bottom: 1vw;
  line-height: 1.2;
}

.products-intro h2 span {
  color: #FFD532;
}

.products-intro p {
  font-size: 1.05vw;
  color: #555;
  line-height: 1.7;
  max-width: 50vw;
  margin: 0 auto;
  font-weight: 400;
}

/* ================= PRODUCTS GRID ================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5vw;
  margin: 4vw 0;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  background: #fff;
  border-radius: 1.2vw;
  overflow: hidden;
  box-shadow: 0 1vw 2.5vw rgba(0, 0, 0, 0.08);
  border: 1px solid #002f6c;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: visible;

}

/* Top accent line */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25vw;
  background: linear-gradient(90deg, #FFD532, #0b3c6f);
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-0.8vw);
  box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.15);
  border-color: #002f6c;
}

/* ================= CARD IMAGE ================= */
.product-card-image {
  width: 100%;
  height: 12vw;
  background: linear-gradient(135deg, #002f6c, #0078d7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5vw;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 213, 50, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card-image::before {
  opacity: 1;
}

.product-card-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-icon {
  transform: scale(1.15) rotate(5deg);
}

/* ================= CARD CONTENT ================= */
.product-card-content {
  padding: 2vw;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.3vw;
  font-weight: 700;
  margin-bottom: 1vw;
  color: #0b3c6f;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.product-card:hover .product-card-title {
  color: #000E38;
}

.product-card-desc {
  font-size: 0.95vw;
  color: #555;
  margin-bottom: 1.5vw;
  flex-grow: 1;
  line-height: 1.6;
  font-weight: 400;
}

.product-card-footer {
  display: flex;
  align-items: center;
  color: #0b3c6f;
  font-weight: 600;
  font-size: 0.95vw;
  transition: color 0.3s ease;
  margin-top: auto;
}

.product-card-arrow {
  margin-left: 0.8vw;
  transition: transform 0.3s ease;
  font-size: 0.8vw;
}

.product-card:hover .product-card-arrow {
  transform: translateX(4px);
}

/* ================= CTA SECTION ================= */
.cta-section {
  background: linear-gradient(135deg, #0b3c6f, #052140);
  color: white;
  padding: 4vw;
  margin: 4vw 0 0 0;
  border-radius: 1.5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Slider/banner.webp") center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 60vw;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2vw;
  font-weight: 800;
  margin-bottom: 1.5vw;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.05vw;
  margin-bottom: 2vw;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8vw;
  background: #FFD532;
  color: #0b3c6f;
  padding: 1vw 2.5vw;
  border-radius: 2vw;
  text-decoration: none;
  font-weight: 700;
  font-size: 1vw;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.2);
}

.cta-btn i {
  font-size: 0.9vw;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(3px);
}

/* ================= RESPONSIVE – TABLET (max-width: 991px) ================= */
@media (max-width: 991px) {

  .products-hero {
    padding: 12vw 0;
  }

  .products-hero .about-heading {
    font-size: 7vw;
  }

  .products-hero .breadcrumb {
    font-size: 3.5vw;
  }

  .products-hero .breadcrumb .divider {
    font-size: 3vw;
  }

  .products-section {
    padding: 8vw 0;
  }

  .products-intro {
    margin-bottom: 6vw;
  }

  .products-intro .section-tag {
    font-size: 2vw;
    padding: 1vw 2.5vw;
    margin-bottom: 3vw;
  }

  .products-intro h2 {
    font-size: 5vw;
    margin-bottom: 2vw;
  }

  .products-intro p {
    font-size: 2.2vw;
    max-width: 85vw;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }

  .product-card-image {
    height: 22vw;
    font-size: 6vw;
  }

  .product-card-content {
    padding: 3vw;
  }

  .product-card-title {
    font-size: 2.5vw;
    margin-bottom: 1.5vw;
  }

  .product-card-desc {
    font-size: 2vw;
    margin-bottom: 2vw;
    line-height: 1.7;
  }

  .product-card-footer {
    font-size: 1.8vw;
  }

  .product-card-arrow {
    margin-left: 1.5vw;
    font-size: 1.5vw;
  }

  .cta-section {
    padding: 8vw 4vw;
    margin: 8vw 0 0 0;
    border-radius: 3vw;
  }

  .cta-content {
    max-width: 90vw;
  }

  .cta-content h2 {
    font-size: 5vw;
    margin-bottom: 3vw;
  }

  .cta-content p {
    font-size: 2.2vw;
    margin-bottom: 4vw;
  }

  .cta-btn {
    padding: 2.5vw 5vw;
    border-radius: 5vw;
    font-size: 2vw;
    gap: 1.5vw;
  }

  .cta-btn i {
    font-size: 1.8vw;
  }
}

/* ================= RESPONSIVE – MOBILE (max-width: 576px) ================= */
@media (max-width: 960px) {

  .products-hero {
    padding: 18vw 0 12vw;
  }

  .products-hero .about-heading {
    font-size: 8vw;
  }

  .products-hero .breadcrumb {
    font-size: 3.5vw;
    gap: 1.5vw;
  }

  .products-hero .breadcrumb .divider {
    font-size: 3vw;
  }

  .products-section {
    padding: 2vw 0;
  }

  .products-intro {
    margin-bottom: 8vw;
  }

  .products-intro .section-tag {
    font-size: 3vw;
    padding: 1.5vw 4vw;
    margin-bottom: 4vw;
    gap: 1.5vw;
  }

  .products-intro .section-tag i {
    font-size: 3.5vw;
  }

  .products-intro h2 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }

  .products-intro p {
    font-size: 3.5vw;
    max-width: 95vw;
    line-height: 1.8;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .product-card {
    border-radius: 3vw;
  }

  .product-card::before {
    height: 0.8vw;
  }

  .product-card-image {
    height: 40vw;
    font-size: 8vw;
  }

  .product-card-image{
    height:55vw;
  }


  .product-card-content {
    padding: 5vw;
  }

  .product-card-title {
    font-size: 4.5vw;
    margin-bottom: 2vw;
  }

  .product-card-desc {
    font-size: 3.5vw;
    margin-bottom: 3vw;
    line-height: 1.8;
  }

  .product-card-footer {
    font-size: 3.5vw;
  }

  .product-card-arrow {
    margin-left: 1vw;
    font-size: 3vw;
  }

  .cta-section {
    padding: 10vw 6vw;
    margin: 10vw 0 0 0;
    border-radius: 5vw;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 6vw;
    margin-bottom: 4vw;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 3.5vw;
    margin-bottom: 6vw;
    line-height: 1.8;
  }

  .cta-btn {
    padding: 3vw 6vw;
    border-radius: 8vw;
    font-size: 3.5vw;
    gap: 2vw;
    width: 100%;
    justify-content: center;
  }

  .cta-btn i {
    font-size: 3vw;
  }

  .cta-btn:hover i {
    transform: translateX(5px);
  }


  
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }

/* ================= PRINT STYLES ================= */
@media print {
  .products-hero,
  .cta-section {
    page-break-inside: avoid;
  }

  .product-card {
    page-break-inside: avoid;
  }
}

.product-card-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(3,17,38,0.75),
    rgba(3,17,38,0.1)
  );
}

.product-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.product-card:hover img{
  transform:scale(1.08);
}

.product-card-content{
  padding:1.8vw;
}



.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2vw;
}

.product-card{
  position:relative;
  overflow:hidden;
  border-radius:1.6vw;
  background:#fff;
  text-decoration:none;
  transition:0.45s ease;
  box-shadow:0 0.7vw 2vw rgba(0,0,0,0.08);
  border:0.1vw solid #002f6c;
}

.product-card:hover{
  transform:translateY(-0.5vw);
  box-shadow:0 1.5vw 3vw rgba(0,0,0,0.14);
}

.product-card-image{
  position:relative;
  height:16vw;
  overflow:hidden;
}

.product-card-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(3,17,38,0.75),
    rgba(3,17,38,0.1)
  );
}

.product-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.product-card:hover img{
  transform:scale(1.08);
}

.product-card-content{
  padding:1.8vw;
}


.product-card-title{
  font-size:1.5vw;
  font-weight:800;
  color:#0b3c6f;
  margin-bottom:0.8vw;
}

.product-card-desc{
  font-size:0.95vw;
  line-height:1.8;
  color:#555;
  margin-bottom:1.5vw;
}

.product-card-footer{
  display:flex;
  align-items:center;
  /* justify-content:space-between; */
  gap: 1vw;
  color:#0b3c6f;
  font-weight:700;
  padding-top:1vw;
  border-top:0.08vw solid rgba(0,0,0,0.08);
}
@media(max-width:960px){
  .about-hero {
    padding: 28vw 0 14vw;
  }

  .about-heading {
    font-size: 9vw;
    line-height: 1.2;
    margin-bottom: 3vw;
  }

  .breadcrumb {
    font-size: 3.8vw;
    gap: 2vw;
  }

  .breadcrumb .divider {
    font-size: 3vw;
  }
  .products-grid{
    grid-template-columns:1fr;
    gap:6vw;
  }

  .product-card{
    border-radius:5vw;
  }

  .product-card-image{
    height:55vw;
  }

  .product-card-content{
    padding:5vw;
  }

  .product-badge{
    font-size:2.5vw;
    padding:1.2vw 3vw;
  }

  .product-card-title{
    font-size:5vw;
  }

  .product-card-desc{
    font-size:3.5vw;
  }

  .product-card-footer{
    font-size:3.5vw;
    padding-top:4vw;
  }
  
}