/* product para  */

/* Product – Equipment & Supplies Section */
.product-overview {
  margin: 70px auto;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--theme-color-light);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

/* Text Content */
.po-content .po-tag {
display: inline-block;
  font-size: 20px;
  letter-spacing: 1px;
  background:var(--ssc-orange-color);
  color: var(--theme-color-light);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.po-content h2 {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 40px;
}

.po-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  
}

.po-btn {
  display: inline-block;
  background:var(--ssc-orange-color);
  color: var(--theme-color-light);
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.po-btn:hover {
  background:var(--ssc-orange-color);
  color: var(--theme-color-light);
}

/* Graphic / Decoration */
.po-graphic {
  position: relative;
}

/* Animation on load */
.product-overview,
.po-circle,
.po-lines {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease forwards;
}

.po-circle { animation-delay: 0.2s; }
.po-lines { animation-delay: 0.35s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .product-overview {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }

  .po-graphic {
    display: none;
  }

  .po-content h2 {
    font-size: 26px;
    line-height: 40px;
  }
}

html body div.page-wrapper section.product-overview.container div.po-content p{
    width: 715px;
}

/* os4 feature section */

/* Section Wrapper */
.os4-section {
    position: relative;
    padding: 80px 20px;
    background: var(--theme-color-gray2); /* UPDATED */
    overflow: hidden;
}

/* Decorative Gradient Circles (Softened for beige background) */
.os4-shape1 {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ssc-color1), #0a6cc8);
    opacity: 0.18; /* Slightly stronger to contrast beige */
    top: -60px;
    right: -60px;
}

.os4-shape2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 3px solid var(--ssc-color1);
    border-radius: 50%;
    opacity: 0.12; /* Soft outline */
    bottom: -40px;
    left: -40px;
}

/* Layout */
.os4-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.os4-text {
    font-size: 17px;
    color: var(--ssc-light-color); /* Softer on beige */
    line-height: 1.7;
    margin-bottom: 18px;
}

.os4-link {
    /* color: #0a6cc8; */
    font-weight: 600;
}


/* Right Card & Buttons */
.os4-card {
    padding: 30px;
    background: var(--theme-color-light);
    border-radius: 18px;
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: floatCard 4s ease-in-out infinite;
}

.os4-card h3 {
    font-size: 22px;
    color: var(--ssc-color1);
    margin-bottom: 20px;
}

/* Buttons */
.os4-btn {
    display: block;
    background:var(--ssc-orange-color);
    color: var(--theme-color-light);
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.os4-btn:hover {
    background:var(--ssc-orange-color);
    transform: translateY(-3px);
    color: var(--theme-color-light);
}

/* Floating card animation */
@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Scroll fade effects */

.os4-content {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out;
}

.os4-content.fade-in {
    opacity: 1;
    transform: translateY(0px);
}

/* for card  */

.os4-card {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out;
}

.os4-card.fade-in {
    opacity: 1;
    transform: translateY(0px);
    animation: floatCard 3s ease-in-out infinite;
}


/* Responsive */
@media (max-width: 900px) {
    .os4-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .os4-card {
        margin-top: 25px;
    }
}

/* html body div.page-wrapper section.os4-section div.os4-container div.os4-content p.os4-text a.os4-link,
html body div.page-wrapper section.os4-section div.os4-container div.os4-content p.os4-text a.os4-link:hover {
  color:#0a6cc8;
} */
p a:not(.button):not(.btn):hover{
    text-decoration: none;
}

p a:not(.button):not(.btn):focus {
  text-decoration: none;
}
/* products category  */

.products-grid {
    padding: 80px 0;
}



.pg-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.pg-card {
    position: relative;
    background: var(--theme-color-light);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    transition: all .35s ease;
    border: 1px solid rgba(5, 51, 96, 0.15);
    overflow: hidden;
}

.pg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 65px rgba(5, 51, 96, 0.15);
}

/* angled accent */
.pg-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--ssc-color1), #355a84);
    opacity: 0.16;
    transform: rotate(25deg);
    border-radius: 20px;
}

