 .containerss {
            max-width: 1200px;
            margin: auto;
            padding: 30px 20px;
        }

        .four-panel-section {
            display: flex;
            flex-wrap: wrap;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
            padding: 30px;
            gap: 30px;
        }

        .image-container {
            flex: 1 1 320px;
            text-align: center;
        }

        .slider {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .slider img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 12px;
            transition: all 0.5s ease;
        }

        .thumbnails {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .thumbnails img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .thumbnails img:hover,
        .thumbnails img.active {
            border-color: #164c81;
            transform: scale(1.05);
        }

        .content-container {
            flex: 2 1 500px;
            padding-top: 10px;
        }

        .content-container h2 {

            color: #3e6e50;
            margin-bottom: 10px;
        }

        .content-container h6 {
            color: #000;
            margin-bottom: 15px;

        }

        .content-container p {
            margin-bottom: 15px;

        }

        .content-container ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-top: 10px;
        }

        .content-container ul li {
            margin-bottom: 8px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .four-panel-section {
                flex-direction: column;
                padding: 25px;
            }

            .slider img {
                max-height: 300px;
            }
        }

        @media (max-width: 576px) {
          
            .thumbnails img {
                width: 55px;
                height: 55px;
            }
        }

        .loop-types-section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: auto;
        }

        .loop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px 20px;
            justify-items: center;
            align-items: center;
        }

        .loop-item {
            text-align: center;
            transition: transform 0.3s ease;

        }

        .loop-item:hover {
            transform: scale(1.05);
        }

        .loop-item img {
            width: 150px;
            height: auto;
            object-fit: contain;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .loop-item h4 {
            font-size: 1rem;
            color: #001f3f;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .loop-item img {
                width: 120px;
            }

            .loop-item h4 {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .loop-types-section {
                padding: 30px 10px;
            }

            .loop-item img {
                width: 110px;
            }

           
        }
         .why-choose-section {
      background-color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .why-choose-section h2 {

      color: #001f3f;
      margin-bottom: 20px;
    }

    .why-choose-section p {
      max-width:1200px;
      margin: 0 auto 40px;

      color: #474646;
      line-height: 1.6;
    }

    .sample-btn {
      display: inline-block;
      text-decoration: none;
      padding: 14px 28px;
      background-color: #3e6e50;
      color: #fff;
      text-transform: uppercase;
      font-weight: bold;
      border-radius: 30px;
      transition: background-color 0.3s ease;
    }

    .sample-btn:hover {
      background-color: #303030;
      color: #fff;

    }

    @media (max-width: 576px) {
     

      .why-choose-section p {
       
        padding: 0 10px;
      }

      .sample-btn {
       
        padding: 12px 24px;
      }
    }