/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Styles */
.header {
    background-color: #2c2c2c;
    color: white;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.company-info h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.company-info p {
    font-size: 14px;
    color: #ccc;
}

.gst-info {
    font-weight: bold;
}

.contact-section {
    display: flex;
    gap: 15px;
}

.contact-btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.email-btn {
    background-color: #d32f2f;
    color: white;
}

.email-btn:hover {
    background-color: #b71c1c;
}

.phone-btn {
    background-color: #ff9800;
    color: white;
    position: relative;
}

.phone-btn:hover {
    background-color: #f57c00;
}

.response-rate {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

/* Navigation Styles */
.navigation {
    background-color: #d32f2f;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    border-right: 1px solid #b71c1c;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: #b71c1c;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-input {
    padding: 8px 12px;
    border: none;
    border-radius: 3px;
    width: 250px;
}

.search-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #555;
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Products Section */
.products-section {
    margin-bottom: 40px;
}

.products-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}

.product-card {
    background: white;
    border: 3px solid #d32f2f;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: fill;
}

.product-info {
    padding: 10px 20px;
}

.product-info h3 {
    color: #d32f2f;
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.interest-btn {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.interest-btn:hover {
    background-color: #45a049;
}

.read-more {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.welcome-section h2 {
    font-size: 24px;
    color: #666;
    margin-bottom: 5px;
}

.welcome-section h1 {
    font-size: 32px;
    color: #d32f2f;
    margin-bottom: 20px;
}

.company-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.company-details li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.certification {
    margin-bottom: 20px;
}

.certification h3 {
    color: #333;
    margin-bottom: 5px;
}

.trust-seal {
    color: #4caf50;
    font-weight: bold;
}

.brands-section {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.read-more-link {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}

.read-more-link:hover {
    text-decoration: underline;
}

.reviews-section .read-more-container {
	padding-top: 5px;
}
.reviews-section .read-more-container .read-more-link{
	font-size: 14px;
}

/* Reviews Section */
.reviews-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.rating-summary {
    text-align: center;
    margin-bottom: 20px;
}

.rating-summary h3 {
    font-size: 36px;
    color: #d32f2f;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 5px;
}

.star {
    font-size: 15px;
    padding: 2px;
}	

.rating-breakdown {
    margin-bottom: 20px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.rating-bar {
    flex: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background-color: #ffc107;
}

.satisfaction-metrics1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.metric {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.copy-right-container {
	margin-top: 20px;
	font-size: 12px;
	text-align: center;
}

.corporate-info h3,
.quote-section h3 {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-person p {
    margin-bottom: 5px;
    line-height: 1.5;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    padding: 12px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #444;
    color: white;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #ccc;
}

.get-quote-btn {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.get-quote-btn:hover {
    background-color: #b71c1c;
}


li.certificate-contianer img {
    width: 150px;
    height: 150px;
    object-fit: fill;
	margin-right: 5px;
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
.rotate-180 {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.rotate-270 {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
}

.map-frame {
	width: 550px;
	height: 200px;
}

.about-us .dealer-section h3{
    color: #d32f2f;
}
.about-us .dealer-section ul{
    list-style: none;
    margin-bottom: 20px;
}

.about-us .dealer-section li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.about-us li.certificate-contianer img {
    width: 200px;
    height: 200px;
    object-fit: fill;
	margin-right: 10px;
}


/* menu */

/* menu icon */

.ham-menu-container {
	display: none;
}

.ham-menu-container .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.ham-menu-container .menu-icon .navicon {
  background: #FFF;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.ham-menu-container .menu-icon .navicon:before,
.ham-menu-container .menu-icon .navicon:after {
  background: #FFF;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.ham-menu-container .menu-icon .navicon:before {
  top: 5px;
}

.ham-menu-container .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.ham-menu-container .menu-btn {
  display: none;
}

.ham-menu-container .menu-btn:checked ~ .nav-menu {
  display: none;
}

.ham-menu-container .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.ham-menu-container .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.ham-menu-container .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.ham-menu-container .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.ham-menu-container .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        width: 80%;
    }

    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #b71c1c;
    }
	
    .search-container {
        width: 100%;
		padding: 5px 0;
    }

    .search-input {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-section {
        flex-direction: row;
        width: 80%;
    }

    .contact-btn {
        width: 100%;
    }	
	
	.ham-menu-container {
        flex-direction: row;
		display: block;
		float: right;
	}

	.map-frame {
		width: 550px;
		height: 250px;
	}
	
	.nav-container .nav-menu {
		display: none;
	}
	
	.nav-container .nav-menu a{
		padding: 5px 30px;
	}
	
}
@media (min-width: 48em) {
	.ham-menu-container .menu-icon {
		display: none;
	}
}

@media (max-width: 480px) {
    .main-content {
        padding: 10px;
    }

    .about-section {
        padding: 20px;
    }

    .company-info h1 {
        font-size: 20px;
    }

    .welcome-section h1 {
        font-size: 24px;
    }

    .products-section h2 {
        font-size: 24px;
    }
		
	.map-frame {
		width: 350px;
		height: 250px;
	}
}