/* floating label */
.pg-top-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background:var(--ssc-orange-color);
    color: var(--theme-color-light);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: .5px;
}


/* icon box */
.pg-icon {
    width: 80px;
  height: 80px;
    background: rgba(5, 51, 96, 0.07);
    padding: 0;                 
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;              
    align-items: center;
    justify-content: center;
}

/* bootstrap icon fit */
.pg-icon i {
    line-height: 1;
}


/* text */
.pg-card h3 {
    color: var(--ssc-color1);
    margin-bottom: 10px;
    font-size: 22px;
}

.pg-card p {
    line-height: 1.7;
    margin-bottom: 25px;
}

/* button */
.pg-btn {
    display: inline-block;   /* prevents full-width stretching */
    width: 130px;             
    padding: 10px 22px;      
    background:var(--ssc-orange-color);
    color: var(--theme-color-light);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;     /* keeps text on one line */
}


.pg-btn:hover {
    background:var(--ssc-orange-color);
  color: var(--theme-color-light);
}

/* responsive */
@media(max-width: 900px) {
    .pg-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* animation */

.pg-card {
    opacity: 0;
    transform: translateY(25px);
}

.pg-card.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: .6s ease;
}

/* for title  */

/* HEADING AREA */
.pc-heading-wrapper {
    text-align: center;
    margin-bottom: 45px;
}

.pc-main-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pc-subtitle {
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto;
}

/* for same alignment of button */

.pg-card {
    display: flex;
    flex-direction: column;
}

.pg-card p {
    flex-grow: 1;   /* pushes button down */
}


/* for the gsa logo */

.gsa-section-bg {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Image used as background */
.gsa-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* behaves like background-size: cover */
    z-index: 1;
}

/* Overlay */
.gsa-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Content */
.gsa-content {
    position: relative;
    text-align: center;
    color: var(--theme-color-light);
    max-width: 900px;
    z-index: 3;
}

/* Heading */
.gsa-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--theme-color-light);
}

/* Logo box */
.gsa-logo-box {
    display: inline-block;
    padding: 20px 20px;
    background: var(--theme-color-light);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease-in-out;
}

.gsa-logo-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 28px rgba(0, 0, 0, 0.35);
}

.gsa-logo-box img {
    width: 200px;
}

@media (max-width: 600px) {
    .gsa-content h2 {
        font-size: 20px;
        line-height: 40px;
    }
    .gsa-logo-box img {
        width: 150px;
    }
}

/* image product categories  */

/* Section background */
.category-showcase {
    padding: 60px 0;
    background-color: var(--theme-color-light);
}

.category-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Grid layout */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cat-card {
    background: var(--theme-color-light);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
    transition: 0.3s ease;
    height: 100%;
}

