@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --overlay-z: 2000; /* big z-index so it covers everything */
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--overlay-z);
}

.stairs-wrap {
  height: 100%;
  width: 100%;
  display: flex;
}

.stair {
  height: 100%;
  width: 20%;
  background: #000; /* black stairs, change if needed */
}





/*  header for pages */


        /* Hero */
        .page-hero {
            position: relative;
            overflow: hidden;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1A2D45 0%, #1a1a1a 100%);
        }
     .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(#00afef20 1px, transparent 1px),
                linear-gradient(90deg, #98989820 1px, transparent 1px);
            background-size: 100px 100px;
        }

     
        .hero-text h1 {
            font-size: clamp(4rem, 12vw, 5rem);
            font-weight: 600;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, #00afef 0%, #f5f5f5 50%, #00afef 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 3s ease infinite;
        }

        @keyframes shine {
            to { background-position: 200% center; }
        }

        .hero-text p {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.9rem;
            letter-spacing: 0.4em;
            color: #00afef;
        }
/* pages */

.banner-about {
  height: 50vh;
  background-image: url(images/aboout-banner.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center; /* vertically center text */
}

.banner-about::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #00000080;
  z-index: 1; /* This will now be below the text */
}

.banner-about h1 {
  position: relative;
  z-index: 2; /* This places the h1 above the overlay */
}


/* details */

.details{
  padding: 20px;
  border: 1px solid #222;
  border-radius: 15px;
}

 

/* products  *//* GFRC/FRP Benches (2nd item) */

.products-section {
    padding: 120px 0;
    background: #ffffff;
}

/* ============================================
   CATEGORY TAGS / FILTERS
   ============================================ */

.category-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tag {
    padding: 10px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: #ffffff;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.tag:hover,
.tag.active {
    background: #000;
    color: #fff;
    border-color: #000;
    text-decoration: none;
}

/* ============================================
   PRODUCT CARD
   ============================================ */

.product-card-1 {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-image1 {
    width: 100%;
    height: 50vh;
    
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background-size: cover;
    background-position: center;
}

.card-image1::before {
    content: '';
    position: absolute;
    inset: 0;
    
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product-card-1:hover .card-image1::before {
    opacity: 1;
}

.product-card-1:hover .card-image1 {
    transform: scale(1.02);
}

.card-content{
  padding: 0 1em 1em 1em;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.card-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #222;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #00afef;
    text-decoration: none;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.product-card-1:hover .read-more::after {
    transform: translateX(6px);
}

/* ============================================
   PRODUCT IMAGE BACKGROUNDS
   ============================================ */

.col-lg-3:nth-child(1) .card-image1 {
    background-image: url(images/gfrc-railings.jpg);
}

.col-lg-3:nth-child(2) .card-image1 {
    background-image: url(images/benches/benches-gallery\ \(8\).jpg);
}

.col-lg-3:nth-child(3) .card-image1 {
    background-image: url(images/gfrc-cladding.jpg);
}

.col-lg-3:nth-child(4) .card-image1 {
    background-image: url(images/gfrc-columns-1.jpeg);
}

.col-lg-3:nth-child(5) .card-image1 {
    background-image: url(images/cornice.jpeg);
}

.col-lg-3:nth-child(6) .card-image1 {
    background-image: url(images/gfrc-domes.webp);
}

.col-lg-3:nth-child(7) .card-image1 {
    background-image: url(images/fins.jpg);
}

.col-lg-3:nth-child(8) .card-image1 {
    background-image: url(images/gothic.jpg);
}

.col-lg-3:nth-child(9) .card-image1 {
    background-image: url(images/gfrc-jalis.jpg);
}

.col-lg-3:nth-child(10) .card-image1 {
    background-image: url(images/gfrc-panels.jpg);
}

.col-lg-3:nth-child(11) .card-image1 {
    background-image: url(images/planters/planter-gallery\ \(7\).jpg);
}

.col-lg-3:nth-child(12) .card-image1 {
    background-image: url(images/screens-jali.jpg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  

    .products-section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 60vh;
    }



    .products-section {
        padding: 60px 0;
    }

    .card-image1 {
        height: 300px !important;
    }

    .category-tags {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 50vh;
    }

    .products-section {
        padding: 40px 0;
    }

    .card-image1 {
        height: 50vh !important;
        margin-bottom: 20px;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.85rem;
        min-height: auto;
    }

    .tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/* Note: You still need to define images for the 1st, 12th (Screens), and 13th (GRC etc) items if desired. */

/*  boiler plate  */

#banner{
  height: 50vh !important;
  background-image: url();
  overflow: hidden;
  background-color: rgb(39, 39, 39);
  position: relative;
}
#banner h1, .breadcrumb{
  z-index: 2;
  color: white;
  position: relative;
}
#banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0; /* add top for full coverage */
  height: 100%;
  width: 100%;
  background: #00000080;
  z-index: 1; /* overlay below text */
}


/* projects */

/* .projects{
  transition: all 0.3s ease-in-out;
    background: #f2f2f2;
  border-radius: 20px;

  padding: 20px;
}

.projects img{
  border-radius: 10px;
}

.projects:hover{
  background: #d4d4d4;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
} */



.sectors, .sectors-1 {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.5);
  transition: transform 1s ease-out;
  width: 100%;
  border-radius: 15px;
}


/*  planter section scrolll animation  */



        .planter-section {
            height: 250vh;
            position: relative;
            background: #000;
        }

        .planters-container {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .text-content {
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 10;
            width: 90%;
            max-width: 800px;
        }

        .text-content h1 {
          color: #fff;
            opacity: 0;
        }

        .text-content p {
          color: #fff;
            opacity: 0;
        }

        .cta-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            width: 90%;
            max-width: 600px;
            opacity: 0;            color: white;

        }

  

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: #2c3e50;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
        }

  
        .planters-wrapper {
            position: relative;
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
        }

        .planter-item {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            max-width: 90vw;
            transition: none;
        }

        .planter-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 768px) {
            .planter-item {
                width: 110px;
            }
            .text-content {
                top: 8%;
            }
            .text-content h1 {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }
            .text-content p {
                font-size: 0.9rem;
            }
            .cta-content h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }


