/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
}
p{font-size:16px!important;}

/* Top Bar */
.top-bar {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}

.contact-info span a {
    color: #51736d;
}

.contact-info i {
    
    color: #51736d;
}

.social-links a {
    color: #666;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #51736d;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
ul li {list-style-type:none;}
.logo {
    display: flex;
    align-items: center;
	margin-top:15px;
}

.logo-icon {
    background: #51736d;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 12px;
}

.logo-text {
    line-height: 1.2;
}

.logo-text strong {
    font-size: 20px;
    color: #333;
}

.logo-text small {
    font-size: 12px;
    color: #666;
}
.navbar{margin-top:30px;}
.navbar-nav .nav-link {
    color: #333 !important;
	font-size:17px;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #51736d !important;
}
ul.dropdown-menu{margin-top:26px!important;}
ul.dropdown-menu li{margin-bottom:15px;}
.quote-btn {
    background: #51736d;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.navbar-default{background-color:transparent!important;border:none!important;}
.quote-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Hero Section */
.hero {
    padding: 100px 0 100px 0;
    
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2d2d2d;
}




.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons1 .lm_btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
background-color:#51736d;}

.dwn_btn{padding: 12px 30px;}



.hero-buttons1 .lm_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.rounded{border-radius:30px!important;}
.lm_btn{margin-right:20px;}
.why-choose-us {
    /*background: #fff;*/
	padding:40px 0 40px 0;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #030303;
  
    letter-spacing: 2px;
}

.stat-item {
    padding: 30px;
    
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: #fff;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: #51736d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}
.stat-item img{display:block;margin:auto;}
.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #51736d;
    margin-bottom: 10px;
}

.stat-item p {
    color: #040404;
    font-weight: 500;
}

/* Products Section */
.products {
    padding:10px 0 30px 0;
}

.products h2 {
    font-size: 2.5rem;
    color: #333;
    letter-spacing: 2px;
}

.product-card {
    background: #e5dddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: #51736d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.product-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}
.product-content img{margin:auto;width:20%!important;}

/* Carousel Dots */
.carousel-dots {
    margin-top: 40px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bdc3c7;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #51736d;
    transform: scale(1.2);
}

/* Available On Section */
.available-on {
   padding:40px 0 40px 0;
    color: black;
}

.available-on h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.marketplace-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    margin: 15px;
    text-align: center;
}

.trade-india {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.india-text {
    color: #4CAF50;
}

.industry-buying {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196F3;
}

.buying-text {
    color: #FF9800;
}

.indiamart {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E91E63;
}

.mart-text {
    color: #9C27B0;
}

.gem {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC107;
    background: #333;
    padding: 10px 20px;
    border-radius: 8px;
}

/* Industry Leaders */
.industry-leaders {
    background: #fff;
}
.brand_section{padding:40px 0 40px 0;}
.industry-leaders h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.client-logos {
    gap: 30px;
}

.client-logo {
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

.client-logo .badge {
    font-size: 1.2rem;
    padding: 15px 25px;
    border-radius: 10px;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
	padding:40px 0 40px 0;
}
.text-center{margin-bottom:20px;}
.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.testimonial-card h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.rating {
    font-size: 1.1rem;
}

/* FAQ and Quote Section */
.faq-quote-section {
    padding: 80px 0;
}

.faq-quote-section h3 {
    font-size: 2rem;
    
    color: #000000;
}

.accordion-item {
    border: none;
    background: #f4f4f4;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.accordion-button {
    background: #f4f4f4;
    border: none;
    font-weight: 600;
    color: #333;
    padding: 20px;
	font-size:21px;
}

.accordion-button:not(.collapsed) {
    background: #f4f4f4;
    color: black;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px;
    background: #f8f9fa;
}

/* Quote Form */
.quote-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.quote-form h3 {
    font-size: 1.8rem;

    color: #030303;
}

.quote-form .form-control,
.quote-form .form-select {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: #51736d;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.quote-form .btn-success {
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.quote-form .btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Footer */
.footer {
    background: #f5f5f5;
    color: #ecf0f1;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: #51736d;
    line-height: 1.7;
    margin-bottom: 20px;
	font-size:17px!important;
}

.footer h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #51736d;
    text-decoration: none;
    transition: color 0.3s ease;
	font-size:17px;
}

.footer-links a:hover {
    color: #51736d;
}

.contact-info p {
    color: #51736d;
	font-size:17px;
    margin-bottom: 10px;
}
.contact-info p a{
    color: #51736d;
    font-size:17px;
}
.contact-info i {
    color: #51736d;
    
    width: 20px;
}

.footer .social-links a {
    background: #34495e;
    color: #ecf0f1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #51736d;
    transform: translateY(-3px);
}

.back-to-top button {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.touch-para{font-size:16px;}
.touch-para a{color:#000!important;font-size:16px;}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}
.footer .social-links{justify-content:left;}
.team-section .social-links{justify-content:center;}












/* About Us */

/* Hero Section */
.hero-section {
    
	padding:130px 0 130px 0;
	
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #51736d;;
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Introduction Section */
.introduction-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color:#000000;
    line-height: 1.2;
    margin-bottom: 24px;
	font-weight:normal;
}

.text-primary {
    color: #51736d!important;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color:#000000;
}

/* Mission, Vision, Values Section */
.mvv-section {
    padding: 40px 0 40px 0;
}

.mvv-card {
    background: #f5f5f5;
    border-radius: 16px;
    border: 1px solid #E9ECEF;
    transition: all 0.3s ease;
    height: 100%;
	padding:20px;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: rgba(74, 155, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-container i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.mvv-card h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.mvv-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Core USP Section */
.core-usp-section {
    padding: 40px 0 40px 0;
    background-color:#51736d;
    position: relative;
	color:#ffffff;
}

.core-usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.usp-card {
    padding: 32px 16px;
    transition: all 0.3s ease;
    position: relative;
}

.usp-card:hover {
    transform: translateY(-8px);
}

.usp-icon {
    width: 80px;
    height: 80px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.usp-icon i {
    font-size: 2.5rem;
    color:black;
}

.usp-card:hover .usp-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.usp-card h5 {
    font-weight: 600;
    margin-top: 16px;
    font-size: 20px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background: #51736d;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(74, 155, 142, 0.2);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(74, 155, 142, 0.3);
}

.team-image {
    height: 300px;
    overflow: hidden;
    margin: 16px;
    border-radius: 16px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    text-align: center;
    color: white;
}

.team-info h5 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.team-info .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: right;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}
/*contact-us */
	  .touch-section{padding:40px 0 40px 0;}
  .touch-title{color:000000;font-weight:blod;}
  
  .touch-text{font-size:27px;font-weight:700;}
  .massage-section{ background-color:#51736d;
  padding:80px 0;text-align:center;}
  .map-section{padding:40px 0 40px 0;}
  .touch-box{background-color:#51736d;padding:15px;}
.wpcf7-form{background-color:#ececec;padding:30px;}
.wpcf7-form-control{background-color:#b1bebc;}
label{font-weight:bold;}
.wpcf7-submit{background-color:#51736d;color:white;padding:10px 50px;font-weight:bold;border:none;}
 /*product */
  .product_box{background-color:#ececec;margin:40px 0;}
.pro-text{font-size:24px;font-weight:bold;padding-top:20px;}
  .pro-btn{padding-top:50px;}
footer{padding:40px 0 40px 0;}
.owl-next{float:right;margin-right: -30px;margin-top: -120px;}
.owl-prev{float:left;margin-left: -30px;margin-top: -120px;}
#product_slide .owl-next{display:none;}
#product_slide .owl-prev{display:none;}
.fa-caret-right,.fa-caret-left{font-size:30px;}
.accordion-item{margin-bottom:20px;}
textarea.form-control{height:120px!important;}
.fa-brands{color:#ffffff!important;}
.entry-content{margin-top:20px;}
.entry-content ul li{font-size:16px!important;margin-bottom:10px;}
.entry-content ol li{font-size:16px!important;margin-bottom:10px;margin-left:15px;}
.dwn_btn{color:#51736d;}
.post-thumbnail{float:left;width:100%;margin-bottom:20px;}
footer p{color:#51736d;}
.blog_section{margin-top:60px;}
#sidebar a{color:#51736d!important;}
.blog_title{font-size:24px;}
.blog_box{padding:20px;border:solid 1px #51736d;}
.navigation{text-align:center;margin:30px 0 30px 0;}
.current{background-color:#51736d!important;}
@media(max-width:992px){
	.top-bar .social-links{display:none;}
	header{height:90px;}
	.logo img{width:50%;}
	.navbar-toggle{margin-top:-75px;}
	.btn_wrap{display:none;}
	ul.navbar-nav{height:100%;}
	.navbar-collapse{background-color:#ffffff;margin-top:-68px;float:left;width:100%;}
	ul.navbar-nav li{font-size:18px;margin-bottom:15px;}
	.hero{padding-top:0px;}
	.hero-content{text-align:center;}
	.introduction-section{padding:0px;}
	.hero-buttons1{margin-bottom:20px;text-align: center;}
	.product-card{margin-bottom:20px;}
	.testimonial-card{margin-bottom:20px;}
	.accordion-item{margin-bottom:20px;}
	.team-section{padding:20px 0 30px 0;}
	.team-card{margin-bottom:20px;}
	.touch-box{background-color:#ffffff;text-align:center!important;}
	.touch-box img{width:25%;display:block;margin:auto;}
	.touch-text{text-align:center;}
	.touch-para{text-align:center;}
	.massage-section{padding:50px 0;} 
	.pro-btn {padding-top: 10px;text-align: center;}
	.contact-info a {font-size:12px;}
}