/* 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;
}

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

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

.contact-info i {
    margin-right: 5px;
    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;
}

.logo {
    display: flex;
    align-items: center;
}

.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-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #51736d !important;
}

.quote-btn {
    background: #51736d;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.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;*/
}

.why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #030303;
    margin-bottom: 60px;
    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 h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #51736d;
    margin-bottom: 10px;
}

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

/* Products Section */
.products {
    
}

.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;
}

/* 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 {

    color: black;
}

.available-on h3 {
    font-size: 2.5rem;
    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;
}

.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;
}

.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;
}

.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;
}

.footer h5 {
    font-size: 1.2rem;
    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;
}

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

.contact-info p {
    color: #51736d;
    margin-bottom: 10px;
}

.contact-info i {
    color: #51736d;
    margin-right: 10px;
    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;
}



/* 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: white;
    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%;
}

.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: 80px 0;
    background-color:#51736d;
    position: relative;
}

.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: 1.1rem;
}

/* 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:90px 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;margin-left:40px;margin-top:-80px;}
.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;}
.contact-info a{color: #51736d;text-decoration:none;}


@media(max-width:992px){
	.logo img{width:25%!important;}
	.navbar {
    margin-top: -74px;
		
}
	.hero{padding:50px 0 50px 0;}
	.hero-image{margin-top:20px;}
}