/* General Reset */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* Body Styling */

body {
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}


/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}


/* Header Section */


/* Header */


/* Header Styles */

header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}


/* Navigation */

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d3a42e;
}

nav ul li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #d3a42e;
    transition: width 0.3s ease;
}

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


/* Menu Toggle for Mobile */

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-toggle i {
    color: #1f1f1f;
}


/* Responsive Navigation */

@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    nav.active {
        display: flex;
    }
    nav ul {
        flex-direction: column;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
}


/* Additional Breakpoints */

@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    .logo img {
        height: 35px;
        width: 35px;
    }
    nav ul li a {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    nav {
        position: static;
        display: flex;
        background-color: transparent;
        box-shadow: none;
    }
    nav ul {
        flex-direction: row;
    }
    .menu-toggle {
        display: none;
    }
}


/* Hero Section */

.hero {
    position: relative;
    background: url('Images/company_img.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.8);
}


/* Responsive Hero */

@media (max-width: 1024px) {
    .hero {
        padding: 15px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 10px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

#products {
    padding: 60px 20px;
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
}

.section-heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.section-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-card {
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 450px;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 400px;
    /* Increased height to make images bigger */
    object-fit: cover;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.extra-content {
    border-radius: 15px;
    text-align: center;
}

.table-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    margin-top: 60px;
}

.table-heading::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #007bff;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.modern-table {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.modern-table thead tr {
    background: #007bff;
    color: #fff;
}

.modern-table th,
.modern-table td {
    padding: 15px 20px;
    font-size: 1rem;
}

.modern-table th {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modern-table tbody tr {
    transition: background 0.3s;
}

.modern-table tbody tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.modern-table tbody tr:nth-child(even) {
    background-color: #eaf3fc;
}

.modern-table tbody tr:hover {
    background-color: #d6e8fd;
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}

.modern-table td {
    color: #555;
    line-height: 1.5;
}

.modern-table td:first-child {
    font-weight: bold;
    color: #333;
}


/* Contact Section */

.contact-content a {
    text-decoration: none;
    color: #d3a42e;
    font-weight: 500;
}

.contact-content p {
    margin: 10px 0;
}


/* Footer */

footer {
    background: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}


/* About Section */

.about {
    padding: 50px 20px;
    background: #fff;
    margin-bottom: 10px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding-right: 20px;
    text-align: justify;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.about-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Responsive Design */

@media (max-width: 1024px) {
    .about-container {
        gap: 30px;
    }
    .about-text h2 {
        font-size: 1.9rem;
    }
    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        padding-right: 0;
        text-align: justify;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }
    .about-image img {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 30px 15px;
    }
    .about-text h2 {
        font-size: 1.6rem;
    }
    .about-text p {
        font-size: 0.9rem;
    }
    .about-image img {
        width: 100%;
    }
}


/* Vision Section */

.vision-mission-section {
    padding: 50px 20px;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    /* Reduced gap for better scalability */
    flex-wrap: wrap;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    flex: 1;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.vision-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Responsive Design */

@media (max-width: 1024px) {
    .vision-mission-section {
        gap: 30px;
    }
    .card h2 {
        font-size: 1.8rem;
    }
    .card p {
        font-size: 0.95rem;
    }
    .vision-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        flex-direction: column;
        gap: 20px;
    }
    .card-container {
        max-width: 100%;
    }
    .vision-image {
        max-width: 100%;
    }
    .card h2 {
        font-size: 1.6rem;
    }
    .card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .vision-mission-section {
        padding: 30px 15px;
    }
    .card h2 {
        font-size: 1.5rem;
    }
    .card p {
        font-size: 0.85rem;
    }
    .vision-image img {
        max-width: 100%;
    }
}


/* Navbar Styling */

.navbar .logo {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}


/* Logo Image */

.navbar .logo img {
    height: 80px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.1);
}


/* Logo and Name Hover Effect */

.navbar .logo:hover .company-name {
    color: #FFD700;
    transition: color 0.3s ease;
}


/* Company Name */

.navbar .logo .company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}


/* Animating the fade-in effect */

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */

@media (max-width: 1024px) {
    .navbar .logo img {
        height: 70px;
    }
    .navbar .logo .company-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar .logo {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .navbar .logo img {
        height: 60px;
    }
    .navbar .logo .company-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar .logo img {
        height: 50px;
    }
    .navbar .logo .company-name {
        font-size: 1rem;
        text-align: center;
    }
}


/* certification Styling */

.certifications-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 40px;
}


/* Grid Layout */

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    justify-content: center;
    align-items: center;
}


/* Certificate Card */

.certificate-card {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.certificate-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.certificate-card p {
    font-size: 1rem;
    color: #333;
    margin-top: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


/* Modal Styling */

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal .close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.image-modal .close-button:hover {
    color: #ccc;
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}


/* Responsive Design */

@media (max-width: 768px) {
    .certificate-card {
        padding: 15px;
    }
    .certificate-card p {
        font-size: 0.95rem;
    }
    .image-modal .close-button {
        top: 10px;
        right: 15px;
        font-size: 1.6rem;
    }
    .image-modal .modal-content {
        max-width: 95%;
        max-height: 85%;
    }
}

@media (max-width: 480px) {
    .certificate-card {
        padding: 10px;
    }
    .certificate-card p {
        font-size: 0.9rem;
    }
    .image-modal .close-button {
        top: 5px;
        right: 10px;
        font-size: 1.5rem;
    }
    .image-modal .modal-content {
        max-width: 100%;
        /* Use full width */
        max-height: 80%;
    }
}


/* Team Section Styling */

#team {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 50px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 70px;
}

.team-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    /* Increased gap between cards */
}

