
        body { font-family: 'Poppins', sans-serif; background-color: #f8f9fa; }
        
        /* Navbar Styling */
		/* Navbar-la irukka default padding-ah remove panna */
/* Navbar Background Transparent */
.navbar {
    background-color: #d7d8dc !important; /* Banner color-oda match panna */
    position: fixed; /* Scroll pannalum top-la nikkum */
    top: 0;
    width: 100%;
    z-index: 1050; /* All elements-ku mela irukka */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: all 0.3s ease;
}

/* Scroll pannumpothu background vara (Optional - JS thevai) */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo container */
.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 100px; /* Theriya vendiya size-ku adjust pannikalam */
    width: auto;
    image-rendering: -webkit-optimize-contrast;
}


.navbar-nav {
    margin-left: auto !important; /* Menus-ai right side thallum */
    margin-right: 0 !important;
}
.navbar-nav .nav-link {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    color: #f37021 !important;
}

/* Call Button Styling */
.btn-call-top {
    background-color: #ed7409;
    color: white !important;
    border-radius: 5px;
    padding: 10px 25px !important;
    font-weight: bold;
    border: none;
    transition: 0.3s;
	width:100%;
}

.btn-call-top:hover {
    background-color: #1a237e;
    transform: scale(1.05);
}

/* Mobile view adjustments */
@media (max-width: 991px) {
    .navbar {
       
        position: relative;
    }
    .navbar-nav .nav-link {
        padding: 10px !important;
        text-align: center;
    }
    .navbar-brand img {
        height: 60px;
    }
}
        /* Hero Section */

.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
    background-color: #d7d8dc;
    
    background-image: url('img/banner2.png');
    background-repeat: no-repeat;
    
    /* Pushes it to the far right edge */
    background-position: right center; 
    
    /* --- THE KEY CHANGE --- */
    /* Only let the image take up 45% or 50% of the screen width */
    background-size: 65% 100%; 
    
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-section .container {
    position: relative;
    z-index: 2; /* Text-ah image-ku mela kaata */
}

.hero-title { 
    font-weight: 800; 
    color: black; 
    font-size: 2.8rem; /* Photo-la irukka size */
    max-width: 550px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-sub { 
    color: #3d3e43; 
    font-size: 1.1rem; 
    margin-bottom: 30px; 
    max-width: 500px;
    font-weight: 500;
}

/* Button styles from the photo */
.btn-whatsapp { 
    background-color: #127636; 
    color: white !important; 
    padding: 12px 25px; 
    border-radius: 5px; 
    text-decoration: none; 
    display: inline-block;
    font-weight: 600;
}

.btn-call-main { 
    background-color: #f37608; 
    color: white !important; 
    padding: 12px 25px; 
    border-radius: 5px !important; 
    text-decoration: none; 
    display: inline-block;
    font-weight: 600;
}
/* Mobile Responsive Section */
/* Mobile Responsive Section */
@media (max-width: 991px) {
    .navbar {
        position: fixed !important; 
        background-color: #d7d8dc !important;
    }

 @media (max-width: 991px) {
    /* Overlay-ah total-ah disable pannidrom */
    .hero-section::before {
        display: none !important;
    }

    .hero-section {
        background-color: #d7d8dc !important; /* Background color appadiye irukum */
        background-image: url('img/banner1.png') !important;
        background-repeat: no-repeat !important;
        background-position: bottom center !important; 
        background-size: contain !important;
        
        padding-top: 100px !important;
        padding-bottom: 280px !important; /* Image theriya nalla gap */
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 70vh;
    }

    .hero-section .container {
        z-index: 2; /* Text overlap aagama iruka */
    }
}

    .hero-section .container {
        position: relative;
        z-index: 2; /* Text mela vara */
    }

    .hero-title { 
        font-size: 1.8rem; 
        margin: 0 auto 15px auto; 
        line-height: 1.3;
        color: #000; /* Text colour fix */
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn-whatsapp, .btn-call-main {
        margin: 5px;
        padding: 10px 15px !important;
        font-size: 14px;
        position: relative;
        z-index: 3;
    }
}
/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-section {
        background-position: bottom center;
        background-size: cover;
        text-align: center;
        padding: 60px 0;
    }
    .hero-section::before {
        background: rgba(255,255,255,0.85); /* Mobile-la text readability-kaga */
    }
    .hero-title { font-size: 2rem; margin: 0 auto 20px auto; }
}
        /* Product Cards */

/* Product Section Styling */
.section-title {
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Card Visibility and Square Image Fix */
.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.product-img-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Square shape maintain panna */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden; /* Image veliya varaama thadukka */
    background-color: #fcfcfc;
    border-radius: 10px;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    
    /* Mukkiyamaana change:
       'contain' potta gap varum, 'cover' potta box full-ah fill aagum. */
    object-fit: cover; 
    
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.1);
}

