/* ========== Base Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.professional-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
  }
  
  .professional-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
  }
  
  .professional-btn:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  

  .contact-hero {
    background: linear-gradient(to right, #ffffff, #f4f4f4);
    padding: 80px 20px 40px;
    text-align: center;
    border-bottom: 2px solid #000;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 10px;
}

.contact-hero .subheading {
    font-size: 1.125rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #fafafa;
}

.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #ddd;
    border-left: 4px solid #000000;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
}

.contact-card p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 12px;
}

.contact-form-section {
    background-color: #fefefe;
    padding: 60px 20px;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    color: #000;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* ========== Faint Background Image for Contact Hero ========== */
.contact-hero {
    background: linear-gradient(to right, #ffffff, #f4f4f4);
    padding: 80px 20px 40px;
    text-align: center;
    border-bottom: 2px solid #000;
    position: relative;
    overflow: hidden;
}

/* Faint watermark-style image */
.contact-hero::before {
    content: "";
    background-image: url('assets/logo2.jpeg');
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.08; /* adjust for visibility */
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}






.footer-powered {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 5px;
    text-align: center;
    opacity: 0.8;
  }
  
  .footer-powered a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
  }
  
  .footer-powered a:hover {
    text-decoration: underline;
    color: #fff;
  }
  

.contact-hero h1,
.contact-hero .subheading {
    position: relative;
    z-index: 1;
}

.section-heading {
    border: 2px solid #000;  /* black border */
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    background-color: #f9f9f9; /* subtle contrast */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* soft shadow */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.contact-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 5px solid #000;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .contact-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .contact-box p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .contact-box a {
    color: #000;
    text-decoration: underline;
  }
  
  .location {
    margin-top: 20px;
  }
  
  .location h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .machinery-showcase {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: 60px 20px;
    text-align: center;
  }
  
  .machinery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
  }
  
  .machinery-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: black;
    display: block;
    margin: 10px auto 0;
  }
  
  .machinery-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #444;
    margin-bottom: 40px;
    font-size: 1.1rem;
  }
  
  .machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .machine-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .machine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }
  
  .machine-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .machine-card:hover img {
    transform: scale(1.05);
  }
  
  .machine-caption {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px;
    color: #333;
  }

  /* Fade and slide-in animation */
@keyframes fadeInSlideDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-down {
    animation: fadeInSlideDown 1s ease-out forwards;
    opacity: 0; /* Ensure hidden until animated */
  }
  
  

/* ========== Layout ========== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== Header ========== */
header {
    background-color: #000000;
    padding: 10px 0;
    border-bottom: 2px solid #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 110px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #ffffff;
    width: 0;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
}

nav ul li a:hover::after {
    width: 100%;
}

/* ========== Hero Section ========== */
.hero {
    padding: 100px 20px 60px;
    text-align: center;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.hero .tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000000;
}

.hero .subheading {
    font-size: 1.125rem;
    font-weight: 400;
    color: #444444;
    margin-bottom: 25px;
}