.team-member {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    /* Increased padding for taller cards */
    width: 100%;
    max-width: 350px;
    height: 550px;
    /* Increased height of the card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensures content stays within bounds */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    /* Prevents content overflow */
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-photo-container {
    overflow: hidden;
    border-radius: 50%;
    width: 300px;
    /* Increased image size */
    height: 300px;
    /* Increased image size */
    margin: 0 auto 15px auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.8rem;
    color: #212529;
    margin-bottom: 10px;
}

.team-member .role {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    flex-grow: 1;
    /* Makes sure the text area grows within the card */
}

.contact-info {
    font-size: 1rem;
    color: #495057;
    margin-top: 15px;
}

.contact-info i {
    margin-right: 8px;
    color: #007bff;
}


/* Responsive Design */

@media (max-width: 1024px) {
    .team-title {
        font-size: 2rem;
    }
    .team-photo-container {
        width: 270px;
        /* Set photo size for tablet */
        height: 270px;
    }
    .team-member h3 {
        font-size: 1.4rem;
    }
    .team-member .role {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        gap: 30px;
        /* Adjusted gap for smaller screens */
    }
    .team-photo-container {
        width: 250px;
        /* Slightly reduced size for mobile */
        height: 250px;
    }
    .team-member h3 {
        font-size: 1.3rem;
    }
    .team-member .role {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 1.8rem;
    }
    .team-photo-container {
        width: 230px;
        /* Slightly smaller photo size for smaller screens */
        height: 230px;
    }
    .team-member {
        padding: 15px;
    }
    .team-member h3 {
        font-size: 1.2rem;
    }
    .team-member .role {
        font-size: 0.9rem;
    }
    .team-member p {
        font-size: 0.8rem;
    }
    .contact-info {
        font-size: 0.8rem;
    }
}

.footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.company-info .logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.company-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
}

.company-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #d3a42e;
}

.quick-links ul,
.contact-details ul {
    list-style: none;
    padding: 0;
}

.quick-links li,
.contact-details li {
    margin-bottom: 0.8rem;
}

.quick-links a,
.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links a:hover,
.contact-details a:hover {
    color: #d3a42e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    color: white;
    border-radius: 4px;
}

.contact-form textarea {
    height: 80px;
}

.send-btn {
    background-color: #d3a42e;
    color: white;
    border: none;
    padding: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #b28320;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d3a42e;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Responsive Styles */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .company-map {
        grid-column: 1 / -1;
        order: 3;
    }
}


/* Section Styling */


/****************** Base Styles ******************/

.product-process-section {
    background-color: #f9fafb;
    padding: 3rem 1rem;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}


/****************** Card Styles ******************/

.process-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.process-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.process-description {
    font-size: 1rem;
    color: #343333;
    line-height: 1.6;
    font-weight: bold;
}


/****************** Arrow Styles ******************/

.arrow {
    font-size: 2rem;
    font-weight: bold;
    color: #007BFF;
    transition: color 0.3s ease;
}

.arrow:hover {
    color: #0056b3;
}


/****************** Responsive Design ******************/

@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
    }
    .arrow {
        display: none;
    }
    .process-card {
        max-width: 100%;
    }
    .process-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 2rem;
    }
    .process-card {
        padding: 1rem;
    }
    .process-image {
        height: 150px;
    }
    .process-description {
        font-size: 0.9rem;
    }
}


/* stage of production */

.production-stages-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.production-stages-container h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.production-stages-container h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.stage-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cards in one row */
    gap: 20px;
    margin-top: 50px;
}

.stage-card {
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    height: auto;
}

.stage-card:hover {
    transform: scale(1.05);
    background-color: #007bff;
    color: white;
}

.stage-card .stage-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.stage-card:hover .stage-icon {
    color: white;
}

.stage-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.stage-card:hover h4 {
    color: white;
}

.stage-description {
    font-size: 1rem;
    color: #555;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}

.stage-card:hover .stage-description {
    opacity: 1;
    transform: translateY(0);
    color: white;
}

.production-image-container {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.production-image-container h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.image-container {
    display: flex;
    justify-content: center;
}

.production-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .stage-container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cards in one row */
    }
}

@media (max-width: 768px) {
    .stage-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards in one row */
    }
    .stage-card {
        padding: 15px;
    }
    .stage-card .stage-icon {
        font-size: 2.5rem;
    }
    .stage-card h4 {
        font-size: 1rem;
    }
    .stage-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stage-container {
        grid-template-columns: 1fr;
        /* 1 card per row */
    }
    .production-stages-container h3 {
        font-size: 1.5rem;
    }
    .stage-card {
        padding: 10px;
    }
    .stage-card .stage-icon {
        font-size: 2rem;
    }
    .stage-card h4 {
        font-size: 0.9rem;
    }
    .stage-description {
        font-size: 0.8rem;
    }
    .production-image-container h3 {
        font-size: 1.5rem;
    }
    .production-image {
        width: 90%;
    }
}


/* Gallery Section */

.gallery-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* Section heading */

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.gallery-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .gallery-section h2 {
        font-size: 2rem;
    }
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}