.product-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a237e;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.orange-line {
    width: 35px;
    height: 3px;
    background: #f37021;
    margin: 12px auto 0 auto;
}
/* Best Selling Section Special Styling */
.best-seller-card {
    border: 1px solid #f37021 !important; /* Orange border to highlight */
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fff9f5); /* Subtle orange tint */
}

/* Best Seller Badge (Optional) */
.best-seller-card::before {
    content: "BEST SELLER";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f37021;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    z-index: 10;
}

/* Square Image Fix for this section too */
.best-seller-card .product-img-container {
   width: 100%;
    aspect-ratio: 1 / 1; /* Square shape maintain panna */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden; /* Image veliya varaama thadukka */
    background-color: #fcfcfc;
    border-radius: 10px;
}

.best-seller-card img {
    width: 100%;
    height: 100%;
    
    /* Mukkiyamaana change:
       'contain' potta gap varum, 'cover' potta box full-ah fill aagum. */
    object-fit: cover; 
    
    transition: transform 0.5s ease;
}

.best-seller-card h5 {
    color: #1a237e;
    font-size: 1.1rem;
    margin-top: 15px;
}

.best-seller-card:hover {
    box-shadow: 0 15px 35px rgba(243, 112, 33, 0.2); /* Orange shadow on hover */
    transform: scale(1.03);
}
/* --- About Section Professional Styling --- */

/* Experience Badge - Highlight 35+ Years */
.about-img-wrapper {
    position: relative;
    padding: 15px;
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #f8f9fa; /* Light border for photo frame look */
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #1a237e; /* Dark Blue */
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 5px solid #f37021; /* Orange accent */
}

.experience-badge span {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    color: #f37021; /* Orange */
}

.experience-badge p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Content Styling */
.text-orange {
    color: #f37021 !important;
}

#about .section-title {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a237e;
}

#about p {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

/* Reliability & Cost Effective Icons */
.fw-bold {
    font-weight: 700 !important;
    color: #1a237e;
}

#about .fas {
    font-size: 1.2rem;
}
.btn-call-main {
    background: #f37021;
    color: white;
    border: none;
    transition: all 0.4s ease;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.btn-call-main i {
    transition: transform 0.3s ease;
}

.btn-call-main:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-3px);
}

/* Hover pannum pothu andha arrow mella move aagum */
.btn-call-main:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .about-img-wrapper img {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    #about .section-title {
        font-size: 1.8rem;
    }
}
/* Contact Section Styling */
.bg-light-orange {
    background-color: rgba(243, 112, 33, 0.1); /* Very light orange for icons */
}

.text-orange {
    color: #f37021 !important;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #eee;
    height: 100%;
}

.contact-icon i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.map-wrapper iframe {
    filter: grayscale(10%) contrast(1.1); /* Subtle professional map look */
}

/* Hover Effect for Card */
.contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

@media (max-width: 991px) {
    .map-wrapper {
        height: 300px !important;
        margin-top: 20px;
    }
}

/* --- Footer Styling --- */
.footer-section {
    background-color: #1a237e; /* Dark Blue */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Logo Fix */
.footer-logo-wrapper {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Title Alignment Logic */
.footer-title {
    color: #f37021;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Default Orange line (Left aligned for Services, Links, Address) */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #f37021;
}

/* Center Orange line only for the About Section */
.text-center .footer-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-center .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* General Footer Text */
.footer-text {
    color: #d1d1d1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #d1d1d1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #f37021;
    padding-left: 8px;
}

.footer-contact-info li {
    color: #d1d1d1;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact-info i {
    color: #f37021;
    width: 20px;
}

/* Social Icons Center Fix */
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin: 0 8px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #f37021;
    transform: translateY(-3px);
    color: white;
}

.footer-hr {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.text-orange {
    color: #f37021 !important;
}
#wa-widget-send-button {
  margin: 0 0 20px 0 !important; 
  padding: 0;
  position: fixed !important;
  z-index: 16000160 !important;
  bottom: 20px !important; 
  right: 40px !important;   
  left: auto !important;    
  width: 60px !important;    
  height: 60px !important;   
  
  border-radius: 50% !important; 
  visibility: visible;
  background-color: #4dc247;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}