.cat-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* FIX: Label always full width */
.cat-label {
    width: 100%;
    text-align: center;
    font-weight: 700;
    padding: 18px 15px;
    font-size: 18px;
    color: var(--theme-color-light);
    line-height: 1.3;
    min-height: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Colors */
.pink { background: #ff73b5; }
.green { background: #9ff29d; color: var(--theme-color-black); }
.red { background: #e84747; }
.blue { background: #74a9ff; }

/* Responsive */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}


/* 3D hover tilt effect */
.cat-card:hover {
    transform: perspective(900px) rotateX(6deg) rotateY(-6deg) scale(1.04);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}


/* Improve mobile handling */
@media (max-width: 768px) {
    .cat-card:hover {
        transform: scale(1.03); /* Remove heavy tilt for small screens */
    }
}

/* for one new service card  */

.products-equipment-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--ssc-color1), #1c2541);
    color: var(--theme-color-light);
}

.products-wrapper {
    max-width: 1200px;
   margin: 0 auto;
}

/* Header */
.products-header {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 20px;
    text-align: left;
    margin-bottom: 60px;
}


.products-header img {
    width: 70px;
}

.products-header h2 {
    font-size: 40px;
    margin: 0;
    color: var(--theme-color-light);
}

.products-header p {
    opacity: 0.85;
      color: var(--theme-color-light);
}

/* Content */
.products-content {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
  max-width: 955px;
  margin: 0 auto 60px auto;
}

.products-column {
    text-align: left;
}


.products-column h3 {
    font-size: 25px;
    margin-bottom: 15px;
    color: var(--ssc-color1);
}

.products-column ul {
    list-style: none;
    padding: 0;
}

.products-column li {
    font-size: 18px;
  list-style: disc;
  margin: 15px;
}

/* Badges */
.products-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.products-badges span {
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    font-size: 15px;
}

/* Description */
.products-desc {
    max-width: 850px;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
      color: var(--theme-color-light);
}

/* CTA */
.products-cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    background:var(--ssc-orange-color);
    color: var(--theme-color-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.products-cta:hover {
    background:var(--ssc-orange-color);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .products-header {
        flex-direction: column;
        text-align: center;
    }

    .products-content {
        grid-template-columns: 1fr;
    }
}

.products-badges,
.products-desc,
.cta {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.products-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* for stats */

.contract-stats {
    background: var(--theme-color-light);
    padding: 70px 20px;
    margin-top: -40px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

.stat-box {
    background: var(--theme-color-gray2);
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    border-bottom: 4px solid var(--ssc-orange-color);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--ssc-color1);
}

/* Responsive */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* product page new  */

/* FORCE horizontal layout */
.pg-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

/* Image column */
.pg-card .pg-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Image sizing */
.pg-card .pg-image img {
    width: 200px !important;
    height: auto !important;
}

/* Text column */
.pg-card .pg-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

@media (max-width: 768px) {
    .pg-card {
        flex-direction: column !important;
        text-align: center !important;
    }

    .pg-card .pg-content {
        align-items: center !important;
        text-align: center !important;
    }
}


/* for banner */

.hero-contract-strip {
border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
}

.contract-label {
    font-size: 20px;
  font-weight: 600;
  color: var(--ssc-color1);
  white-space: nowrap;
}

.contract-logos {
    display: flex;
    align-items: center;
}

.contract-logos img {
    border-radius: 6px;
    height: 50px !important;
  width: auto;
  padding: 4px 8px;
}

@media (max-width: 1750px) {

    .hero-contract-strip {
        gap: 12px !important;
        margin: 0 auto !important;
        text-align: center !important;
        
    }

    .hero-contract-strip .contract-logos {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
    }

/*    .hero-contract-strip .contract-logos img {
        height: 114px !important;
        max-width: 100% !important;
        padding: 4px 6px !important;
    }*/
}


@media (max-width: 1023px) {

    .hero-contract-strip {
        flex-direction: column !important;
        gap: 12px !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 450px;
        padding: 0;
    }

    .hero-contract-strip .contract-logos {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
    }

/*    .hero-contract-strip .contract-logos img {
        height: 95px !important;
        max-width: 100% !important;
        padding: 4px 6px !important;
    }*/
}


@media (max-width: 768px) {

    .hero-contract-strip {
        flex-direction: column !important;
        gap: 12px !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 400px;
    }

    .hero-contract-strip .contract-logos {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-contract-strip .contract-logos img {
        height: 53px !important;
        max-width: 100% !important;
        padding: 4px 6px !important;
    }
}


/* new prod equi */

/* CARD STYLE */
.card {
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* BADGES */
.products-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.products-badges span {
  background: var(--ssc-color1);
  color: var(--theme-color-light);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}


.supporting-card {
  display: flex;
  flex-direction: column;
}

.supporting-card .products-badges {
  margin-top: auto;
}

/* new one section */


html body div.page-wrapper section.os4-section div.os4-container div.po-content div.card ul li{
    list-style: circle;
    font-size: 20px;
  margin: 15px;
}

html body div.page-wrapper section.os4-section div.os4-container div.po-content div.card ul li::marker{
    color: var(--ssc-line); 
    font-size: 1.1em;
}
html body div.page-wrapper section.os4-section div.os4-container div.po-content div.card h3{
    color: var(--ssc-color1);
}

/* for gsa logo alignment  */

.gsa-content {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;          
}
