<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>btsrapid new document title</title>
</head>
<body>
<p>/* Reset and Base Styles */* {&nbsp; &nbsp; margin: 0;&nbsp; &nbsp; padding: 0;&nbsp; &nbsp; box-sizing: border-box;}<br />:root {&nbsp; &nbsp; --primary-color: #0066cc;&nbsp; &nbsp; --secondary-color: #004d99;&nbsp; &nbsp; --accent-color: #ff9900;&nbsp; &nbsp; --text-color: #333333;&nbsp; &nbsp; --light-gray: #f5f5f5;&nbsp; &nbsp; --medium-gray: #e0e0e0;&nbsp; &nbsp; --dark-gray: #666666;&nbsp; &nbsp; --white: #ffffff;&nbsp; &nbsp; --black: #000000;&nbsp; &nbsp; --success-color: #28a745;&nbsp; &nbsp; --danger-color: #dc3545;&nbsp; &nbsp; --info-color: #17a2b8;}<br />body {&nbsp; &nbsp; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;&nbsp; &nbsp; line-height: 1.6;&nbsp; &nbsp; color: var(--text-color);&nbsp; &nbsp; background-color: var(--white);}<br />.container {&nbsp; &nbsp; max-width: 1200px;&nbsp; &nbsp; margin: 0 auto;&nbsp; &nbsp; padding: 0 20px;}<br />a {&nbsp; &nbsp; text-decoration: none;&nbsp; &nbsp; color: inherit;}<br />ul {&nbsp; &nbsp; list-style: none;}<br />img {&nbsp; &nbsp; max-width: 100%;&nbsp; &nbsp; height: auto;}<br />.btn {&nbsp; &nbsp; display: inline-block;&nbsp; &nbsp; background-color: var(--primary-color);&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; padding: 10px 20px;&nbsp; &nbsp; border-radius: 4px;&nbsp; &nbsp; font-weight: 600;&nbsp; &nbsp; cursor: pointer;&nbsp; &nbsp; border: none;&nbsp; &nbsp; transition: background-color 0.3s, transform 0.2s;}<br />.btn:hover {&nbsp; &nbsp; background-color: var(--secondary-color);&nbsp; &nbsp; transform: translateY(-2px);}<br />.btn-outline {&nbsp; &nbsp; background-color: transparent;&nbsp; &nbsp; border: 2px solid var(--primary-color);&nbsp; &nbsp; color: var(--primary-color);}<br />.btn-outline:hover {&nbsp; &nbsp; background-color: var(--primary-color);&nbsp; &nbsp; color: var(--white);}<br />.btn-white {&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; color: var(--primary-color);}<br />.btn-white:hover {&nbsp; &nbsp; background-color: var(--light-gray);&nbsp; &nbsp; color: var(--secondary-color);}<br />.section-title {&nbsp; &nbsp; font-size: 2.2rem;&nbsp; &nbsp; margin-bottom: 40px;&nbsp; &nbsp; text-align: center;&nbsp; &nbsp; position: relative;&nbsp; &nbsp; color: var(--text-color);}<br />.section-title:after {&nbsp; &nbsp; content: '';&nbsp; &nbsp; display: block;&nbsp; &nbsp; width: 60px;&nbsp; &nbsp; height: 4px;&nbsp; &nbsp; background-color: var(--accent-color);&nbsp; &nbsp; margin: 10px auto 0;}<br />/* Header Styles */header {&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);&nbsp; &nbsp; position: sticky;&nbsp; &nbsp; top: 0;&nbsp; &nbsp; z-index: 1000;}<br />header .container {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; justify-content: space-between;&nbsp; &nbsp; align-items: center;&nbsp; &nbsp; padding: 15px 20px;}<br />.logo h1 {&nbsp; &nbsp; font-size: 1.8rem;&nbsp; &nbsp; color: var(--primary-color);&nbsp; &nbsp; margin-bottom: 5px;}<br />.tagline {&nbsp; &nbsp; font-size: 0.9rem;&nbsp; &nbsp; color: var(--dark-gray);}<br />nav ul {&nbsp; &nbsp; display: flex;}<br />nav ul li {&nbsp; &nbsp; margin-left: 25px;}<br />nav ul li a {&nbsp; &nbsp; font-weight: 500;&nbsp; &nbsp; position: relative;&nbsp; &nbsp; padding-bottom: 5px;&nbsp; &nbsp; transition: color 0.3s;}<br />nav ul li a:hover {&nbsp; &nbsp; color: var(--primary-color);}<br />nav ul li a:after {&nbsp; &nbsp; content: '';&nbsp; &nbsp; position: absolute;&nbsp; &nbsp; left: 0;&nbsp; &nbsp; bottom: 0;&nbsp; &nbsp; width: 0;&nbsp; &nbsp; height: 2px;&nbsp; &nbsp; background-color: var(--primary-color);&nbsp; &nbsp; transition: width 0.3s;}<br />nav ul li a:hover:after {&nbsp; &nbsp; width: 100%;}<br />.header-right {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; align-items: center;}<br />.search {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; margin-right: 20px;}<br />.search input {&nbsp; &nbsp; padding: 8px 12px;&nbsp; &nbsp; border: 1px solid var(--medium-gray);&nbsp; &nbsp; border-radius: 4px 0 0 4px;&nbsp; &nbsp; width: 200px;}<br />.search button {&nbsp; &nbsp; background-color: var(--primary-color);&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; border: none;&nbsp; &nbsp; border-radius: 0 4px 4px 0;&nbsp; &nbsp; padding: 8px 12px;&nbsp; &nbsp; cursor: pointer;}<br />.cart {&nbsp; &nbsp; position: relative;}<br />.cart a {&nbsp; &nbsp; font-size: 1.2rem;&nbsp; &nbsp; color: var(--text-color);}<br />.cart-count {&nbsp; &nbsp; position: absolute;&nbsp; &nbsp; top: -8px;&nbsp; &nbsp; right: -8px;&nbsp; &nbsp; background-color: var(--accent-color);&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; border-radius: 50%;&nbsp; &nbsp; width: 18px;&nbsp; &nbsp; height: 18px;&nbsp; &nbsp; font-size: 0.7rem;&nbsp; &nbsp; display: flex;&nbsp; &nbsp; align-items: center;&nbsp; &nbsp; justify-content: center;}<br />/* Hero Section */.hero {&nbsp; &nbsp; background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1920/600');&nbsp; &nbsp; background-size: cover;&nbsp; &nbsp; background-position: center;&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; padding: 100px 0;&nbsp; &nbsp; text-align: center;}<br />.hero-content {&nbsp; &nbsp; max-width: 700px;&nbsp; &nbsp; margin: 0 auto;}<br />.hero h2 {&nbsp; &nbsp; font-size: 2.8rem;&nbsp; &nbsp; margin-bottom: 20px;&nbsp; &nbsp; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);}<br />.hero p {&nbsp; &nbsp; font-size: 1.2rem;&nbsp; &nbsp; margin-bottom: 30px;&nbsp; &nbsp; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);}<br />/* Features Section */.features {&nbsp; &nbsp; padding: 60px 0;&nbsp; &nbsp; background-color: var(--light-gray);}<br />.features .container {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: repeat(4, 1fr);&nbsp; &nbsp; gap: 30px;}<br />.feature {&nbsp; &nbsp; text-align: center;&nbsp; &nbsp; padding: 20px;&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);&nbsp; &nbsp; transition: transform 0.3s;}<br />.feature:hover {&nbsp; &nbsp; transform: translateY(-10px);}<br />.feature i {&nbsp; &nbsp; font-size: 2.5rem;&nbsp; &nbsp; color: var(--primary-color);&nbsp; &nbsp; margin-bottom: 15px;}<br />.feature h3 {&nbsp; &nbsp; margin-bottom: 10px;&nbsp; &nbsp; font-size: 1.2rem;}<br />/* Products Section */.products {&nbsp; &nbsp; padding: 80px 0;}<br />.product-grid {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: repeat(4, 1fr);&nbsp; &nbsp; gap: 25px;&nbsp; &nbsp; margin-bottom: 40px;}<br />.product-card {&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; overflow: hidden;&nbsp; &nbsp; box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);&nbsp; &nbsp; transition: transform 0.3s;&nbsp; &nbsp; position: relative;&nbsp; &nbsp; padding: 20px;}<br />.product-card:hover {&nbsp; &nbsp; transform: translateY(-8px);}<br />.product-badge {&nbsp; &nbsp; position: absolute;&nbsp; &nbsp; top: 10px;&nbsp; &nbsp; right: 10px;&nbsp; &nbsp; background-color: var(--accent-color);&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; padding: 5px 10px;&nbsp; &nbsp; border-radius: 4px;&nbsp; &nbsp; font-size: 0.8rem;&nbsp; &nbsp; font-weight: 600;}<br />.product-card img {&nbsp; &nbsp; width: 100%;&nbsp; &nbsp; height: 200px;&nbsp; &nbsp; object-fit: cover;&nbsp; &nbsp; border-radius: 4px;&nbsp; &nbsp; margin-bottom: 15px;}<br />.product-card h3 {&nbsp; &nbsp; font-size: 1.2rem;&nbsp; &nbsp; margin-bottom: 8px;}<br />.product-card .price {&nbsp; &nbsp; font-size: 1.3rem;&nbsp; &nbsp; font-weight: 700;&nbsp; &nbsp; color: var(--primary-color);&nbsp; &nbsp; margin-bottom: 10px;}<br />.product-card .original-price {&nbsp; &nbsp; text-decoration: line-through;&nbsp; &nbsp; color: var(--dark-gray);&nbsp; &nbsp; font-size: 1rem;&nbsp; &nbsp; margin-right: 5px;}<br />.product-card .description {&nbsp; &nbsp; color: var(--dark-gray);&nbsp; &nbsp; font-size: 0.9rem;&nbsp; &nbsp; margin-bottom: 15px;&nbsp; &nbsp; height: 60px;}<br />.product-features {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; justify-content: space-between;&nbsp; &nbsp; margin-bottom: 15px;}<br />.product-features span {&nbsp; &nbsp; font-size: 0.85rem;&nbsp; &nbsp; color: var(--dark-gray);}<br />.product-features i {&nbsp; &nbsp; color: var(--primary-color);&nbsp; &nbsp; margin-right: 5px;}<br />.product-card .btn {&nbsp; &nbsp; width: 100%;}<br />.view-all {&nbsp; &nbsp; text-align: center;&nbsp; &nbsp; margin-top: 30px;}<br />/* Industries Section */.industries {&nbsp; &nbsp; padding: 70px 0;&nbsp; &nbsp; background-color: var(--light-gray);}<br />.industry-grid {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: repeat(4, 1fr);&nbsp; &nbsp; gap: 25px;}<br />.industry-card {&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; padding: 30px 20px;&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; text-align: center;&nbsp; &nbsp; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);&nbsp; &nbsp; transition: all 0.3s;}<br />.industry-card:hover {&nbsp; &nbsp; transform: translateY(-8px);&nbsp; &nbsp; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);}<br />.industry-card i {&nbsp; &nbsp; font-size: 2.5rem;&nbsp; &nbsp; color: var(--primary-color);&nbsp; &nbsp; margin-bottom: 20px;}<br />.industry-card h3 {&nbsp; &nbsp; margin-bottom: 15px;}<br />/* Testimonials Section */.testimonials {&nbsp; &nbsp; padding: 70px 0;}<br />.testimonial {&nbsp; &nbsp; max-width: 800px;&nbsp; &nbsp; margin: 0 auto;&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; padding: 30px;&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);}<br />.testimonial-content {&nbsp; &nbsp; font-size: 1.1rem;&nbsp; &nbsp; font-style: italic;&nbsp; &nbsp; line-height: 1.7;&nbsp; &nbsp; margin-bottom: 20px;&nbsp; &nbsp; position: relative;}<br />.testimonial-content:before,.testimonial-content:after {&nbsp; &nbsp; content: '"';&nbsp; &nbsp; font-size: 3rem;&nbsp; &nbsp; color: var(--medium-gray);&nbsp; &nbsp; position: absolute;&nbsp; &nbsp; line-height: 1;}<br />.testimonial-content:before {&nbsp; &nbsp; top: -20px;&nbsp; &nbsp; left: -15px;}<br />.testimonial-content:after {&nbsp; &nbsp; bottom: -40px;&nbsp; &nbsp; right: -15px;}<br />.testimonial-author {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; align-items: center;}<br />.testimonial-author img {&nbsp; &nbsp; width: 60px;&nbsp; &nbsp; height: 60px;&nbsp; &nbsp; border-radius: 50%;&nbsp; &nbsp; margin-right: 15px;&nbsp; &nbsp; object-fit: cover;}<br />.testimonial-author h4 {&nbsp; &nbsp; font-size: 1.1rem;&nbsp; &nbsp; margin-bottom: 5px;}<br />.testimonial-author p {&nbsp; &nbsp; color: var(--dark-gray);&nbsp; &nbsp; font-size: 0.9rem;}<br />/* CTA Section */.cta {&nbsp; &nbsp; background-color: var(--primary-color);&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; padding: 60px 0;&nbsp; &nbsp; text-align: center;}<br />.cta-content {&nbsp; &nbsp; max-width: 700px;&nbsp; &nbsp; margin: 0 auto;}<br />.cta h2 {&nbsp; &nbsp; font-size: 2.2rem;&nbsp; &nbsp; margin-bottom: 15px;}<br />.cta p {&nbsp; &nbsp; font-size: 1.1rem;&nbsp; &nbsp; margin-bottom: 25px;&nbsp; &nbsp; opacity: 0.9;}<br />/* Services Section */.services {&nbsp; &nbsp; padding: 80px 0;}<br />.services-grid {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: repeat(4, 1fr);&nbsp; &nbsp; gap: 25px;}<br />.service-card {&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; padding: 30px 20px;&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; text-align: center;&nbsp; &nbsp; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);&nbsp; &nbsp; transition: all 0.3s;&nbsp; &nbsp; border-bottom: 4px solid transparent;}<br />.service-card:hover {&nbsp; &nbsp; transform: translateY(-8px);&nbsp; &nbsp; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);&nbsp; &nbsp; border-bottom-color: var(--primary-color);}<br />.service-card i {&nbsp; &nbsp; font-size: 2.5rem;&nbsp; &nbsp; color: var(--primary-color);&nbsp; &nbsp; margin-bottom: 20px;}<br />.service-card h3 {&nbsp; &nbsp; margin-bottom: 15px;}<br />/* About Section */.about {&nbsp; &nbsp; padding: 80px 0;&nbsp; &nbsp; background-color: var(--light-gray);}<br />.about-content {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: 6fr 4fr;&nbsp; &nbsp; gap: 40px;&nbsp; &nbsp; align-items: center;}<br />.about-text p {&nbsp; &nbsp; margin-bottom: 20px;}<br />.about-image img {&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);}<br />/* Contact Section */.contact {&nbsp; &nbsp; padding: 80px 0;}<br />.contact-grid {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: 1fr 1fr;&nbsp; &nbsp; gap: 40px;}<br />.contact-info {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: repeat(2, 1fr);&nbsp; &nbsp; gap: 25px;}<br />.contact-card {&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; padding: 25px;&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);&nbsp; &nbsp; text-align: center;}<br />.contact-card i {&nbsp; &nbsp; font-size: 2rem;&nbsp; &nbsp; color: var(--primary-color);&nbsp; &nbsp; margin-bottom: 15px;}<br />.contact-card h3 {&nbsp; &nbsp; margin-bottom: 10px;&nbsp; &nbsp; font-size: 1.2rem;}<br />.contact-form {&nbsp; &nbsp; background-color: var(--white);&nbsp; &nbsp; padding: 30px;&nbsp; &nbsp; border-radius: 8px;&nbsp; &nbsp; box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);}<br />.form-group {&nbsp; &nbsp; margin-bottom: 20px;}<br />.form-group label {&nbsp; &nbsp; display: block;&nbsp; &nbsp; margin-bottom: 8px;&nbsp; &nbsp; font-weight: 500;}<br />.form-group input,.form-group select,.form-group textarea {&nbsp; &nbsp; width: 100%;&nbsp; &nbsp; padding: 12px;&nbsp; &nbsp; border: 1px solid var(--medium-gray);&nbsp; &nbsp; border-radius: 4px;&nbsp; &nbsp; font-family: inherit;&nbsp; &nbsp; font-size: 1rem;&nbsp; &nbsp; transition: border-color 0.3s;}<br />.form-group input:focus,.form-group select:focus,.form-group textarea:focus {&nbsp; &nbsp; outline: none;&nbsp; &nbsp; border-color: var(--primary-color);}<br />.contact-form .btn {&nbsp; &nbsp; width: 100%;&nbsp; &nbsp; padding: 12px;}<br />/* Newsletter Section */.newsletter {&nbsp; &nbsp; padding: 50px 0;&nbsp; &nbsp; background-color: var(--light-gray);}<br />.newsletter-content {&nbsp; &nbsp; max-width: 600px;&nbsp; &nbsp; margin: 0 auto;&nbsp; &nbsp; text-align: center;}<br />.newsletter h3 {&nbsp; &nbsp; font-size: 1.5rem;&nbsp; &nbsp; margin-bottom: 15px;}<br />.newsletter p {&nbsp; &nbsp; margin-bottom: 25px;}<br />.newsletter-form {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; gap: 10px;}<br />.newsletter-form input {&nbsp; &nbsp; flex: 1;&nbsp; &nbsp; padding: 12px 15px;&nbsp; &nbsp; border: 1px solid var(--medium-gray);&nbsp; &nbsp; border-radius: 4px;&nbsp; &nbsp; font-size: 1rem;}<br />.newsletter-form input:focus {&nbsp; &nbsp; outline: none;&nbsp; &nbsp; border-color: var(--primary-color);}<br />.newsletter-form .btn {&nbsp; &nbsp; padding: 12px 25px;}<br />/* Footer */footer {&nbsp; &nbsp; background-color: #1a1a1a;&nbsp; &nbsp; color: #e0e0e0;&nbsp; &nbsp; padding: 60px 0 0;}<br />.footer-grid {&nbsp; &nbsp; display: grid;&nbsp; &nbsp; grid-template-columns: 2fr 1fr 1fr 2fr;&nbsp; &nbsp; gap: 40px;&nbsp; &nbsp; margin-bottom: 40px;}<br />.footer-about p {&nbsp; &nbsp; margin-bottom: 20px;}<br />.social-icons {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; gap: 15px;}<br />.social-icons a {&nbsp; &nbsp; display: inline-flex;&nbsp; &nbsp; align-items: center;&nbsp; &nbsp; justify-content: center;&nbsp; &nbsp; width: 40px;&nbsp; &nbsp; height: 40px;&nbsp; &nbsp; border-radius: 50%;&nbsp; &nbsp; background-color: rgba(255, 255, 255, 0.1);&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; transition: background-color 0.3s;}<br />.social-icons a:hover {&nbsp; &nbsp; background-color: var(--primary-color);}<br />.footer-links h3,.footer-contact h3 {&nbsp; &nbsp; font-size: 1.2rem;&nbsp; &nbsp; margin-bottom: 20px;&nbsp; &nbsp; color: var(--white);}<br />.footer-links ul li {&nbsp; &nbsp; margin-bottom: 12px;}<br />.footer-links ul li a {&nbsp; &nbsp; color: #cccccc;&nbsp; &nbsp; transition: color 0.3s;}<br />.footer-links ul li a:hover {&nbsp; &nbsp; color: var(--accent-color);}<br />.footer-contact p {&nbsp; &nbsp; margin-bottom: 15px;&nbsp; &nbsp; display: flex;&nbsp; &nbsp; align-items: center;}<br />.footer-contact p i {&nbsp; &nbsp; margin-right: 10px;&nbsp; &nbsp; color: var(--accent-color);}<br />.footer-bottom {&nbsp; &nbsp; border-top: 1px solid rgba(255, 255, 255, 0.1);&nbsp; &nbsp; padding: 20px 0;&nbsp; &nbsp; display: flex;&nbsp; &nbsp; justify-content: space-between;&nbsp; &nbsp; align-items: center;&nbsp; &nbsp; font-size: 0.9rem;}<br />.footer-bottom p {&nbsp; &nbsp; color: #aaaaaa;}<br />.footer-bottom-links {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; gap: 20px;}<br />.footer-bottom-links a {&nbsp; &nbsp; color: #aaaaaa;&nbsp; &nbsp; transition: color 0.3s;}<br />.footer-bottom-links a:hover {&nbsp; &nbsp; color: var(--white);}<br />/* WhatsApp Float Button */.whatsapp-float {&nbsp; &nbsp; position: fixed;&nbsp; &nbsp; bottom: 30px;&nbsp; &nbsp; right: 30px;&nbsp; &nbsp; z-index: 99;}<br />.whatsapp-float a {&nbsp; &nbsp; display: flex;&nbsp; &nbsp; align-items: center;&nbsp; &nbsp; justify-content: center;&nbsp; &nbsp; width: 60px;&nbsp; &nbsp; height: 60px;&nbsp; &nbsp; background-color: #25d366;&nbsp; &nbsp; color: var(--white);&nbsp; &nbsp; border-radius: 50%;&nbsp; &nbsp; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);&nbsp; &nbsp; transition: transform 0.3s, box-shadow 0.3s;&nbsp; &nbsp; font-size: 1.8rem;}<br />.whatsapp-float a:hover {&nbsp; &nbsp; transform: scale(1.1);&nbsp; &nbsp; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);}<br />/* Responsive Styles */@media screen and (max-width: 1024px) {&nbsp; &nbsp; .features .container,&nbsp; &nbsp; .product-grid,&nbsp; &nbsp; .industry-grid,&nbsp; &nbsp; .services-grid {&nbsp; &nbsp; &nbsp; &nbsp; grid-template-columns: repeat(2, 1fr);&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .footer-grid {&nbsp; &nbsp; &nbsp; &nbsp; grid-template-columns: repeat(2, 1fr);&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .about-content {&nbsp; &nbsp; &nbsp; &nbsp; grid-template-columns: 1fr;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .about-image {&nbsp; &nbsp; &nbsp; &nbsp; order: -1;&nbsp; &nbsp; }}<br />@media screen and (max-width: 768px) {&nbsp; &nbsp; header .container {&nbsp; &nbsp; &nbsp; &nbsp; flex-direction: column;&nbsp; &nbsp; &nbsp; &nbsp; padding: 15px;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .logo {&nbsp; &nbsp; &nbsp; &nbsp; margin-bottom: 15px;&nbsp; &nbsp; &nbsp; &nbsp; text-align: center;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; nav ul {&nbsp; &nbsp; &nbsp; &nbsp; justify-content: center;&nbsp; &nbsp; &nbsp; &nbsp; flex-wrap: wrap;&nbsp; &nbsp; &nbsp; &nbsp; margin-bottom: 15px;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; nav ul li {&nbsp; &nbsp; &nbsp; &nbsp; margin: 0 10px 10px;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .header-right {&nbsp; &nbsp; &nbsp; &nbsp; width: 100%;&nbsp; &nbsp; &nbsp; &nbsp; justify-content: center;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .search {&nbsp; &nbsp; &nbsp; &nbsp; width: 100%;&nbsp; &nbsp; &nbsp; &nbsp; max-width: 300px;&nbsp; &nbsp; &nbsp; &nbsp; margin-right: 15px;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .hero {&nbsp; &nbsp; &nbsp; &nbsp; padding: 60px 0;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .hero h2 {&nbsp; &nbsp; &nbsp; &nbsp; font-size: 2rem;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .contact-grid,&nbsp; &nbsp; .contact-info {&nbsp; &nbsp; &nbsp; &nbsp; grid-template-columns: 1fr;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .newsletter-form {&nbsp; &nbsp; &nbsp; &nbsp; flex-direction: column;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .footer-bottom {&nbsp; &nbsp; &nbsp; &nbsp; flex-direction: column;&nbsp; &nbsp; &nbsp; &nbsp; text-align: center;&nbsp; &nbsp; &nbsp; &nbsp; gap: 15px;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .footer-bottom-links {&nbsp; &nbsp; &nbsp; &nbsp; justify-content: center;&nbsp; &nbsp; }}<br />@media screen and (max-width: 480px) {&nbsp; &nbsp; .features .container,&nbsp; &nbsp; .product-grid,&nbsp; &nbsp; .industry-grid,&nbsp; &nbsp; .services-grid,&nbsp; &nbsp; .footer-grid {&nbsp; &nbsp; &nbsp; &nbsp; grid-template-columns: 1fr;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .section-title {&nbsp; &nbsp; &nbsp; &nbsp; font-size: 1.8rem;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .hero h2 {&nbsp; &nbsp; &nbsp; &nbsp; font-size: 1.6rem;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .testimonial {&nbsp; &nbsp; &nbsp; &nbsp; padding: 20px;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .testimonial-author {&nbsp; &nbsp; &nbsp; &nbsp; flex-direction: column;&nbsp; &nbsp; &nbsp; &nbsp; text-align: center;&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; .testimonial-author img {&nbsp; &nbsp; &nbsp; &nbsp; margin: 0 auto 10px;&nbsp; &nbsp; }}</p>
</body>
</html>