/* CSS Document */
      
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
.nav-link {
	color:#126df9;
}
   /* notice box */     
		 .alert {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        .alert-success {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
        .alert-error {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }

.fancy-ribbon {
    position: absolute;
    top: 10px;
    left: -28px;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    /*transform: rotate(-45deg);*/
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 40%), 
                var(--ribbon-color, #ff4757);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    width: 160px;
    text-align: center;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    letter-spacing: 0.5px;
    z-index: 20;
}

/* Category-based colors */
.fancy-ribbon.domestic {
    --ribbon-color: #0d6efd; /* Bright blue */
}
.fancy-ribbon.commercial {
    --ribbon-color: #198754; /* Green */
}
.fancy-ribbon.industrial {
    --ribbon-color: #ffb703; /* Golden yellow */
}
.fancy-ribbon.luxury {
    --ribbon-color: #6f42c1; /* Purple */
}
.fancy-ribbon.general {
    --ribbon-color: #ff4757; /* Red */
}

/* Optional hover glow */
.gallery-item:hover .fancy-ribbon {
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.blog-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-content ol,
.blog-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
/* WhatsApp Floating Button */
 .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            }
        }

        /* WhatsApp Chat Widget */
        .whatsapp-widget {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 320px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .whatsapp-widget.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .widget-header {
            background: #075e54;
            color: white;
            padding: 20px;
            border-radius: 20px 20px 0 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .widget-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }

        .widget-info h3 {
            font-size: 16px;
            margin-bottom: 2px;
        }

        .widget-status {
            font-size: 12px;
            opacity: 0.8;
        }

        .widget-body {
            padding: 20px;
        }

        .chat-message {
            background: #f0f2f5;
            padding: 12px 16px;
            border-radius: 18px;
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .widget-input {
            display: flex;
            gap: 10px;
        }

        .widget-input input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
            font-size: 14px;
        }

        .widget-input button {
            background: #25d366;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .widget-input button:hover {
            background: #1ea952;
        }

        /* Simple Button Styles */
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25d366;
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {

            background: #1ea952;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .close-widget {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 20px;
            opacity: 0.7;
        }

        .close-widget:hover {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .whatsapp-widget {
                width: 290px;
                right: 25px;
                bottom: 80px;
            }
            
            .whatsapp-float {
                right: 15px;
                bottom: 15px;
            }
        }


  .hero-section {
            background: linear-gradient(135deg, #0d6efd 0%, #082f6b 100%);
            color: white;
            padding: 100px 0;
        }
        
  .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
  .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
  .icon-box {
            width: 150px;
            height: 150px;
            /*background: linear-gradient(135deg, #0d6efd 0%, #082f6b 100%);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }
       
.icon-box2 {
            width: 80px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }
.service {
	min-height: 400px;
}
  .stats-section {
            background: #0D6EFD;
            background: linear-gradient(135deg, #0d6efd 0%, #082f6b 100%);
            padding: 60px 0;
	  color:beige;
        }
        
  .stat-item {
            text-align: center;
        }
        
  .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #fff;
        }
        
   .cta-section {
            background: linear-gradient(135deg, #0d6efd 0%, #082f6b 100%);
            color: white;
            padding: 80px 0;
        }
        
    .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        
    .gallery-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
    .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
    .gallery-item .ratio {
            transition: all 0.3s ease;
        }
        
    .gallery-item:hover .ratio {
            opacity: 0.9;
        }
        
   .gallery-image-wrapper {
            width: 100%;
            height: 250px;
            overflow: hidden;
            background-color: #f8f9fa;
        }
        
   .gallery-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }
        
   .gallery-item:hover .gallery-image-wrapper img {
            transform: scale(1.05);
        }
		
	.modal-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
   .modal-gallery-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
    .modal-gallery-grid img:hover {
            transform: scale(1.05);
        }

#hero2 {
    padding-bottom: 80px; /* pushes content up a bit so WhatsApp sits under it */
}

.reviews {
	border: #126df9 1px double;
}
        
   footer {
            background-color: #082f6b;
            color: white;
            padding: 40px 0 20px;
        }
   
