/* --------------------------------------------------
   GLOBAL VARIABLES (Brand Colors + Typography)
-------------------------------------------------- */
:root {
  --navy: #071749;
  --navy-dark: #030a20;
  --red-deep: #B5141D;
  --red-bright: #DE1825;
  --white: #FFFFFF;
  --text-light: #E6E6E6;

  --transition-fast: 0.25s ease;
  --transition-slow: 0.6s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--navy-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --------------------------------------------------
   STICKY HEADER
-------------------------------------------------- */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 23, 73, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--red-deep);
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

header.scrolled {
  background: rgba(3, 10, 32, 0.98);
  border-bottom-color: var(--red-bright);
}

header img.logo {
  height: 52px;
}

nav a {
  color: var(--white);
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

nav a:hover {
  color: var(--red-bright);
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  width: 100%;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, #020614 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeUp 1s ease forwards;
}

.hero-text p {
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: fadeUp 1.4s ease forwards;
}

.hero img {
  width: 48%;
  border-radius: 10px;
  animation: fadeIn 1.6s ease forwards;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  margin-right: 1rem;
}

.btn-primary {
  background-color: var(--red-bright);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--red-deep);
}

.btn-secondary {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
  padding: 4rem 4rem;
  width: 100%;
}

.section h2 {
  font-size: 2.2rem;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
}

.section p {
  max-width: 900px;
}

/* --------------------------------------------------
   CARDS
-------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #0f172f;
  padding: 1.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-fast);
  animation: fadeIn 1s ease forwards;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--red-bright);
}

/* --------------------------------------------------
   GRID (Applications, etc.)
-------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.grid div {
  background-color: #0f172f;
  padding: 1.2rem;
  border-radius: 6px;
  text-align: center;
  transition: var(--transition-fast);
}

.grid div:hover {
  background-color: var(--red-deep);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background-color: #020614;
  padding: 2rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

/* --------------------------------------------------
   ANIMATIONS
-------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
  header {
    padding: 1rem 2rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero img {
    width: 90%;
  }
}

/* ---------------- PREMIUM UPGRADE ---------------- */

/* Smooth card hover */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Premium buttons */
.btn-primary, .btn-secondary, .btn-link {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #00aaff;
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-3px);
}

.btn-link:hover {
    color: #00aaff;
    padding-left: 6px;
}

