
        :root {
            --primary-color: #448595;
            --accent-color: #87CEEB;
            --text-color: #333;
			
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
		
/* Navbar Styles  ------- */

/*    nav {		
		background-color: var(--primary-color);
		padding: 0rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 10px;
    }
	
    .logo img {
        height: 60px;
    }
    
	nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
    }
    
	nav ul li {
        position: relative;
    }
    
	nav ul li a {
        display: block;
        padding: 14px 20px;
        color: white;
        text-decoration: none;
    }
    
	nav ul li a:hover {
        background-color: #34495e;
    }

    /* Dropdown 
    nav ul li ul {
        display: none;
        position: absolute;
        background-color: #34495e;
        min-width: 250px;
        z-index: 1;
    }
    
	nav ul li:hover ul {
        display: block;
    }
    
	nav ul li ul li a {
        padding: 3px;
    }
    
	nav ul li ul li a:hover {
        background-color: #3d566e;
    }

    /* Hamburger 
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 14px 20px;
    }
    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
    }

    /* Mobile Styles 
    @media (max-width: 768px) {
        nav {
            flex-wrap: wrap;
        }
        nav ul {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #2c3e50;
        }
        nav ul.show {
            display: flex;
        }
        nav ul li {
            width: 100%;
        }
        nav ul li ul {
            position: static;
        }
        nav ul li:hover ul {
            display: none;
        }
        nav ul li.active ul {
            display: flex;
            flex-direction: column;
        }
        .hamburger {
            display: flex;
        }
    }
------------------------------------------------------------------------- old menu ends-------- */
/* New Menu ------------------------------------------------------------------------------------ */

        .navbar {
            background: var(--primary-color);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

		.phone-number {
			padding-top: 20px;
		}
        .logo {

            padding: 5px 0px;			
        }

		.logo img {
			height: 60px;
		}
		
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 20px 25px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: white;
            background: rgba(102, 126, 234, 0.1);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 250px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
			font-size: 12px;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 1px 5px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-item:last-child {
            border-bottom: none;
            border-radius: 0 0 8px 8px;
        }

        .dropdown-item:first-child {
            border-radius: 8px 8px 0 0;
        }

        .dropdown-item:hover {
            background: #667eea;
            color: white;
            transform: translateX(5px);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
			
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;			
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Demo Content */
        .content {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            text-align: center;
        }

        .content h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 0;
            }

            .nav-link {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(102, 126, 234, 0.1);
                border-radius: 0;
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-item {
                padding: 5px 20px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .content h1 {
                font-size: 1rem;
            }

            .content p {
                font-size: 1rem;
            }
        }    
	
	/* Hero Section */

/*
    .hero {
     /* position: relative;
        max-width: 100%;
        height: 500px;
        overflow: hidden;
				
    }
    .slides {
        display: flex;
        width: 300%;
        transition: transform 1s ease-in-out;
    }
    .slides img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }  */
	
        .hero-section {
            position: relative;
            height: 90vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 90%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 95%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(45deg, #ff5252, #26c6da);
        }

        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .indicator {
            width: 0px;
            height: 0px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .navigation-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            transition: all 0.3s ease;
            user-select: none;
        }

        .navigation-arrows:hover {
            background: rgba(0, 0, 0, 0.6);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: 30px;
        }

        .next-arrow {
            right: 30px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 0 15px;
            }

            .navigation-arrows {
                font-size: 1.5rem;
                padding: 8px;
            }

            .prev-arrow {
                left: 15px;
            }

            .next-arrow {
                right: 15px;
            }

            .slide-indicators {
                bottom: 20px;
            }

            .hero-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .navigation-arrows {
                display: none;
            }

            .hero-title {
                margin-bottom: 0.8rem;
            }

            .hero-subtitle {
                margin-bottom: 1.5rem;
            }
        }	

    /* End Hero Section */

/* about us section */

        /* About Section */
		
		.home-about-cards-container {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 1.5rem;
			align-items: center;
            max-width: 1400px;
            margin: 0 auto;
			
		}
        .about-section {
            padding: 2rem 1rem;
            background-color: #fff;
        }
 
        .body-grid1 {				
			display: flex;
			flex-direction: row;
			gap: 10px;
			align-items: top;
		  }

        .hero-aboutus {
            background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0)),
            url('images/aboutus-hero.jpg') center/cover no-repeat;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            padding: 1rem;			
        }		  

        .about-content {
			display: flex;
			flex-direction: column;
			padding: 10px 10px;
			align-items: center;
			justify-content:center;			
		}

        .hero-aboutus h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
			color: #fffff0;
			text-shadow: 2px 2px blue;
        }
        
		.about-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            position: relative;
        }
        
        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #3498db;
        }



        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);	
			object-fit: cover;	
        }

		@media (max-width: 768px ) {

		.body-grid1 {
			display: flex;
			flex-direction: column;			
		}
		
		.about-image{
			display: flex;
			justify-content: center;
		}
		
        .about-image img {
			display: flex;
			
            width: 100%;
            height: auto;

            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);	

			justify-content: center;	
			
        }	

		.home-about-cards-container {
			
			grid-template-columns: repeat(1, 1fr);		
		}

        .about-content {
			
			padding: 0px 0px;
			margin: 20px;
			align-items: center;
			text-align: justify;
			
		}
		
		}
 /* Values Section */
        .values-section {
			padding: 2rem 0;
			display: flex;
			flex-wrap: wrap;
			background-color: #f5f7fa;
			justify-content: center;
			
        }


        .values-heading {
			display: flex;
			flex-direction: column;
			text-align: center;
			margin-bottom: 3rem;
			justify-content: center;
        }
		
		.values-heading p{
			font-size: 1.5rem;
		}
        
        .values-heading h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
		
		@media (max-width: 768px) {  
			.values-heading h2 {	
				font-size: 6vw; 
			}

		.values-heading p{
			font-size: 5vw;
		}			
		}
			
        .values-cards {
/*          display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 2vw; */
			margin: 20px;
			display: flex;
			flex-direction: row;
			flex-wrap: wrap;
			justify-content: center;
			gap: 10px;
        }

        .value-card {
            background-color: #fff;
            border-radius: 10px;
			max-width: 250px;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
		.value-card p {
			
			font-size: 18px;	
		}	

		@media (max-width: 768px) {   
		
			.value-card {
				max-width: 350px;	
			}	
			.value-card p {
				font-size: 4vw; 
			}


		}		
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-card h3 {
            font-size: 2.5vw;
            margin: 1vw 0;
            color: #2c3e50;
        }
 		@media (max-width: 768px) {  
			.value-card h3 {
				font-size: 4.5vw;

			}			

		}	
        .value-icon {
            font-size: 2.5rem;
            color: #3498db;
        }

/* -------------- */		
		.section-header {
            position: relative;
			text-align: center;
            margin-bottom: clamp(2rem, 4vw, 4rem);
        }

        .section-header h2 {
            font-size: clamp(2rem, 3vw, 2.5rem);
            color: #333;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .cards-container {
			
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 1.5rem;
			align-items: center;
        }

        .card-title {
            font-size: 1.25rem;
            color: #333;
            margin-bottom: 0.75rem;
        }

        .card-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
			text-align: justify;
        }

        .card-button {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            font-size: 0.9rem;

        }

        .card-button:hover {
            background-color: #0056b3;
        }

        /* Ensure minimum tap target sizes on mobile */
        @media (max-width: 768px) {
            .card-button {
                padding: 0.6rem 1.0rem;
                width: 90%;
                text-align: center;
            }

            .cards-container {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
        }

        /* Credentials Section */
		
		.credentials-container {
			padding: 10px;
			display: flex;
			flex-direction: column;
			width: 90%;
			background: #f9f9f9;
			justify-content: center;
			border-radius: 10px;
            padding: min(2rem, 10px); 			
		}
		
        .credentials-section {
			display: flex;
            padding: 1rem 0;
            background-color: #fff;
			justify-content:center;
        }
        
        .credentials-heading {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .credentials-heading h2 {
            font-size: 2vw;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
  
		@media (max-width: 768px) {

        .credentials-section {
			display: flex;
            padding: 1rem 0;
            background-color: #fff;
			justify-content:center;
        }			
			
			.credentials-heading h2 {
				font-size: 5vw;
				margin-bottom: 1rem;
				color: #2c3e50;
			}			
		
			.credentials-heading p {
				font-size: 4vw;
				margin-bottom: 1rem;
				color: #2c3e50;
			}			
		
		}
		
        .credentials-grid {
            display: flex;
			flex-direction: row;
			flex-wrap:wrap;
           /* grid-template-columns: repeat(auto-fit, minmax(280px, 4fr)); */
            gap: 2rem;
			justify-content: center;
        }
        
        .credential-card {
            background-color: #fff;
			width: 320px;
            border-radius: 10px;
            padding: min(2rem, 10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            border: 1px solid #eaeaea;
        }
        
        .credential-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .credential-logo {
            width: 280px;
            height: auto;
            margin: 0 auto 1.5rem;
            padding: 1rem;
            border-radius: 10px;
            background-color: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .credential-logo img {
            max-width: 100%;
            max-height: 350px;
			object-fit: cover;
        }
        
        .credential-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }
        
        .credential-card p {
            margin-bottom: 1rem;
            color: #7f8c8d;
        }
        
        .certificate-number {
            font-size: 0.9rem;
            background-color: #f0f4f8;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            display: inline-block;
            color: #34495e;
        }


        /* Call to Action */
        .cta-section {
            padding: 4rem 0;
            background-color: #3498db;
            color: #fff;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #fff;
            color: #3498db;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #2c3e50;
            color: #fff;
        }
        
        /* Responsive Styles */
        @media (max-width: 480px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-aboutus h1 {
                font-size: 2.2rem;
            }
            
            .about-image {
				justify-content: center;
				width: 100%;
				height: auto;
                order: -1;
            }
        }

/* about us section Ends */

/* Products Section */

		.products-container{
			display: flex;
			align-items: center;
			
		}	

		.products-section{
			display: flex;
			align-items: center;
			
		}	
        .product-section {
            padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
            background-color: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(1.5rem, 3vw, 3rem);
        }

        .section-header h2 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: #333;
            margin-bottom: 0.75rem;
        }

		.section-header a {
			color: gray;
			text-decoration: none;
		}
		
        .section-header p {
            font-size: clamp(0.9rem, 1.2vw, 1rem);
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }

		.cards-container {
			display: grid;
			grid-template-columns: repeat(6, 1fr);
			gap: 1rem;
			align-items: center;
            max-width: 1400px;
            margin: 0 auto;
			
		}	
        
		.product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            position: relative;
            padding-top: 100%;
            overflow: hidden;
            cursor: pointer;
        }

        .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-content {
            padding: 0.75rem;
        }

        .product-title {
            font-size: 0.9rem;
            color: #333;
            margin-bottom: 0.25rem;
            font-weight: 500;
            line-height: 1.3;
        }

        .product-description {
            color: #666;
            font-size: 0.8rem;
            line-height: 1.4;
        }

        .badge {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background-color: #ff4757;
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        /* Responsive adjustments */
/*        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
*/

        @media (max-width: 768px) {
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
       }
		
/* Products Section Ends*/

/* ---- Review Section ------- */

        .review-section {
            padding: clamp(2rem, 4vw, 4rem);
            background-color: #f8f9fa;
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(2rem, 4vw, 3rem);
        }

        .section-header h2 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: #333;
            margin-bottom: 0.75rem;
        }

        .section-header p {
            font-size: clamp(0.9rem, 1.2vw, 1rem);
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .reviews-grid {
			display: grid;	
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            overflow: hidden;
        }

        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reviewer-info {
            flex-grow: 1;
        }

        .reviewer-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.25rem;
        }

        .review-date {
            font-size: 0.85rem;
            color: #666;
        }

        .stars {
            color: #ffd700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .review-text {
            color: #444;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .product-info {
            font-size: 0.9rem;
            color: #666;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            background-color: #e3f2fd;
            color: #1976d2;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-top: 0.5rem;
        }

        .verified-badge svg {
            width: 14px;
            height: 14px;
            margin-right: 0.25rem;
        }

        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        

/* --- Review Section Ends ----- */ 

/* contact section home page start */

/* Contact Section */ 

        .home-contact-container {
			
            padding: clamp(2rem, 4vw, 4rem);
            background-color: white;
        }

        .home-contact-section-header {
            text-align: center;
            margin-bottom: clamp(2rem, 4vw, 3rem);
        }

        .home-contact-section-header h2 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: #333;
            margin-bottom: 0.75rem;
        }

        .home-contact-section-header p {
            font-size: clamp(0.9rem, 1.2vw, 1rem);
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .home-contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .home-contact-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }


		.home-contact-header{
				
				justify-content: center;
		}
		
		.reviewer-name1 {
			font-size: 24px;
			font-weight: 600;
			color: #333;
			margin-bottom: 0.25rem;
			text-align: center;
        }

		.company-name {
            font-size: 18px;
            font-weight: bold;
            color: navy;
            margin-left: 5px;
		}

        .product-info1 {
            font-size: 0.9rem;
            color: #666;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .map1 {           
			width: 250px;
			height: 200px;
            margin-top: 20px;
            border-radius: 4px;
            overflow: hidden;
        }		

	 
        /* Responsive Design */
        @media (max-width: 768px) {

            .home-contact-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }


/*
			.home-contact-container {
				display: flex;
				flex-direction: column;
				justify-content: center;
			}

			.home-contact-section {
				padding: 10px;
				display: flex;
				flex-direction: column;
				justify-content: center;
				width: 80%;		
			}

			.contact-wrapper {
				display: flex;
				width: 90%;
				padding: 10px;
				margin: 10px;
			}
			
			.home-contact-container h1 {
									
			}	

			.contact-container {
				max-width: 100%;
				margin: 0 auto;
				justify-content: center;				
			}

			
			.contact-container {
				max-width: 100%;
				margin: 0 auto;
				padding: 10px;				
			}

			
            .contact-section {
                flex-direction: column;
				align-items: center;
            }
            
            .contact-form, .social-media, .address-info {
                width: 85%;
				padding: 0px;
				margin: 0px;
            }
			
			.map1 img {
				
				width: 100%;
			}
			 */
        }

