/* Variables & Reset */
:root {
    --primary: #f26522; /* Saffron/Orange from logo */
    --secondary: #ffb400; /* Yellow/Saffron */
    --dark: #333333;
    --light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

.hero {
    height: 90vh;
    /* Adding a subtle leather texture overlay */
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.9) 0%, rgba(255, 180, 0, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1590674116081-d9352e035d3b?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    color: var(--dark);
}

.section {
    padding: 80px 0;
}

.bg-light { background-color: var(--light); }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-block { width: 100%; }

/* Navbar */
header {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--dark);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, #f26522 0%, #ffb400 100%);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.wave-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 3px solid var(--secondary);
}

.highlight-item .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Product Section */
/* Updated Product Card Styles */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(242, 101, 34, 0.2); /* Saffron glow on hover */
}

.product-img-container {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    overflow: hidden;
    border-bottom: 4px solid var(--primary);
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This crops the image perfectly to fill the space */
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.1); /* Subtle zoom effect on hover */
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.3rem;
}

.product-info p {
    font-size: 0.95rem;
    color: #666;
}

/* Manufacturing */
.manufacturing-container {
    background: #333;
    color: white;
    padding: 50px;
    border-radius: 20px;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1590674116081-d9352e035d3b?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
}

.manufacturing-content h2 { color: var(--secondary); margin-bottom: 20px;}

.cap-list {
    list-style: none;
}

.cap-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.cap-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #aaa;
    margin: 0 15px;
    text-decoration: none;
}

.footer-copy {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real project, add JS to toggle a mobile menu */
    }
    .hero { height: 70vh; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
}