@charset "utf-8";
/* CSS Document */

:root {
            /* Core Industrial Colors */
            --industrial-primary: hsl(210, 85%, 25%);
--industrial-primary-light: hsl(210, 85%, 35%);
--industrial-primary-dark: hsl(210, 85%, 15%);
            
            /* Energy Orange Accent */
            --energy-accent: hsl(25, 95%, 55%);
--energy-accent-light: hsl(25, 95%, 65%);
            
            /* Professional Grays */
            --professional-gray: hsl(210, 10%, 95%);
--professional-gray-dark: hsl(210, 10%, 85%);
--text-secondary: hsl(210, 10%, 45%);
--background: hsl(0, 0%, 100%);
--foreground: hsl(210, 15%, 15%);
            
            /* Trust & Certification Colors */
            --trust-green: hsl(140, 65%, 35%);
--certification-blue: hsl(210, 85%, 20%);
            
            /* Shadows */
            --shadow-card: 0 4px 6px -1px hsla(210, 85%, 25%, 0.1), 0 2px 4px -1px hsla(210, 85%, 25%, 0.06);
--shadow-elevated: 0 10px 15px -3px hsla(210, 85%, 25%, 0.1), 0 4px 6px -2px hsla(210, 85%, 25%, 0.05);
--shadow-hero: 0 20px 25px -5px hsla(210, 85%, 25%, 0.15), 0 10px 10px -5px hsla(210, 85%, 25%, 0.1);
            
            /* Transitions */
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 94%;
}
/* Hero Section */
.hero {
    min-height: 100vh;
   
	background: linear-gradient(135deg, var(--industrial-primary) 0%, var(--industrial-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-1{background-image: url("../images/banner-1.png") !important;}
.hero-bg-2{ }
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect width="1000" height="1000" fill="%23ffffff" opacity="0.1"/><path d="M0 0h1000v1000H0z" fill="url(%23grid)"/><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></pattern></defs></svg>');
	z-index: -1
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 4xl;
}
.hero h1 {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--energy-accent);
    margin-bottom: 0.5rem;
}.logo-1{width: auto; height: 80px; margin: 25px 0px; padding: 20px; background: #fff; border: 1px solid #ccc}
.stat-label {
    color: rgba(255, 255, 255, 0.8);
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary {
    background: var(--energy-accent);
    color: white;
}
.btn-primary:hover {
    background: var(--energy-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background: white;
    color: var(--industrial-primary);
    transform: translateY(-2px);
}
.btn-industrial {
    background: var(--industrial-primary);
    color: white;
}
.btn-industrial:hover {
    background: var(--industrial-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}
/* Sections */
.section {
    padding: 5rem 0;
}
.section-gray {
    background: linear-gradient(180deg, var(--professional-gray) 0%, var(--background) 100%);
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--industrial-primary);
    text-align: center;
    margin-bottom: 2rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}
/* Cards */
.card {
    background: white;
    border: 1px solid hsl(210, 20%, 90%);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-smooth);
}
.card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}
.elevated-card {
    box-shadow: var(--shadow-elevated);
}
.elevated-card:hover {
    box-shadow: var(--shadow-hero);
    transform: translateY(-8px);
}
/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
/* Advantages Section */
.advantage-item {
    display: flex;
    gap: 1rem;
}
.advantage-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--industrial-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.advantage-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--industrial-primary);
    margin-bottom: 0.75rem;
}
.advantage-content p {
    color: var(--text-secondary);
}
/* Materials Section */
.material-category {
    margin-bottom: 1.5rem;
}
.material-category h4 {
    font-weight: 600;
    color: var(--industrial-primary);
    margin-bottom: 0.75rem;
}
.material-types {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.badge {
    background: var(--professional-gray);
    color: var(--industrial-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}
/* Specifications */
.spec-list {
    list-style: none;
}
.spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.spec-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--energy-accent);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}
/* Applications */
.application-area {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.application-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--industrial-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.application-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--industrial-primary);
    margin-bottom: 1rem;
}
.application-list {
    list-style: none;
}
.application-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size:1.1rem;
}
.app-bullet {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--energy-accent);
    border-radius: 50%;
    margin-top: 0.625rem;
    flex-shrink: 0;
}
/* Certifications */
.cert-item {
    text-align: center;
}
.cert-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--trust-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.cert-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--industrial-primary);
    margin-bottom: 0.75rem;
}
.cert-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(210, 20%, 90%);
    border-radius: 0.5rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--industrial-primary);
    box-shadow: 0 0 0 3px hsla(210, 85%, 25%, 0.1);
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
/* Contact Info */
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--industrial-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-content h4 {
    font-weight: 600;
    color: var(--industrial-primary);
    margin-bottom: 0.25rem;
}
.contact-value {
    color: var(--industrial-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.contact-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
/* Animations */
.fade-in {
    /*opacity: 0;*/
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.scale-in {
    /*opacity: 0;*/
    transform: scale(0.95);
    transition: all 0.6s ease-out;
}
.scale-in.visible {
    /*opacity: 1;*/
    transform: scale(1);
}

.hero-content h1{ font-size: 44px ;}
/* Responsive Design */
@media (max-width: 768px) {
.hero h1 {
    font-size: 2.5rem;
}
.section-title {
    font-size: 1.5rem;
    line-height:2rem;
}
.section {
    padding: 2rem 0;
}
.hero-buttons {
    flex-direction: column;
    align-items: center;
        margin-bottom: 0rem;
}
.btn {
    width: 100%;
    max-width: 300px;
}
.grid-cols-2, .grid-cols-3 {
    grid-template-columns: 1fr;
}
.form-row {
    grid-template-columns: 1fr;
}
.hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
}
}

@media (min-width: 640px) {
.hero-buttons {
    flex-direction: row;
    justify-content: center;
}
.btn {
    width: auto;
}
}

@media (min-width: 768px) {
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1024px) {
.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
}
/* Utility Classes */
.text-center {
    text-align: center;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mt-8 {
    margin-top: 2rem;
}
.w-full {
    width: 100%;
}

.footer-heading-1{font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1.5rem;}
		.footer-heading-2{font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); max-width: 800px; margin: 0 auto;}
@media screen and (max-width:830px){
	.logo-1{width: auto; height: 60px; margin: 18px 0px; padding:5px; background: #fff; border: 1px solid #ccc}
	    .hero h1 {
        font-size: 1.5rem;
        padding:10px 5%;
        margin:0px;
    }
	.hero p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
     padding:10px 5%;
}
	.stat-number {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
	.hero-stats {
   
    margin-top: 2rem;
}
	    .hero-stats {
       
        gap: 0.5rem;
    }
	
	
	.footer-heading-1{font-size: 2rem; font-weight: 600;  margin-bottom: 1.1rem;}
		.footer-heading-2{font-size: 1rem;}
		
		.hero-content{    background: rgba(0, 0, 0, 0.4); padding:10px 5px 20px 5px;}
		
		.btn {
   
    padding:0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 400;
   
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.8rem;
}
.hero-stats{padding-bottom:40px;}
	
	.section-subtitle {
 
    margin: 0 auto 2rem;
}

.card {
   
    padding:1rem;
}
.mb-8 {
    margin-bottom:1rem;
}
.footer-heading-1{ font-size: 1.5rem; margin:0px;padding:0px;}

}