* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    text-align: center;
    overflow-x: hidden;
}

.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.logo img {
    width: 160px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links li {
    list-style: none;
    position: relative;
    font-size: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    position: relative;
}

/* Underline Animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #3f3f3f;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover::after,
.nav-links .active::after {
    transform: scaleX(1);
}

/* Employee Login Button (No Underline) */
.login-btn {
    background-color: #c3c0c0;
    color: rgb(248, 247, 247);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    position: relative;
}

.login-btn::after {
    display: none; /* Removes underline animation */
}

.login-btn:hover {
    background-color: #d4d5d5;
}

.contact-section {
    text-align: center;
    padding: 50px 20px;
        background: url('images/your-image.jpg') no-repeat center center/cover;
        position: relative;
}

.contact-heading {
    margin-bottom: 20px;
}

.contact-heading h2 {
    font-size: 30px;
    color: #222;
}

.contact-heading p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    max-width: 450px;
    width: 100%;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.submit-btn {
    background: #0e0b36;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0a0928;
    transform: scale(1.05);
}

.company-gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-heading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1e293b;
}

.company-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
}

.gallery-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.image-grid {
  columns: 4 250px;
  column-gap: 12px;
}

.image-grid img {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Responsive columns */
@media (max-width: 1024px) {
  .image-grid {
    columns: 3 200px;
    column-gap: 10px;
  }
}

@media (max-width: 768px) {
  .image-grid {
    columns: 2 150px;
    column-gap: 8px;
  }
}

@media (max-width: 480px) {
  .image-grid {
    columns: 1 100%;
    column-gap: 0;
  }
}




footer {
    background: linear-gradient(135deg, #3c3c3c, #505151);
    color: white;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
    position: relative;
    top: -50px;
}

.footer-about p {
    font-size: 17px;
    color: #ddd;
    line-height: 1.6;
    max-width: 300px;
    margin-top: -100px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-about h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.footer-links ul li a:hover {
    color: #6ad0ff;
    transform: translateX(5px);
}

.footer-contact form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-contact input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #222;
    color: white;
    font-size: 14px;
}

.footer-contact button {
    background: #b6d5e4;
    color: rgb(56, 55, 55);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.footer-contact button:hover {
    background: #6ad0ff;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #6ad0ff;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 14px;
}


/* ===================== MEDIA QUERIES ===================== */

/* Mobile (Android/iOS) */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        align-items: flex-start;
    }

    .logo {
        align-self: flex-start;
        margin-right: 10px;
    }

    .logo img {
        width: 120px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
        justify-content: center;
    }

    .nav-links li {
        flex: none; /* prevents extra spacing */
        text-align: left;
        font-size: 16px;
        white-space: nowrap; /* Keeps "Our Products" in one line */
    }

    .nav-links a {
        display: inline-block;  /* Prevents full-width hover effect */
        padding: 6px;
        position: relative;
    }

    /* Underline effect only for text */
    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 100%;
        height: 2px;
        background-color: #3f3f3f;
        transform: scaleX(0);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links a:hover::after,
    .nav-links .active::after {
        transform: scaleX(1);
    }

    /* Login button below navigation */
    .login {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }


    .login-btn {
        display: inline-block;
        width: auto;
        padding: 8px 12px;  /* Reduced width */
        font-size: 14px;
        background-color: #ccc;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
    }

    .contact-section {
        padding: 30px 15px;
    }

    .contact-heading h2 {
        font-size: 26px;
    }

    .contact-heading p {
        font-size: 16px;
        max-width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
        padding: 20px;
        box-shadow: none;
        border-radius: 0;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    .footer-about, .footer-links, .footer-contact {
        display: flex;
        flex-direction: column;
        min-width: 100%;
        text-align: left;
        align-items: flex-start;  /* Align content to the left */

    }

    .footer-logo {
        width: 120px;
        margin-bottom: 0px;  /* 🔹 Remove extra gap */
        text-align: left;
    }

    .footer-about p {
        font-size: 16px;
        margin-top: -30px;   /* 🔹 Reduce top margin to bring text closer */
        text-align: left;
    }

    .footer-links ul {
        padding-left: 0;
        text-align: left;
    }

    .footer-contact form {
        flex-direction: column;
        gap: 8px;
    }

    .footer-contact input {
        width: 100%;
    }

    .footer-contact button {
        width: 100%;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        font-size: 12px;
    }

}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .header {
        display: flex;
        justify-content: space-between;  /* Ensures items are spread out */
        align-items: center;
        padding: 10px 30px;
        height: auto;
    }

    .logo {
        flex: 1; /* Allows the logo to take available space on the left */
    }

    .logo img {
        width: 140px;
    }

    .nav-links {
        display: flex;
        flex: 2; /* Gives nav links more space */
        justify-content: center;
        gap: 20px;
        flex-wrap: nowrap; /* Prevents links from breaking into new rows */
    }

    .nav-links li {
        font-size: 17px;
        white-space: nowrap; /* Ensures text does not wrap */
    }

    .login-btn {
        flex: 1; /* Pushes the login button to the right */
        text-align: right;
        font-size: 17px;
        padding: 8px 15px;
        background-color: #ccc;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
    }

    .contact-section {
        padding: 40px 30px;
    }

    .contact-heading h2 {
        font-size: 28px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        max-width: 500px;
        padding: 25px;
    }

    .footer-container {
        margin-top: auto;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 0px; /* Remove extra bottom space */
        display: block;
    }

    .footer-about p {
        font-size: 16px;
        margin-top: -65px; /* Reduce space between logo and paragraph */
    }

    .footer-about, .footer-links, .footer-contact {
        flex: 1;
        min-width: 45%;
        text-align: left;
    }

    .footer-contact form {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    } 
}

/* Laptops */
@media (min-width: 1025px) and (max-width: 1366px) {
    .header {
        padding: 15px 50px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links li {
        font-size: 18px;
    }
    .contact-section {
        padding: 60px 40px;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-form {
        max-width: 450px;
        padding: 30px;
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
        text-align: left;
    }


    .footer-about, .footer-links, .footer-contact {
        flex: 1;
        min-width: 300px;
    }
}

/* Large desktops */
@media (min-width: 1367px) {
    .header {
        padding: 15px 80px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links li {
        font-size: 20px;
    }

    .contact-section {
        padding: 80px 50px;
    }

    .contact-heading h2 {
        font-size: 36px;
    }

    .contact-container {
        display: flex;
    }

    .contact-form {
        max-width: 500px;
        padding: 40px;
    }

    .footer-container {
        max-width: 1400px;
    }

    .footer-about p {
        font-size: 18px;
        text-align: center;
        margin-left: 30px;
    }

    .footer-links h3, .footer-contact h3 {
        font-size: 22px;
    }

    .footer-links ul li a {
        font-size: 18px;
    }
}


/* Mobile View (Width 380px) */
/*@media (min-width: 380px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    .footer-about, .footer-links, .footer-contact {
        display: flex;
        flex-direction: column;
        min-width: 100%;
        text-align: left;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 0px; /* Remove extra bottom space 
        display: block;
    }

    .footer-about p {
        font-size: 14px;
        margin-top: -70px; /* Reduce space between logo and paragraph 
        text-align: left;
    }

    .footer-links ul {
        padding-left: 0;
        text-align: left;
    }

    .footer-contact form {
        flex-direction: column;
        gap: 8px;
    }

    .footer-contact input {
        width: 100%;
    }

    .footer-contact button {
        width: 100%;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        font-size: 12px;
        text-align: center;
    }
}
    */