/* Reset & Base */
/* Reset & Base */
/* about css */
html {
    overflow-x: hidden;
}
* {

    font-family: 'Poppins', Arial, sans-serif; /* Set global font-family */
  }

  body {
    background-color: #f8f9fd;
  }

  .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
  }

  /* Hero Section */
  .hero-banner {
    position: relative;
    height: 65vh;
    background: url('../images/about-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(0, 163, 200, 0.7), rgba(0, 82, 122, 0.7)); */
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-top: 90px;
}

  .hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .hero-btn {
    background-color: #fff;
    color: #00a3c8;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  /* Slide-in animation for hero content */
  .slide-in {
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1s ease forwards;
  }

  .slide-in:nth-child(1) { animation-delay: 0.3s; }
  .slide-in:nth-child(2) { animation-delay: 0.6s; }
  .slide-in:nth-child(3) { animation-delay: 0.9s; }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Section Styling */
  .section-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* margin-bottom: 80px; */
    gap: 40px;
    background-color: #fff;
    border-radius: 15px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    
    transition: transform 0.3s ease;
}

  

  .reverse {
    flex-direction: row-reverse;
  }

  .section-image,
  .section-text {
    width: 48%;
  }

  .section-image img {
    transition: transform 0.3s ease;
  }

  

  .section-text h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #00527a;
    position: relative;
    display: inline-block;
  }

  .section-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 4px;
    background-color: #00a3c8;
    border-radius: 2px;
  }

  .section-text p {
    line-height: 1.8;
    font-size: 16px;
    color: #555;
    font-family: 'Atlassian Sans', 'Poppins', Arial, sans-serif; /* Added fallback */
  }

  .section-text strong {
    color: #00527a;
    font-size: 18px;
    display: block;
    margin-top: 15px;
  }

  .full-img {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Bottom Images */
  .bottom-images {
    width: 100%;
    margin-top: 60px;
    padding: 0 20px;
  }

  .full-image {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .full-image h2 {
    font-size: 48px;
    font-weight: 800;
    color: #00527a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .zoom-img {
    transition: transform 0.5s ease;
  }

  

  /* Fade-in animation for sections */
  .fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .fade-in-section.visible {
    opacity: 1;
    
  }

  @media (max-width: 768px) {
    .section-image,
    .section-text {
      width: 100%;
    }

    .section-flex,
    .reverse {
      flex-direction: column;
      padding: 20px;
    }

    .hero-content h1 {
      font-size: 36px;
    }

    .hero-content p {
      font-size: 18px;
    }

    .hero-btn {
      padding: 12px 30px;
      font-size: 16px;
    }

    .section-text h2 {
      font-size: 28px;
    }

    .full-image h2 {
      font-size: 36px;
    }
  }
/* about css end */


/* index css start */

/* index css end */

    

    /* product css */
      * {
            font-family: 'Poppins', Arial, sans-serif; /* Set global font-family */
        }
        body {
            background-color: #f5f5f5;
            margin: 0;
        }

        .banner {
    height: 550px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 47px;
    color: #333;
    margin-bottom: 30px;
    background-image: url('../images/b15.jpg');
    background-size: cover;
    background-position: center;
    text-transform: uppercase;
    FONT-WEIGHT: 800;
}

        .content {
            padding: 0 50px;
            margin-bottom: 30px;
        }

        .content h1 {
    font-size: 37px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    margin-left: 34px;
}

        .content h1::before,
        .content h1::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, #1a3c8b, transparent);
            transition: width 0.3s ease;
        }

        .content h1::before {
            left: -50px;
        }

        .content h1::after {
            right: -50px;
            background: linear-gradient(to left, #1a3c8b, transparent);
        }

        .content h1:hover::before,
        .content h1::after:hover {
            width: 60px;
        }

        .content p {
    font-size: 18px;
    color: black;
    line-height: 1.6;
}

        .products {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns per row */
            gap: 30px;
            padding: 0 50px 50px 50px;
        }

        .product-card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: scale(1.01);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .product-card::before, .product-card::after {
    content: '';
    position: absolute;
    height: 4px;
    background-color: #6c280f;
    transition: width 0.4s ease;
    width: 0;
}

        .product-card::before {
            top: 0;
            left: 0;
        }

        .product-card::after {
            bottom: 0;
            right: 0;
        }

        .product-card:hover::before,
        .product-card:hover::after {
            width: 100%;
        }

        .product-card img {
    width: 100%;
    max-height: 283px;
    object-fit: contain;
    /* border-bottom: 1px solid #ddd; */
    padding: 10px;
    box-sizing: border-box;
    padding: 20px;
    cursor: pointer;
    margin-top: 26px;
}

.product-images {
    margin-top: 90px;
}

        .product-card h3 {
    font-size: 19px;
    margin: -9px 0;
    color: #333;
    font-weight: 800;
}
        .product-card p {
    font-size: 17px;
    color: #733825;
    padding: 0 15px;
    /* margin-bottom: -86px; */
    font-weight: 800;
}

        .product-card button {
    background-color: #6c280f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    font-weight: bold;
}

        .product-card button:hover {
    background-color: #1a1b1d;
}

        .paragraph p {
    font-size: 17px;
    color: black;
    font-weight: 500;
}

.product-card {
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
}

/* When user hovers over the product card */
.product-card:hover p {
    color: black; /* Change to any color you like */
}

.product-card:hover button {
    background-color: black; /* Button background on hover */
    color: #fff;               /* Button text color on hover */
    border: none;
    transition: 0.3s;
}
.margin {
    margin-top: 60px;
    margin-bottom: 66px;
}

.margin-bio {
    margin-top: 34px;
    margin-bottom: 19px;
}
/* Optional: Basic button styling */
/* Responsive styles */
@media (max-width: 768px) {
    .product-card {
        width: 90%;
    }
    .search-form button {
    font-size: 12px;
    padding: 6px;
    margin-right: 183px;
}
}

@media (max-width: 480px) {
    .products {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 30px; */
    padding: 10PX;
    DISPLAY: block;
    /* MARGIN-BOTTOM: 10PX; */
}

    .product-card {
    width: 95%;
    MARGIN-BOTTOM: 16PX;
}

    .product-card img {
        height: 180px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card .paragraph p {
        font-size: 0.9rem;
    }
    .banner {
    height: 420px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #333;
    margin-bottom: 30px;
    background-image: url('../images/banner3.jpg');
    background-size: cover;
    background-position: center;
    text-transform: uppercase;
    FONT-WEIGHT: 800;
    
}
.search-form button {
    font-size: 12px;
    padding: 6px;
    margin-right: 183px;
}
}

    /* end */