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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e74c3c;
}

.logo img {
    height: 40px;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    text-decoration: none;
    font-size: 1.2rem;
}

.cta-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #c0392b;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #ff6b35, #f7931e, #ffcc02, #8bc34a); */
    padding: 25px 0 0px; /* previous = 120px */
    margin-top: 80px;
}

.hero-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-item img {
    max-height: 200px;
    object-fit: contain;
}

/* Company Description */
.company-description {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.company-description h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.company-description p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* About Us */
.about-us {
    padding: 60px 0;
    text-align: center;
}

.about-us h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-us p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.read-more-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #c0392b;
}

/* Milestone */
.milestone {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 60px 0;
}

.milestone-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.milestone-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.year {
    font-size: 4rem;
    font-weight: 700;
    margin: 1rem 0;
}

.start-btn {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.milestone-image img {
    width: 100%;
    border-radius: 10px;
}

.milestone-image p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.milestone-products img {
    width: 100%;
    max-width: 120px;
}

/* Leadership */
.leadership {
    padding: 60px 0;
    background: #f8f9fa;
}

.leadership h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.leadership-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    background: transparent;
    border: 2px solid #ddd;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.leader-card {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.leader-card img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.leader-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.leader-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Initiatives */
.initiatives {
    padding: 60px 0;
}

.initiatives h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.initiative-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.initiative-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.initiative-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.initiative-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Wadia Group */
.wadia-group {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.wadia-group img {
    margin-bottom: 2rem;
}

.wadia-group h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.wadia-group p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Awards */
.awards {
    padding: 60px 0;
    background: #f8f9fa;
}

.awards h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.award-card img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.award-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Joint Ventures */
.joint-ventures {
    padding: 60px 0;
}

.joint-ventures h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.venture-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.venture-card img {
    height: 60px;
    margin-bottom: 1rem;
}

.venture-card h3 {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.venture-card h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.venture-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #f39c12;
    color: #2c3e50;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-left, .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .milestone-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .ventures-grid {
        grid-template-columns: 1fr;
    }
    
    .company-description h1 {
        font-size: 2rem;
    }
    
    .year {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .company-description h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}