/*  Contact Home Page ends --- */




/* ------------ Product Catalog Page ------------------------------------------------------------------------------------- Product Catalog Page ------------------------- */ 

		.hero-product-page {

		}

		.hero-product-page-sub	{
			background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0)),
            url('images/category-hero2.jpg') center/cover no-repeat;
			
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            padding: 1rem;		
		}		
		
		.hero-product-page-sub h1{
			text-shadow: 2px 2px 4px #333;
			margin-bottom: 0;
		}
		
		.hero-product-page-sub p{
			text-shadow: 1px 2px 2px white;
			margin-top: 0;
		}
		
		
		.hero-product-page h1 {			
			text-align: center;
		}	
		
        .hero-product-page p {
            max-width: 1200px;
            margin: 1rem auto;
			margin-top: 0px;
            color: #666;
			text-align: center
        }
		
		
        .header {
			margin-top: 5rem;
            text-align: center;
            margin-bottom: 3rem;
			font-size: 1rem;
            color: #fff000;				
        }

		.header h1{
				text-align: center;
				justify-content: center;
		}	
        .header p {
            max-width: 1200px;
            margin: 1rem auto;
            color: #666;
        }

        .product-cat-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 1rem;
        }

        .product-cat-card {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
		
		.product-cat-card a {
		
			text-decoration: none;
		}

        .product-cat-card:hover {
            transform: translateY(-5px);
        }

        .product-cat-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 1rem;
        }

        .product-cat-title {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .product-cat-description {
            font-size: 0.9rem;
            color: #666;
        }

        .price {
            font-weight: bold;
            color: #27ae60;
            margin-top: 0.5rem;
        }

        @media (max-width: 1200px) {
            .product-cat-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .product-cat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
			
			.hero-product-page-sub {
				display: inline-block;
			}			
        }

        @media (max-width: 480px) {
            .product-cat-grid {
                grid-template-columns: 1fr;
            }

			.hero-product-page-sub {
				display: inline-block;
			}			
        }


		

/* ------------ Service -------------------------------------------------------------------------------------------------SERVICE------------------------- */


        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            display: flex;
            min-height: 100vh;
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        .info-section {
			display: flex;
            flex: 1;
            padding: 40px;
            background-color: rgba(0, 0, 0, 0.1);
            color: black;            
            flex-direction: column;
            justify-content: center;
        }
        
        .form-section {
            flex: 1;
            padding: 40px;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
            padding-bottom: 10px;

        }
        
        .info-content {
            margin-top: 30px;
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        form {
            margin-top: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        input, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        textarea {
            height: 150px;
            resize: vertical;
        }
        
        button {
            background-color: #e53e3e;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #c53030;
        }
        
        .success-message {
            display: none;
            background-color: #48bb78;
            color: white;
            padding: 15px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .info-section, .form-section {
                padding: 20px;
				border-radius: 10px;
            }
        }
 



/* ------------ Blog ---------------------------------------------------------------------------------------------------------------------------- */

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c3e50;
            font-size: 2.5rem;
        }

        .blog-section {
			margin: 10px;
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .blog-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blog-image {
            flex: 1;
            min-height: 400px;
            background-size: cover;
            background-position: center;
        }

        .blog-category {
            background-color: #3498db;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 15px;
        }

        .blog-heading {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .blog-excerpt {
            color: #555;
            margin-bottom: 25px;
            font-size: 0.7rem;
			text-align: justify;
        }

        .blog-meta {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 25px;
        }

        @media (max-width: 768px) {
            .blog-section {
                flex-direction: column-reverse;
            }

            .blog-image {
                min-height: 250px;
            }
        }




/* -------------End Blog ----------------------------------------------------------------------------------------------------------------------- */ 

			
/* contact page code  -------------------------------------------------*/



	.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .contact-wrapper {
            display: flex;
			flex-wrap: wrap;
			width: 85%;
			padding: 1rem;
			margin: 10px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
			gap: 2rem;
        }
		.contact-page-map {
			width: 440px;
			height: 200px;
            margin-top: 20px;
            border-radius: 4px;
            overflow: hidden;
			
		}

@media (max-width: 768px) {

		.contact-page-map {
			width: 440px;
			height: 200px;
            margin-top: 20px;
            border-radius: 4px;
            overflow: hidden;	
		}
	
}
		
        .contact-page-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
			 
        }
			.contact-page-container {
				display: flex;
				justify-content: center;
			}

			.contact-info1 {
					
			}
		.company-name {
            font-size: 18px;
            font-weight: bold;
            color: #262626;
            margin-left: 5px;
		}
        .info-item {
			line-height: 10px;
            margin-bottom: 30px;
        } 
 
		.header-insta img {
				width: 40px;
				height: 40px;
		}	
		
        h1 {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
        }
 
		input, textarea {
            width: 98%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
 
 @media (max-width: 768px) {
	 
	 	.contact-page-container {
			display: flex;

		}
		input, textarea {
			width: 90%;
		}		
			
 }
 
/* ------------ --------------------- */
/*

		.home-contact-container {
           
		}	
			
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .contact-form, .social-media, .address-info {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
			 
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 10px;
            color: #2c3e50;
           /* border-bottom: 2px solid #3498db; 
            padding-bottom: 10px;*/
        }
        
        /* Form Styles  
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        input, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        textarea {
            height: 120px;
            resize: vertical;
        }
 
@media (max-width: 768px) {


		
		input, textarea {
            width: 90%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
}	
        button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #2980b9;
        }
*/ 
/* ----- contact ends------- */

        /* Social Media Styles */
        .social-icons {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }
        
        .social-icon:hover {
            color: #3498db;
        }
        
        .social-icon i {
            font-size: 24px;
            margin-right: 10px;
        }
        
        /* Address Styles  */
        .address-details p {
            margin-bottom: 10px;
        }
        
        .map {
            height: 200px;
            margin-top: 20px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        /* Success Message */
        .success-message {
            display: none;
            background-color: #2ecc71;
            color: white;
            padding: 15px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: center;
        }

/* Contact us started -------------------------- */



		
/* --- contact ends---- */		

/*---- Insta section Start----*/
		
        .container-insta {
            width: 100%;
            margin: 2rem auto;			
            border-radius: 8px;
            padding: 0rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);   
			align-items: center;	
        }

        /* Header Styles */
        .header-insta {
            background-color: #ffffff;			
            padding: 10px 10px;
			border-radius: 8px;
            border-bottom: 0px solid #dbdbdb;
            display: flex;
            align-items: center;
            gap: 1px;
			
        }

        .instagram-logo {
            font-size: 24px;
            color: #262626;
        }

        .company-name-insta {
            font-size: 18px;
            font-weight: bold;
            color: #262626;
            margin-left: 5px;
        }

        /* Image Grid Styles */
        .image-grid-insta {
			
            margin: 0px auto;
            padding: 10px 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
			box-shadow: 0 4px 6px rgba(0,0,0,0.1);
			border-radius: 8px;
			width: 80%
			background-color: white;
            gap: 0px;
			align-items: center;

        }

        .image-container-insta {
            width: 250px;
            height: 250px;
			
        }

        .image-container-insta img {
            width: 90%;           
            object-fit: cover;
            transition: transform 0.3s ease;
			
        }

        .image-container-insta:hover img {
            transform: scale(1.05);
        }

        /* Footer Styles -insta */
        .footer-insta {
            text-align: center;
            padding: 10px 10px;
            background-color: #ffffff;
            border-top: 1px solid #dbdbdb;
        }

        .instagram-follow-insta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .instagram-follow-insta i {
            font-size: 24px;
            color: #262626;
        }

        .instagram-follow-insta span {
            font-size: 18px;
            font-weight: bold;
            color: #262626;
        }

        .action-buttons-insta {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .action-button-insta {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .inquiry-btn-insta {
            background-color: #0095f6;
            color: white;
        }

        .catalog-btn-insta {
            background-color: #262626;
            color: white;
        }

        .action-button-insta:hover {
            opacity: 0.9;
        }

        .action-button-insta i {
            font-size: 16px;
        }
		.header-insta img {
				width: 40px;
				height: 40px;
		}
        /* Responsive Design */
        @media (max-width: 768px) {
			
			.container-insta {
				display: flex;
				flex-direction: column;
				align-items: center;
				width: 90%;
				background-color: white;
				padding-bottom: 20px;				
			}				
			
			.header-insta {
				width: 80%;
				display: flex;
				justify-content: center;
				
			}
            .image-grid-insta {
                padding: 0 0px;

				
            }

            .image-container-insta {
                width: 100%;
                height: auto;
                aspect-ratio: 1/1;
				display: flex;
				flex-direction: column;
				justify-content: center;
				
				
            }

			.image-container-insta img {
				    margin-left: 15px;
					padding: 15px;
					width: 80%;
					object-fit: cover;
					transition: transform 0.3s ease;
					
			
			}
			
            .action-buttons-insta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
			
		.header-insta img {
				width: 40px;
				height: 40px;
		}	
		
        }

/*---- Insta section Ends----*/



/* Footer */
 
        .footer {
            background-color: #448595;
            color: #ecf0f1;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            margin-bottom: 30px;
            min-width: 200px;
            margin-right: 20px;
        }
        
        .footer-section:last-child {
            margin-right: 0;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 8px;
            display: inline-block;
        }
        
        .quick-links ul, .product-links ul {
            list-style: none;
        }
        
        .quick-links li, .product-links li {
            margin-bottom: 10px;
        }
        
        .quick-links a, .product-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .quick-links a:hover, .product-links a:hover {
            color: #3498db;
        }
        
        .quick-links i, .product-links i {
            margin-right: 8px;
            font-size: 12px;
        }
        
        .about-us p {
            font-size: 14px;
            color: #bdc3c7;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .contact-info p {
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            margin-top: 4px;
            color: #3498db;
        }
        
        .contact-info .contact-text {
            flex: 1;
        }
        
        .social-links {
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background-color: #34495e;
            border-radius: 50%;
            color: #ecf0f1;
            text-align: center;
            line-height: 35px;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #3498db;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            text-align: center;
            margin-top: 30px;
            color: #bdc3c7;
            font-size: 11px;
        }
		
		        
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                width: 100%;
                margin-right: 0;
            }
        }

/*---------   Product Catgory Section  -----------------------------------------------------------------------    ------    Product Section  ----------------------*/

        .prod-cat-container-master {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;			
        }    
        
		.prod-cat-section-title {
			
			padding: 0px 0px 0px 0px;
			display: flex;
			width: 100%;
			height: 7vw;
            font-size: 24px;
            color: #2c3e50;
          
			text-align: center;
			justify-content: center;

        }

        .section-title1 {
            font-size: 1vw;
            margin-bottom: 2vw;
            color: #2c3e50;
           /* border-bottom: 2px solid #3498db; */
            padding-bottom: 10px;
			text-align: justify;
        }

        .section-title1 p {

			font-size: 14px;
			margin-top: 1px;
		}
		
		.prod-cat-section-title h1 {
			text-align: center;
			font-size: 30px;
			
		}

	.prod-container-details{
	
		font-size: 12px;
	}

	.link-backlink {
		
		font-size: 12px;
		
	}	

	.link-backlink a{
		
		text-decoration: none;
		
	}

@media (max-width: 768px) {

	.prod-cat-section-title {
		font-size: 5px;
		margin-bottom: 35px;
		
	}

    .section-title1 {
        font-size: 15px;
        margin-bottom: 5px;
        padding-bottom: 5px;
		text-align: justify;
    }
	
	.prod-cat-section-title h1 {
		font-size: 18px;
		text-align: center;
        margin-bottom: 25px;
        padding-bottom: 35px;
			
	}	
}	

/*--------- Jute Conference Bags ------------------------------------------------------------- Jute Conference Bags----------------------*/

        body {
            background-color: #f5f5f5;
        }

	
        .product-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            overflow: hidden;
            display: flex;
            padding: 10px;
        }
        
        .product-image1 {
            width: 500px;
            min-width: 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-right: 10px;
        }
        
        .product-image1 img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .product-details {
            flex-grow: 1;
        }
        
        .product-grid {		
		    display: table;
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 10px;
            border: 1px solid #aaa; /* Outer border for the entire grid */
		}

/* New item added */

        .product-row {
            display: table-row;
        }

        .product-label, .product-value {
			
            display: table-cell;
            padding: 5px;
            border: 1px solid #ccc;
            vertical-align: middle;			
		}

        .product-label {
            font-weight: bold;
            color: #555;
            background-color: #f9f9f9;
			padding: 10px;
        }

        .product-value {
            color: #333;
			padding: 5px;
        }

        .product-item {
            margin-bottom: 10px;
        }

/* End */

  
      .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
        }
        
        .btn-primary {
            background-color: #00b7ff;
            color: white;
        }
        
        .btn-secondary {
            background-color: #f8f8f8;
            color: #333;
            border: 1px solid #ddd;
        }
        
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 90%;
            height: 90%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;

        }
        
        .modal-content {
            background-color: white;
            width: 90%;
            max-width: 400px;
            border-radius: 8px;
            padding: 30px;
            position: relative;
            animation: modalopen 0.5s;
			
        }
        
        @keyframes modalopen {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        .close-modal {
            position: absolute;
            top: 40px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #777;
        }
        
        .close-modal:hover {
            color: #333;
        }
        
        .modal-product-info {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .modal-product-image {
            width: 120px;
            height: 120px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .form-group {
            margin-bottom: 5px;
        }
        
        .form-label {
            display: block;
			
			font-size: 14px;
			padding-top: 1px;
			padding-bottom: 1px;
            margin-bottom: 1px;
            font-weight: bold;
            color: #555;
			
        }
        
        .form-control {
            width: 100%;
            padding: 1px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
			
        }
        
        .form-control:focus {
            outline: none;
            border-color: #00b7ff;
            box-shadow: 0 0 3px rgba(0, 183, 255, 0.3);
        }
        
        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #00b7ff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #0095d1;
        }
        
        .success-message {
            color: #4CAF50;
            text-align: center;
            margin-top: 15px;
            display: none;
        }

        /* Buttons */
        .button-container {
            margin-top: 30px;
            display: flex;
            gap: 15px;
        } 
		
        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
            }
            
            .product-image1 {
                width: 100%;
                min-width: auto;
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
			.button-container {
                flex-direction: column;
            }
		
		}
		
/* -----  New Defination from pop2 ----------- */		


      /* Main Content */
        .container {
            max-width: 100%;
            margin: 20px auto;
            padding: 10 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
			background-color: #f5f5f5;
			align-items: center;
		}

        /* Product Box - Combined container for image and details */
        .product-container {
            display: flex;
            flex-wrap: wrap;
            border: 2px solid #ddd;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        /* Product Image */
        .product-image1 {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .product-image1 img {
            max-width: 100%;
            height: auto;
        }

        /* Product Details */
        .product-details {
            flex: 1;
            min-width: 300px;
			overflow: hidden;
        }

        /* Updated Grid with visible outlines */
        .product-grid {
            display: table;
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .grid-row {
            display: table-row;
        }

        .grid-label, .grid-value {
            display: table-cell;
            padding: 4px;
            border: 1px solid #ccc;
            vertical-align: middle;
        }

        .grid-label {
            font-weight: bold;
            color: #555;
            background-color: #f9f9f9;
            width: 30%;
        }

        .grid-value {
            color: #333;
            width: 70%;
        }

        .product-title {
            margin-bottom: 10px;
            color: #333;
            font-size: 20px;
        }

        /* Buttons */
        .button-container {
            margin-top: 10px;            
			display: flex;
            gap: 10px;			
        }

        .btn {
            
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #448595;
            color: white;
        }

        .btn-secondary {
            background-color: #333;
            color: white;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: #fff;
            margin-top: 30px;
            padding: 20px;
            border-radius: 8px;
            width: 40%;
            max-width: 400px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: modalopen 0.5s;
        }

        @keyframes modalopen {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        .order-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .order-header img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            margin-right: 20px;
            border-radius: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }

        .form-group input {
            width: 100%;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
		
        .form-submit {
            text-align: center;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .product-grid {
                width: 100%;
            }
            
			.product-container {
                flex-direction: column;
            }
			
            .grid-label, .grid-value {
                display: block;
                width: 100%;
            }
            
            .button-container {
                flex-direction: column;
            }
            
            .modal-content {
                width: 95%;				
                margin: 5% auto;

            }

        .form-group input {
			width: 90%;
			padding: 10px;
			border: 1px solid #ddd;
			border-radius: 5px;
			font-size: 14px;	
		} 
 }



/*--------- Jute Conference Bags ----------------------------------------------------------------------------- Jute Conference Bags----------------------*/










