body {
    background-color: #040D12;
    color: #fff;
    font-family: Arial, sans-serif;
}
/* Hero Section */
.top-section {
    position: relative;
    width: 100%;
    height: 60vh; /* 50% of viewport height */
    overflow: hidden;
}

/* Image Styling */
.top-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportional */
}

/* Overlay Content */
.top-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
/* Main Wrapper */
.main-wrappers {
    padding-bottom: 80px;
}

/* Main Title */
.main-title {
    color: #5c8374; /* Green */
    font-weight: 600;
}

.title-line {
    width: 250px;
    height: 1px;
    background-color: #183D3D;
    margin: 20px auto 0;
}

/* Section spacing */
.section-space {
    margin-top: 60px;
}

/* Section Heading */
.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-heading h2 {
    margin: 0;
    font-weight: 600;
}

/* Green square */
.green-box {
    width: 18px;
    height: 18px;
    background-color: #5c8374;
    display: inline-block;
}

/* Text */
.section-text {
    color: #ffffff;
    line-height: 1.7;
}

/* Image Cards */
.image-card {
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-card img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;border: none;
    
}
.structure-section {
  background-color: #040D12;
}

.structure-section p {
  color: #93B1A6;
}

.structure-section .card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.on-site-section {
  background-color: #040D12;
  color: #ffffff;
}

/* Title Style */
.title-square {
  width: 14px;
  height: 14px;
  background-color: #5c8374;
}

.on-site-title {
  font-size: 26px;
  font-weight: 600;
  color: #5c8374;
}

/* Function List */
.functions-list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  line-height: 1.8;
}

.functions-list li::before {
  content: "•";
  color: #5c8374;
  font-weight: bold;
  display: inline-block;
  width: 15px;
}

/* Image Cards */
.on-site-image-card {
  background: #040D12;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.on-site-image-card img {
  border-radius: 6px;
  transition: transform 0.4s ease;
}
.on-site-image-card img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;border: none;
   
                border-radius: 20px;
}
.on-site-image-card:hover img {
  transform: scale(1.05);
}


.rated-products {
  background-color: #040D12;
  color: #ffffff;
}

/* Title */
.title-square {
  width: 14px;
  height: 14px;
  background-color: #5c8374;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
}

/* Table */
.product-table th {
  background-color: #5c8374;
  font-weight: 600;
}

.product-table td {
  background-color: #161616;
  vertical-align: middle;
}

/* Product Image */
.product-img {
  max-height: 220px;
  object-fit: contain;
}
.product-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;border: none;
                border-radius: 20px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
}

.feature-list li::before {
  content: "•";
  color: #5c8374;
  font-weight: bold;
  margin-right: 8px;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 20px;
        padding: 0 10px;
    }

    .top-section {
    position: relative;
    width: 100%;
    height: 30vh;
}
    .section-text {
        font-size: 14px;
    }

    .section-heading h2 {
        font-size: 18px;
    }
}