/* Section titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #00aaff;
}

/* Hero section upgrade */
.hero {
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Smooth fade animations */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

.fade-up {
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile menu icon */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Mobile menu behavior */
@media (max-width: 768px) {

    .nav {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid #222;
    }

    .nav.open {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .menu-icon {
        display: block;
    }

    .nav a {
        padding: 12px 0;
        font-size: 18px;
    }
}


.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gallery img {
    width: 30%;
    min-width: 250px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.hero-image img {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-image img {
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.app-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Hover animation for application cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.app-img {
    transition: transform 0.4s ease;
}

.card:hover .app-img {
    transform: scale(1.05);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover animation for product images */
.product-img {
    transition: transform 0.4s ease;
}

.card:hover .product-img {
    transform: scale(1.05);
}


.plant-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.card:hover .plant-img {
    transform: scale(1.05);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap; /* prevents text from splitting */
}

.logo {
    margin-right: auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

.nav a {
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    margin-right: 20px;
}

.logo-img {
    height: 80px; /* smaller so menu fits */
    width: auto;
}

.header {
    padding-left: 10px;   /* moves header left */
    padding-right: 10px;  /* keeps spacing balanced */
}

.header {
    padding-left: 0;
}

.nav {
    white-space: nowrap;
}

.nav a {
    white-space: nowrap;
}

.logo {
    margin-right: auto; /* pushes nav to the right */
}

.nav a {
    margin: 0 10px;   /* default is usually 15–20px */
}

.contact-card {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form button {
    align-self: flex-start;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.map-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 10px;
}

.directors-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.director-card {
    width: 320px;
    text-align: center;
}

.director-photo {
    width: 320px;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #444;
    margin-bottom: 15px;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.director-photo img:hover {
    transform: scale(1.08);
}

.director-name {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}

.director-role {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 10px;
}

.director-text {
    font-size: 14px;
    color: #ddd;
    margin-top: 10px;
    line-height: 1.6;
}

.sub-title {
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.director-list {
    text-align: left;
    margin-top: 10px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.awards-list, .csr-highlights {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.award-item, .csr-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #333;
    color: #ddd;
    font-size: 14px;
}


/* Fade animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Awards & CSR lists */
.awards-list, .csr-highlights {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.award-item, .csr-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #333;
    color: #ddd;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 18px;
}

/* Certification logos */
.cert-logos {
    margin-top: 25px;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.cert-logos img {
    width: 90px;
    height: auto;
    filter: brightness(0.9);
    transition: transform 0.3s ease;
}

.cert-logos img:hover {
    transform: scale(1.1);
}

/* CSR Gallery */
.csr-gallery {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.csr-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
    transition: transform 0.4s ease;
}

.csr-gallery img:hover {
    transform: scale(1.05);
}

/* Sustainability Gallery */
.sus-gallery {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.sus-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
    transition: transform 0.4s ease;
}

.sus-gallery img:hover {
    transform: scale(1.05);
}

/* Certification logos */
.cert-logos {
    margin-top: 25px;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.cert-logos img {
    width: 90px;
    height: auto;
    filter: brightness(0.9);
    transition: transform 0.3s ease;
}

.cert-logos img:hover {
    transform: scale(1.1);
}

/* Media Icons */
.media-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #00aaff;
}

/* Media Gallery */
.media-gallery {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.media-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.media-gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ---------------- MOBILE FIX FOR HEADER ---------------- */
@media (max-width: 768px) {

    header {
        padding: 0.8rem 1.2rem;
    }

    .logo-img {
        height: 55px; /* smaller logo for mobile */
    }

    .nav {
        white-space: normal; /* allow wrapping */
    }

    .nav a {
        margin: 10px 0;
        font-size: 18px;
    }

    .header, .logo, .nav {
        white-space: normal !important; /* override desktop rules */
    }
}

/* ---------------- MOBILE FIX: HEADER ---------------- */
@media (max-width: 768px) {

    header {
        padding: 0.8rem 1.2rem;
        flex-wrap: wrap;
    }

    .logo-img {
        height: 55px;
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    nav.open {
        display: block;
    }

    nav a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        margin: 0;
    }

    .menu-icon {
        display: block;
    }

    /* Remove desktop nowrap rules */
    .header, .logo, .nav, .nav a {
        white-space: normal !important;
    }
}

/* ---------------- MOBILE FIX: HERO ---------------- */
@media (max-width: 768px) {

    .hero {
        padding: 3rem 1.2rem;
        height: auto;
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero img {
        width: 100%;
        margin-top: 20px;
    }
}

/* ---------------- MOBILE FIX: SECTIONS ---------------- */
@media (max-width: 768px) {
    .section {
        padding: 2.5rem 1.2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }
}

/* ---------------- MOBILE FIX: CARDS & GRIDS ---------------- */
@media (max-width: 768px) {

    .cards {
        gap: 1rem;
    }

    .card {
        padding: 1.2rem;
    }

    .grid {
        gap: 1rem;
    }
}

/* --------------------------------------------------
   FULL MOBILE OPTIMIZATION (Index Page)
-------------------------------------------------- */
@media (max-width: 768px) {

    /* ---------------- HEADER ---------------- */
    header {
        padding: 0.8rem 1.2rem;
        flex-wrap: wrap;
    }

    .logo-img {
        height: 55px;
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    nav.open {
        display: block;
    }

    nav a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        margin: 0;
    }

    .menu-icon {
        display: block;
    }

    .header, .logo, .nav, .nav a {
        white-space: normal !important;
    }

    /* ---------------- HERO SECTION ---------------- */
    .hero {
        padding: 3rem 1.2rem;
        height: auto;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero img {
        width: 100%;
        margin-top: 10px;
        border-radius: 10px;
    }

    /* ---------------- BUTTONS ---------------- */
    .btn {
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    /* ---------------- SECTIONS ---------------- */
    .section {
        padding: 2.5rem 1.2rem;
    }

    .section h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .section p {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }

    /* ---------------- CARDS ---------------- */
    .cards {
        gap: 1rem;
    }

    .card {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .card img,
    .product-img,
    .app-img,
    .plant-img {
        height: 160px;
    }

    /* ---------------- GRID ---------------- */
    .grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    /* ---------------- FOOTER ---------------- */
    footer {
        padding: 2rem 1.2rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* ---------------- GALLERIES ---------------- */
    .gallery img,
    .media-gallery img,
    .csr-gallery img,
    .sus-gallery img {
        width: 100%;
        min-width: unset;
        height: 150px;
    }

    /* ---------------- CONTACT FORM ---------------- */
    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-card {
        padding: 20px;
    }

    /* ---------------- DIRECTORS SECTION ---------------- */
    .directors-section {
        gap: 20px;
    }

    .director-card {
        width: 100%;
    }

    .director-photo {
        width: 100%;
        height: auto;
    }
}

/* HEADER LAYOUT IMPROVEMENTS */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    background: #111;
    color: #fff;
}

/* LOGO — slightly smaller to save space */
.logo {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

/* NAVIGATION */
.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav a,
.dropbtn {
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

/* DROPDOWN CONTAINER */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
}

/* DROPDOWN MENU */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 180px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
    z-index: 1000;
}

.dropdown-content a {
    color: #fff;
    padding: 10px 14px;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #333;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
    display: block;
}

/* MOBILE MENU */
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        padding: 20px 0;
    }

    .nav a,
    .dropbtn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #222;
    }

    .menu-icon {
        display: block;
    }
}
/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 14px 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
    }
}

/* Reduce spacing between menu items */
.nav a,
.dropbtn {
    padding: 10px 12px;   /* Previously 14px 16px */
    font-size: 15px;      /* Slightly smaller but still premium */
}

/* Reduce dropdown button width */
.dropbtn {
    padding-right: 10px;
}

/* Reduce gap between items */
.nav {
    gap: 4px;             /* If you have gap: 10px or similar, reduce it */
}
.dropdown-content {
    left: 0;              /* Align dropdown to the left edge of the button */
    right: auto;          /* Prevent right alignment */
    transform: none;      /* Remove any shifting */
}

.dropdown-content {
    min-width: 180px;     /* Adjust as needed */
    max-width: 240px;     /* Prevent it from becoming too wide */
    white-space: nowrap;  /* Keep items on one line */
}


.compliance-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.slsi-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.rohs-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.reach-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.test-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.insulation-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.sheathing-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
 
..sheathing-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.filler-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.speciality-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.extrusion-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.injection-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.footwear-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.hoses-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.heat-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.flame-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.medical-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}
.industrial-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.industry1-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.industry2-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.industry3-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.industry4-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.industry5-img {
    width: 75%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}


/* Careers Page Banner */
.careers-banner {
    background-image: url('../assets/images/banners/careers-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    border-bottom: 4px solid #003366; /* Deep navy accent */
}

.careers-banner h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.careers-banner p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Banner Adjustments */
@media (max-width: 768px) {
    .careers-banner {
        padding: 80px 15px;
    }

    .careers-banner h1 {
        font-size: 32px;
    }

    .careers-banner p {
        font-size: 16px;
    }
}

/* CSR Page Banner */
.csr-banner {
    background-image: url('../assets/images/banners/csr-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    border-bottom: 4px solid #003366;
}

.csr-banner h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.csr-banner p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .csr-banner {
        padding: 80px 15px;
    }

    .csr-banner h1 {
        font-size: 32px;
    }

    .csr-banner p {
        font-size: 16px;
    }
}

/* Industries Page Banner */
.industries-banner {
    background-image: url('../assets/images/banners/industries-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    border-bottom: 4px solid #003366;
}

.industries-banner h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.industries-banner p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .industries-banner {
        padding: 80px 15px;
    }

    .industries-banner h1 {
        font-size: 32px;
    }

    .industries-banner p {
        font-size: 16px;
    }
}

/* Fade-in animation for banner text */
.banner-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.banner-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.careers-banner {
    background-image: url('../assets/images/banners/careers-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    border-bottom: 4px solid #003366;
}

.careers-banner {
    padding: 120px 20px;
}
.csr-banner {
    background-image: url('../assets/images/banners/csr-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    border-bottom: 4px solid #003366;
}