/* ============================================
   BLOG CARDS - MINIMAL & MODERN
   ============================================ */

/* Section */
.blog-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Card Base */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}


/* Images */
.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card img {
    height: 400px;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.875rem;
    color: #00afef;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.featured-card .blog-title {
    font-size: 1.75rem;
}

.blog-card:hover .blog-title {
    color: #00afef;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tags .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background-color: #f0f4f8;
    color: #4a5568;
    transition: all 0.3s ease;
}

.blog-tags .badge:hover {
    background-color: #00afef;
    color: white;
    transform: translateY(-2px);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
 width: 45px !important;
  height: 45px;
  background: #000!important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 42%;
}



#blogCarousel:hover .carousel-control-prev,
#blogCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #0066cc;
}

/* Responsive */
@media (max-width: 991px) {
    .featured-card img { height: 320px; }
    .blog-card img { height: 220px; }
    .blog-title { font-size: 1.2rem; }
    .featured-card .blog-title { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    .blog-section { padding: 60px 0; }
    .blog-section h2 { font-size: 1.75rem; }
    .featured-card img { height: 280px; }
    .blog-card img { height: 200px; }
    .blog-content { padding: 18px; }
    .carousel-control-prev,
    .carousel-control-next { opacity: 1; }
}
.blog-swiper-section {
  background-color: #f8f9fa;
}

.blog-swiper-section .swiper-slide {
  display: flex;
  height: auto;
}

.blog-swiper-section .blogSwiper {
  padding-bottom: 50px;
}

.blog-swiper-section .blog-swiper-prev,
.blog-swiper-section .blog-swiper-next {
  color: #000;
}

.blog-swiper-section .blog-swiper-pagination .swiper-pagination-bullet {
  background: #00afef;
  opacity: 0.7;
}

.blog-swiper-section .blog-swiper-pagination .swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
}
