:root {
            --green-primary: #3da764;
            --green-light: #4ec276;
            --green-dark: #2d8a4e;
            --navy-dark: #0f1419;
            --navy-medium: #161d24;
            --navy-light: #1e2730;
            --text-white: #fafafa;
            --text-muted: #8b9cad;
            --border-color: #2a3440;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
    /* Features Section */
        .features {
            padding: 22px 0;
            background: radial-gradient(circle at 20% 50%, rgba(61, 167, 100, 0.03) 0%, transparent 50%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background: var(--navy-medium);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: var(--green-primary);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(61, 167, 100, 0.15);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(61, 167, 100, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: background 0.3s;
        }

        .feature-card:hover .feature-icon {
            background: var(--green-primary);
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--green-primary);
            transition: fill 0.3s;
        }

        .feature-card:hover .feature-icon svg {
            fill: white;
        }

        .feature-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: white;
        }

        .feature-description {
            color: #ffffff;
            font-size: 1.9rem;
        }

        /* Industries Section */
        .industries {
            padding: 80px 0;
            background: var(--navy-light);
        }

        .section-subtitle {
            color: var(--green-primary);
            font-size: 2.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin-bottom: 50px;
            color: white;
        }

        .section-title span {
            color: #ffffff;
        }

        .industry-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            transition: background 0.3s;
            cursor: pointer;
        }

        .industry-item:hover {
            background: var(--navy-medium);
        }

        .industry-number {
            color: #ffffff;
            font-size: 1.9rem;
            width: 30px;
        }

        .industry-icon {
            width: 50px;
            height: 50px;
            background: rgba(61, 167, 100, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .industry-item:hover .industry-icon {
            background: var(--green-primary);
        }

        .industry-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--green-primary);
            transition: fill 0.3s;
        }

        .industry-item:hover .industry-icon svg {
            fill: white;
        }

        .industry-title {
            flex: 1;
            font-size: 3.1rem;
            font-weight: 600;
            color: white;
        }

        .industry-arrow {
            color: #ffffff;
            transition: color 0.3s;
            font-size: 30px;
        }

        .industry-item:hover .industry-arrow {
            color: var(--green-primary);
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background: var(--navy-dark);
            background-image: 
                linear-gradient(rgba(42, 52, 64, 0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(42, 52, 64, 0.3) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .product-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover img {
            transform: scale(1.1);
        }

        .product-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--navy-dark) 0%, rgba(15, 20, 25, 0.2) 50%, transparent 100%);
        }

        .product-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-radius: 12px;
            transition: border-color 0.3s;
        }

        .product-card:hover::after {
            border-color: var(--green-primary);
        }

        .product-title {
            position: absolute;
            bottom: 20px;
            left: 20px;
            font-size: 2.2rem;
            font-weight: 600;
            z-index: 10;
            color: #ffff;
        }

        .products-cta {
            text-align: center;
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: rgba(61, 167, 100, 0.05);
            text-align: center;
        }

        .cta-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--green-primary), var(--green-light));
            margin: 0 auto 25px;
        }

        .cta-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin-bottom: 20px;
        }

        .cta-description {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-ghost {
            display: inline-block;
            padding: 12px 30px;
            border: 1px solid var(--border-color);
            color: var(--text-white);
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .btn-ghost:hover {
            border-color: var(--green-primary);
            color: var(--green-primary);
        }


        .products-cta{
        text-align:center;
        margin-top:40px;
        }

        .btn-primary{
        display:inline-block;
        padding:14px 32px;
        background:#3da764;; /* purple like screenshot */
        color:#fff;
        text-decoration:none;
        font-weight:bold;
        border-radius:6px;
        transition:0.3s ease;
        font-size: 20px;
        }

        .btn-primary:hover{
        background:#4b32d4;
        transform:translateY(-2px);
        }


        
/*quote button*/
.quote-btn-wrapper {
  text-align: center;
  margin: 30px 0;
}

.quote-btn-box {
  display: inline-block;
}

/* Button Style */
.quote-btn {
  padding: 14px 32px;
  background: #39a55f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hover Effect */
.quote-btn:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Responsive *
@media (max-width: 768px) {
  .quote-btn {
    padding: 12px 25px;
    font-size: 14px;
  }


}*/
@media (max-width: 768px) {
.quote-btn-box {
    display: none;
}
}


.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /*padding-bottom: 150px; /* Adjust to accommodate the floating icons */
  }
  
  /* Floating icons container styles */
   .floating-icons-container {
    position: fixed;
    right: 28px;
    bottom: 85px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.floating-icon {
    width: 55px;
    height: 55px;
    background: #25d366; /* WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.1);
}
  
  /* Text styles for icons */
  .icon-text {
    color: #333;
    font-size: 14px;
  }




  /* Button */
.quote-btn {
    padding: 12px 30px;
    background: #3da764;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.quote-btn:hover {
    background: #3da764;
}

/* Overlay */
.form-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Form Box */
.form-box {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.form-box h2 {
    margin-bottom: 15px;
    text-align: center;
}

/* Inputs */
.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-box textarea {
    resize: none;
    height: 100px;
}

/* Submit Button */
.form-box button {
    width: 100%;
    padding: 12px;
    background: #3da764;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .form-box {
        padding: 20px;
    }
}