.service-gallery {
    margin-top: 10px;
  }
  
  .service-gallery img {
    width: 100%;
    max-width: 600px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .responsive-organogram {
    width: 100%;
    height: auto;
    max-width: 950px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  

/* ========== Section Lists ========== */
ul.services-overview,
ul.service-list,
ul.affiliations,
ul.team {
    list-style: none;
    margin: 40px auto;
    padding: 0;
    max-width: 900px;
}

ul.services-overview li,
ul.service-list li,
ul.affiliations li,
ul.team li {
    background-color: #f8f8f8;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-left: 4px solid #000000;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ========== Stats Section ========== */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 900px;
}

.stats div {
    flex: 1 1 200px;
    border: 2px solid #000000;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ========== Project Cards ========== */
.project {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 6px solid #000000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.project h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #000000;
}

.project p {
    font-size: 1rem;
    color: #333333;
}

/* ========== Footer ========== */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 4px solid #ffffff;
}

footer p {
    margin: 6px 0;
    font-size: 0.9rem;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 12px;
        padding-top: 10px;
    }

    header .container {
        flex-direction: column;
    }

    .hero {
        padding: 60px 20px 40px;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .tagline {
        font-size: 1.6rem;
    }

    header .logo img {
        height: 80px;
    }



    a.Explore services button {
        padding: 1px 6px;
        border: 1px outset buttonborder;
        border-radius: 3px;
        color: buttontext;
        background-color: buttonface;
        text-decoration: none;
    }
    
    .vision-section {
        text-align: center;
        padding: 60px 20px;
        max-width: 800px;
        margin: 0 auto;
        border-top: 2px solid #000000;
        border-bottom: 2px solid #000000;
        background-color: #fafafa;
    }
    
    .vision-icon {
        font-size: 48px;
        color: #000000;
        margin-bottom: 16px;
    }
    
    .vision-section h2 {
        font-size: 2rem;
        font-family: 'Playfair Display', serif;
        margin-bottom: 10px;
        color: #000000;
    }
    
    .vision-section p {
        font-size: 1.125rem;
        color: #333333;
        max-width: 600px;
        margin: 0 auto;
    }
    .vision-section {
        text-align: center;
        padding: 60px 20px;
        max-width: 800px;
        margin: 0 auto;
        border-top: 2px solid #000000;
        border-bottom: 2px solid #000000;
        background-color: #fafafa;
    }
    
    .vision-icon {
        font-size: 48px;
        color: #000000;
        margin-bottom: 16px;
    }
    
    .vision-section h2 {
        font-size: 2rem;
        font-family: 'Playfair Display', serif;
        margin-bottom: 10px;
        color: #000000;
    }
    
    .vision-section p {
        font-size: 1.125rem;
        color: #333333;
        max-width: 600px;
        margin: 0 auto;
    }

    .mission-section {
        text-align: center;
        padding: 60px 20px;
        max-width: 800px;
        margin: 0 auto;
        border-top: 2px solid #000000;
        border-bottom: 2px solid #000000;
        background-color: #fefefe;
    }
    
    .mission-icon {
        font-size: 48px;
        color: #000000;
        margin-bottom: 16px;
    }
    
    .mission-section h2 {
        font-size: 2rem;
        font-family: 'Playfair Display', serif;
        margin-bottom: 10px;
        color: #000000;
    }
    
    .mission-section p {
        font-size: 1.125rem;
        color: #333333;
        max-width: 700px;
        margin: 0 auto;
    }

    .values-section {
        text-align: center;
        padding: 60px 20px;
        max-width: 800px;
        margin: 0 auto;
        border-top: 2px solid #000000;
        border-bottom: 2px solid #000000;
        background-color: #f9f9f9;
    }
    
    .values-icon {
        font-size: 48px;
        color: #000000;
        margin-bottom: 16px;
    }
    
    .values-section h2 {
        font-size: 2rem;
        font-family: 'Playfair Display', serif;
        margin-bottom: 20px;
        color: #000000;
    }
    
    .core-values-list {
        list-style: none;         /* removes bullets */
        padding: 0;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .core-values-list li {
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
        font-size: 1.1rem;
        color: #333333;
        font-weight: 500;
    }
    
    .core-values-list li:last-child {
        border-bottom: none;
    }
    

    
   
    
   
    .project-category {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .project-category h2 {
        font-size: 1.8rem;
        font-family: 'Playfair Display', serif;
        color: #000;
        margin-bottom: 20px;
        border-bottom: 2px solid #000;
        display: inline-block;
        padding-bottom: 5px;
    }
    
    .table-container {
        overflow-x: auto;
        margin-top: 20px;
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 40px;
    }
    
    table, th, td {
        border: 1px solid #ddd;
    }
    
    th, td {
        padding: 12px 15px;
        text-align: left;
        font-size: 0.95rem;
    }
    
    th {
        background-color: #000;
        color: #fff;
        font-weight: 600;
    }
    
    tr:nth-child(even) {
        background-color: #f9f9f9;
    }
 
 
}

