/* =====================================================================
   ZAYAAN OUTERWEAR LTD. - MAIN STYLESHEET
   Every section has a START and END comment.
   ===================================================================== */


/* =====================================================================
   START: 1. WEBSITE COLORS AND BASIC SETTINGS
   ===================================================================== */
:root {
  --blue: #07377f;
  --blue-dark: #061a35;
  --red: #e21e2d;
  --white: #ffffff;
  --light: #f4f7fb;
  --text: #262b33;
  --muted: #5e6875;
  --line: #dfe5ed;
  --shadow: 0 14px 35px rgba(8, 36, 77, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-light {
  background: var(--light);
}

.section-label {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.section h2,
.sustainability h2 {
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.section-content p {
  margin-bottom: 18px;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 44px;
}

.centered {
  text-align: center;
}

.text-link {
  color: var(--red);
  font-weight: 700;
}
/* =====================================================================
   END: 1. WEBSITE COLORS AND BASIC SETTINGS
   ===================================================================== */


/* =====================================================================
   START: 2. TOP CONTACT BAR
   ===================================================================== */
.top-bar {
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.top-contact a:hover {
  color: #ffccd0;
}
/* =====================================================================
   END: 2. TOP CONTACT BAR
   ===================================================================== */


/* =====================================================================
   START: 3. HEADER AND NAVIGATION
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 112px;
  height: 82px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav > a,
.dropdown-button {
  position: relative;
  border: 0;
  color: #1d2229;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.main-nav > a::after,
.dropdown-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.dropdown-button:hover::after {
  right: 0;
}

.main-nav > a:hover,
.main-nav > a.active,
.dropdown-button:hover {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.dropdown-button span {
  margin-left: 5px;
  font-size: 9px;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
  transition: 0.22s ease;
}

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--text);
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: var(--white);
  background: var(--blue);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: var(--blue-dark);
}
/* =====================================================================
   END: 3. HEADER AND NAVIGATION
   ===================================================================== */

/* =====================================================================
   START: 4. DYNAMIC HERO BANNER
   ===================================================================== */

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f2f2f2;
}


/* =====================================================================
   HERO BACKGROUND SLIDER
   ===================================================================== */

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.08);

  transition:
    opacity 1.2s ease,
    visibility 1.2s ease,
    transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}


/* =====================================================================
   HERO WHITE GRADIENT OVERLAY
   Text remains readable while background images move
   ===================================================================== */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.94) 25%,
    rgba(255, 255, 255, 0.76) 43%,
    rgba(255, 255, 255, 0.18) 67%,
    rgba(255, 255, 255, 0) 82%
  );
}


/* =====================================================================
   HERO TEXT CONTENT
   ===================================================================== */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    padding: 90px 0;

    margin-left: 20px;   /* Adjust: -20px, -40px, -60px */
}

.hero .eyebrow {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero h1 {
  margin-bottom: 28px;
  color: #252a31;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 800;
  line-height: 1.01;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-text {
  max-width: 590px;
  margin-bottom: 34px;
  color: #0f051b;
  font-size: 30px;
  line-height: 1.7;
}


/* =====================================================================
   HERO BUTTONS
   ===================================================================== */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 13px 27px;

  border: 2px solid transparent;
  border-radius: 3px;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: #be1421;
  transform: translateY(-2px);
}

.button-outline {
  color: var(--red);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--red);
}

.button-outline:hover {
  color: var(--white);
  background: var(--red);
}


/* =====================================================================
   HERO SLIDER DOTS
   ===================================================================== */

.hero-dots {
  position: absolute;
  z-index: 3;

  left: 50%;
  bottom: 30px;

  display: flex;
  align-items: center;
  gap: 10px;

  transform: translateX(-50%);
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;

  border: 2px solid var(--red);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;

  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    background-color 0.25s ease;
}

.hero-dot.active {
  width: 32px;
  border-radius: 20px;
  background: var(--red);
}


/* =====================================================================
   TABLET RESPONSIVE
   ===================================================================== */

@media (max-width: 900px) {

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.90) 48%,
      rgba(255, 255, 255, 0.36) 100%
    );
  }

  .hero-content {
    max-width: 590px;
  }

}


/* =====================================================================
   MOBILE RESPONSIVE
   ===================================================================== */

@media (max-width: 600px) {

  .hero {
    min-height: 620px;
  }

  .hero-slide {
    background-position: 65% center;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.86);
  }

  .hero-content {
    max-width: 100%;
    padding: 110px 0 90px;
  }

  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-dots {
    bottom: 22px;
  }

}


/* =====================================================================
   ACCESSIBILITY:
   Stop movement when user has disabled animations
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {

  .hero-slide {
    transition: opacity 0.5s ease;
    transform: none;
  }

  .hero-slide.active {
    transform: none;
  }

}

/* =====================================================================
   END: 4. DYNAMIC HERO BANNER
   ===================================================================== */




/* =====================================================================
   START: 5. COMPANY PRIORITIES
   ===================================================================== */
.priorities-section {
  position: relative;
  z-index: 4;
  margin-top: -35px;
}

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 25px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.priorities-grid article {
  padding: 8px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.priorities-grid article:last-child {
  border-right: 0;
}

.priorities-grid strong,
.priorities-grid span {
  display: block;
}

.priorities-grid strong {
  color: var(--blue);
}

.priorities-grid span {
  color: var(--muted);
  font-size: 13px;
}
/* =====================================================================
   END: 5. COMPANY PRIORITIES
   ===================================================================== */


   
/* =====================================================================
   START: 6. ABOUT COMPANY WITH FACTORY IMAGE GALLERY
   ===================================================================== */

/* Main two-column layout */
.about-company-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: center;
}


/* Left-side company text */
.about-company-content {
    padding-right: 10px;
}


/* Factory image gallery */
.factory-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 230px 180px;
    gap: 12px;
}


/* Remove default button design */
.factory-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 7px;
    background: #e9edf2;
    box-shadow: 0 10px 28px rgba(7, 55, 127, 0.12);
    cursor: pointer;
}


/* First image occupies the complete left side */
.factory-gallery-large {
    grid-row: 1 / 3;
}


/* Gallery images */
.factory-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* Image hover effect */
.factory-gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.83);
}


/* View All overlay */
.gallery-more-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
    background: rgba(4, 35, 77, 0.63);
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}


/* View All hover effect */
.factory-gallery-more:hover .gallery-more-overlay {
    background: rgba(226, 30, 45, 0.78);
}

/* =====================================================================
   START: ABOUT FACTORY SECTION
   ===================================================================== */

/* Main About Factory layout */
.about-company-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: center;
}


/* Left-side About Factory text */
.about-company-content {
    padding-right: 10px;
}


/* Four-image gallery on right side */
.factory-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 215px);
    gap: 12px;
}


/* Each gallery image button */
.factory-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #e8edf3;
    box-shadow: 0 10px 28px rgba(7, 55, 127, 0.12);
    cursor: pointer;
}


/* Gallery image design */
.factory-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* Image hover effect */
.factory-gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.82);
}


/* View All overlay on fourth image */
.gallery-more-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #ffffff;
    background: rgba(6, 48, 104, 0.62);
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    transition: background 0.3s ease;
}


/* View All hover effect */
.factory-gallery-more:hover .gallery-more-overlay {
    background: rgba(226, 30, 45, 0.78);
}


/* Tablet design */
@media (max-width: 900px) {

    .about-company-layout {
        grid-template-columns: 1fr;
    }

    .about-company-content {
        padding-right: 0;
    }

    .factory-gallery {
        grid-template-rows: repeat(2, 210px);
    }

}


/* Mobile design */
@media (max-width: 550px) {

    .factory-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 210px);
    }

}

/* =====================================================================
   END: ABOUT FACTORY SECTION
   ===================================================================== */


/* =====================================================================
   START: FACTORY IMAGE POPUP GALLERY
   ===================================================================== */

/* Dark popup background */
.factory-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
    background: rgba(1, 11, 25, 0.94);
}


/* Show popup gallery */
.factory-lightbox.open {
    display: flex;
}


/* Large popup image container */
.lightbox-image-area {
    width: min(1100px, 100%);
    max-height: 88vh;
    text-align: center;
}


/* Large popup image */
.lightbox-image-area img {
    display: block;
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}


/* Popup image caption and counter */
.lightbox-information {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 15px;
    color: #ffffff;
    font-size: 15px;
}


/* Popup close button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 47px;
    line-height: 1;
    cursor: pointer;
}


/* Previous and Next buttons */
.lightbox-navigation {
    position: absolute;
    top: 50%;
    width: 58px;
    height: 70px;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 55px;
    line-height: 55px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background 0.25s ease;
}


/* Navigation button hover */
.lightbox-navigation:hover {
    background: #e21e2d;
}


/* Previous button position */
.lightbox-previous {
    left: 25px;
}


/* Next button position */
.lightbox-next {
    right: 25px;
}


/* Disable page scrolling while popup is open */
body.lightbox-open {
    overflow: hidden;
}


/* Tablet popup design */
@media (max-width: 900px) {

    .factory-lightbox {
        padding: 70px 65px;
    }

}


/* Mobile popup design */
@media (max-width: 550px) {

    .factory-lightbox {
        padding: 65px 15px 90px;
    }

    .lightbox-navigation {
        top: auto;
        bottom: 18px;
        width: 48px;
        height: 48px;
        font-size: 38px;
        line-height: 38px;
        transform: none;
    }

    .lightbox-previous {
        left: calc(50% - 58px);
    }

    .lightbox-next {
        right: calc(50% - 58px);
    }

    .lightbox-information {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

}

/* =====================================================================
   END: FACTORY IMAGE POPUP GALLERY
   ===================================================================== */


/* =====================================================================
   START: 7. MANAGING DIRECTOR MESSAGE
   ===================================================================== */
.md-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 65px;
  align-items: center;
}

.md-photo-wrap {
  position: relative;
}

.md-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.md-name-card {
  position: relative;
  width: calc(100% - 40px);
  margin: -55px auto 0;
  padding: 20px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.md-name-card h3 {
  color: var(--blue);
}

.md-name-card p,
.md-name-card span {
  color: var(--muted);
}

.lead {
  color: var(--blue) !important;
  font-size: 21px;
  font-weight: 700;
}
/* =====================================================================
   END: 7. MANAGING DIRECTOR MESSAGE
   ===================================================================== */


/* =====================================================================
   START: 8. VISION AND MISSION
   ===================================================================== */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.feature-panel {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  box-shadow: var(--shadow);
}

.panel-number {
  color: var(--red);
  font-weight: 800;
}

.feature-panel h3 {
  margin: 10px 0 15px;
  color: var(--blue);
  font-size: 27px;
}

.feature-panel li {
  margin: 8px 0 8px 20px;
  color: var(--muted);
}
/* =====================================================================
   END: 8. VISION AND MISSION
   ===================================================================== */



/* =====================================================================
   START: 10. CORE VALUES
   ===================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.values-grid article {
  padding: 26px 18px;
  color: var(--blue-dark);
  text-align: center;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--red);
}
/* =====================================================================
   END: 10. CORE VALUES
   ===================================================================== */


/* =====================================================================
   START: 11. MANAGEMENT PRINCIPLES
   ===================================================================== */
.management-grid,
.objective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.management-grid article,
.objective-grid article {
  padding: 23px;
  color: var(--blue-dark);
  background: var(--white);
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 24px rgba(7, 55, 127, 0.08);
}
/* =====================================================================
   END: 11. MANAGEMENT PRINCIPLES
   ===================================================================== */


/* =====================================================================
   START: 12. SUSTAINABILITY
   ===================================================================== */
.sustainability {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(3, 25, 57, 0.88), rgba(3, 25, 57, 0.88)),
    url("../images/hero-banner.jpg?v=4") center / cover fixed;
}

.sustainability-content {
  max-width: 720px;
}

.sustainability h2,
.sustainability p {
  color: var(--white);
}

.sustainability p {
  margin-bottom: 25px;
}
/* =====================================================================
   END: 12. SUSTAINABILITY
   ===================================================================== */


/*=========================================================
  OUR CUSTOMERS
=========================================================*/

.customer-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:50px;
}

.customer-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollCustomers 25s linear infinite;
}

.customer-slider:hover .customer-track{
    animation-play-state:paused;
}

.customer-logo{
    width:380px;
    height:130px;
    margin:0 30px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.customer-logo img{
    max-width:280px;
    max-height:120px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.75;
    transition:.3s;
}

.customer-logo:hover img{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

@keyframes scrollCustomers{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}


/* =====================================================================
   START: 14. LOCATIONS
   ===================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.location-card {
  padding: 35px;
  background: var(--white);
  border-top: 5px solid var(--blue);
  box-shadow: var(--shadow);
}

.location-card > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.location-card h3 {
  margin: 10px 0 14px;
  color: var(--blue);
  font-size: 27px;
}

.location-card address,
.location-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-style: normal;
}

.location-card a {
  color: var(--blue);
  font-weight: 700;
}
/* =====================================================================
   END: 14. LOCATIONS
   ===================================================================== */


/* =====================================================================
   START: 15. FOOTER
   ===================================================================== */
.site-footer {
  padding-top: 65px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-logo {
  width: 105px;
  margin-bottom: 20px;
  background: var(--white);
}

.footer-grid h3 {
  margin-bottom: 15px;
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: #ff7b84;
}

.footer-bottom {
  padding: 18px 0;
  background: #031326;
}
/* =====================================================================
   END: 15. FOOTER
   ===================================================================== */


/* =====================================================================
   START: 16. TABLET AND MOBILE RESPONSIVE DESIGN
   ===================================================================== */
@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 25px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav > a,
  .dropdown-button {
    display: block;
    width: 100%;
    padding: 13px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    visibility: visible;
    min-width: 0;
    padding-left: 12px;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border-top: 0;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .priorities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .priorities-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-contact {
    gap: 10px 18px;
    padding: 7px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 88px;
    height: 67px;
  }

  .hero {
    min-height: 620px;
    background-position: 63% center;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.84);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 17px;
  }

  .priorities-section {
    margin-top: 0;
  }

  .priorities-grid,
  .two-column,
  .md-layout,
  .vision-mission-grid,
  .product-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .management-grid,
  .objective-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .values-grid,
  .management-grid,
  .objective-grid,
  .priorities-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
/* =====================================================================
   END: 16. TABLET AND MOBILE RESPONSIVE DESIGN
   ===================================================================== */



   

/* =====================================================================
   START: 17. PRODUCT NAVIGATION SUBMENU
===================================================================== */

.product-nav-dropdown {
  position: relative;
}

.product-dropdown-menu {
  min-width: 250px;
  padding: 0;
}

.dropdown-submenu {
  position: relative;
}

.submenu-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border: 0;
  border-bottom: 1px solid #edf0f4;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.submenu-button:hover,
.dropdown-submenu:hover > .submenu-button,
.dropdown-submenu.active > .submenu-button {
  color: #ffffff;
  background: var(--blue);
}

.submenu-arrow {
  font-size: 22px;
  line-height: 1;
}

.submenu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 275px;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(8px);
  background: #ffffff;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.dropdown-submenu:hover > .submenu-panel,
.dropdown-submenu:focus-within > .submenu-panel,
.dropdown-submenu.active > .submenu-panel {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.submenu-panel a {
  display: block;
  padding: 11px 17px;
  border-bottom: 1px solid #edf0f4;
  font-size: 14px;
}

.submenu-panel a:hover {
  color: #ffffff;
  background: var(--blue);
}

/* =====================================================================
   END: 17. PRODUCT NAVIGATION SUBMENU
===================================================================== */


/* =====================================================================
   START: 18. DEBONAIR-INSPIRED HERO MOTION
   Uses existing ZOL images; no external library required.
===================================================================== */

.hero-reveal .hero-animate {
  opacity: 0;
  transform: translateY(28px);
  animation: heroContentReveal 0.85s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-reveal .hero-animate-1 { animation-delay: 0.20s; }
.hero-reveal .hero-animate-2 { animation-delay: 0.38s; }
.hero-reveal .hero-animate-3 { animation-delay: 0.56s; }
.hero-reveal .hero-animate-4 { animation-delay: 0.74s; }

@keyframes heroContentReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide.active {
  animation: heroCinemaZoom 7s ease-out both;
}

@keyframes heroCinemaZoom {
  from {
    transform: scale(1.075);
  }
  to {
    transform: scale(1);
  }
}

.hero-scroll-indicator {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  transform: translateX(-50%);
}

.hero-scroll-indicator i {
  position: relative;
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(255,255,255,.35);
}

.hero-scroll-indicator i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 1px;
  height: 18px;
  background: #ffffff;
  animation: heroScrollLine 1.8s ease-in-out infinite;
}

@keyframes heroScrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(58px); }
}

/* =====================================================================
   END: 18. DEBONAIR-INSPIRED HERO MOTION
===================================================================== */


/* =====================================================================
   START: 19. COMPLETE PRODUCT COLLECTION
===================================================================== */

.product-collection-section {
  background: #f5f7fa;
}

.product-collection-heading {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-collection-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

.collection-filter-block {
  margin-bottom: 20px;
}

.collection-filter-title {
  margin-bottom: 10px;
  color: #26354a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.collection-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.collection-filter-button {
  padding: 12px 23px;
  border: 1px solid #ccd4df;
  border-radius: 5px;
  background: #ffffff;
  color: #172033;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.collection-filter-button:hover,
.collection-filter-button.active {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.collection-type-button {
  padding: 9px 16px;
  border: 1px solid #dde2e9;
  border-radius: 22px;
  background: #ffffff;
  color: #394456;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.collection-type-button:hover,
.collection-type-button.active {
  color: #ffffff;
  border-color: var(--red);
  background: var(--red);
}

.collection-result-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 30px 0 20px;
  padding: 14px 18px;
  border-left: 4px solid var(--blue);
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(7,55,127,.06);
}

.collection-result-bar p {
  margin: 0;
  font-weight: 700;
}

.collection-result-bar span {
  color: var(--red);
  font-weight: 800;
}

.product-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}

.collection-product-card {
  overflow: hidden;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(18,34,56,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.collection-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(18,34,56,.14);
}

.collection-product-card.collection-hidden {
  display: none;
}

.collection-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.collection-image-wrap {
  position: relative;
  height: 315px;
  overflow: hidden;
  background: #ffffff;
}

.collection-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.collection-product-card:hover .collection-image-wrap img {
  transform: scale(1.035);
}

.collection-view-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  place-items: center;
  background: rgba(7,55,127,.94);
  color: #ffffff;
  font-size: 21px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s ease;
}

.collection-product-card:hover .collection-view-icon {
  opacity: 1;
  transform: translateY(0);
}

.collection-product-info {
  min-height: 94px;
  padding: 16px 17px;
  border-top: 1px solid #edf0f4;
}

.collection-product-info span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.collection-product-info h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 17px;
}

.collection-empty-message {
  display: none;
  margin-top: 25px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

.collection-empty-message.show {
  display: block;
}

/* COLLECTION LIGHTBOX */
.collection-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 90px;
  background: rgba(2,10,22,.96);
}

.collection-lightbox.open {
  display: flex;
}

.collection-lightbox-content {
  width: min(1200px,92vw);
  margin: 0;
  text-align: center;
}

.collection-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
}

.collection-lightbox-content figcaption {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-top: 14px;
  color: #ffffff;
}

.collection-lightbox-close {
  position: absolute;
  top: 18px;
  right: 25px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 50px;
  cursor: pointer;
}

.collection-lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 64px;
  border: 0;
  border-radius: 5px;
  background: rgba(255,255,255,.15);
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  transform: translateY(-50%);
}

.collection-lightbox-prev { left: 22px; }
.collection-lightbox-next { right: 22px; }
.collection-arrow-hidden { display: none; }

/* =====================================================================
   END: 19. COMPLETE PRODUCT COLLECTION
===================================================================== */





/* =====================================================================
   START: 21. NEW RESPONSIVE RULES
===================================================================== */

@media (max-width: 1150px) {
  .product-collection-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width: 1080px) {
  .submenu-panel {
    position: static;
    display: none;
    visibility: visible;
    min-width: 0;
    padding-left: 15px;
    opacity: 1;
    transform: none;
    border-top: 0;
    box-shadow: none;
  }

  .dropdown-submenu.active > .submenu-panel {
    display: block;
  }

  .global-presence-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .product-collection-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .global-presence-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-image-wrap {
    height: 390px;
  }

  .collection-result-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .collection-lightbox {
    padding: 60px 12px 85px;
  }

  .collection-lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .collection-lightbox-prev {
    left: calc(50% - 65px);
  }

  .collection-lightbox-next {
    right: calc(50% - 65px);
  }

  .global-presence-section {
    padding: 80px 0;
  }

  .global-map-card {
    padding: 8px;
    border-radius: 10px;
  }

  .bangladesh-hub text {
    font-size: 15px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal .hero-animate,
  .hero-slide.active,
  .global-routes path,
  .global-nodes circle,
  .hub-pulse {
    animation: none !important;
  }
}

/* =====================================================================
   END: 21. NEW RESPONSIVE RULES
===================================================================== */


/* =====================================================================
   START: CONTACT US - PREVIOUS LOCATION CARD DESIGN
===================================================================== */
.contact-section {
  background: #f5f7fa;
}
.contact-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}
.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.contact-location-card {
  padding: 35px;
  background: #ffffff;
  border-top: 5px solid var(--blue);
  border-radius: 0;
  box-shadow: var(--shadow);
}
.contact-card-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.contact-location-card h3 {
  margin: 10px 0 14px;
  color: var(--blue);
  font-size: 27px;
}
.contact-location-card address {
  margin-bottom: 10px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}
.contact-card-links {
  display: block;
}
.contact-card-links a {
  display: block;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 700;
}
.contact-card-links a:hover {
  color: var(--red);
  background: transparent;
}
.contact-card-links span {
  display: inline;
  margin-right: 6px;
  color: var(--text);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.contact-card-links a:hover span {
  color: var(--text);
}
@media (max-width: 760px) {
  .contact-location-grid { grid-template-columns: 1fr; }
  .contact-location-card { padding: 28px; }
}
/* =====================================================================
   END: CONTACT US - PREVIOUS LOCATION CARD DESIGN
===================================================================== */


/* =====================================================================
   START: 20. GLOBAL PRESENCE - ACCURATE WORLD MAP
===================================================================== */
.global-presence-section {
  padding: 95px 0;
  overflow: hidden;
  background: #ffffff;
}
.global-presence-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.global-presence-heading h2 {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: clamp(34px,4.5vw,54px);
}
.global-presence-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}
.global-network-map {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  padding: 18px 18px 10px;
  border: 1px solid #e0e6ee;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(7,55,127,.09);
}
.global-network-svg {
  display: block;
  width: 100%;
  height: auto;
}
.world-map-dot { fill: #aec5df; }
.world-dot-land path {
  fill: url(#worldDotPattern);
  stroke: rgba(119,146,178,.09);
  stroke-width: .6;
}
.global-route-lines path {
  fill: none;
  stroke: rgba(67,72,156,.46);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-dasharray: 7 7;
  animation: globalRouteMove 2.4s linear infinite;
}
.global-route-lines .route-1 { animation-delay: .15s; }
.global-route-lines .route-2 { animation-delay: .35s; }
.global-route-lines .route-3 { animation-delay: .55s; }
.global-route-lines .route-4 { animation-delay: .75s; }
.global-route-lines .route-5 { animation-delay: .95s; }
@keyframes globalRouteMove { to { stroke-dashoffset: -28; } }
.market-arrow-shape { fill: #3f4599; }
.global-market-points circle {
  fill: #3f4599;
  stroke: rgba(63,69,153,.13);
  stroke-width: 8;
}
.global-market-points text {
  fill: #151515;
  font-family: Georgia,"Times New Roman",serif;
  font-size: 16px;
  font-weight: 700;
  paint-order: stroke;
  stroke: rgba(255,255,255,.96);
  stroke-width: 4px;
  stroke-linejoin: round;
}
.bangladesh-core {
  fill: #ef2029;
  stroke: #ffffff;
  stroke-width: 3;
}
.bangladesh-pulse {
  fill: none;
  stroke: rgba(239,32,41,.50);
  stroke-width: 2;
  animation: bdMapPulse 2.5s ease-out infinite;
}
.bangladesh-pulse-two { animation-delay: 1.2s; }
@keyframes bdMapPulse {
  from { opacity:.8; transform:scale(.55); }
  to { opacity:0; transform:scale(1.65); }
}
.bangladesh-title {
  fill: #111111;
  font-family: Georgia,"Times New Roman",serif;
  font-size: 27px;
  font-weight: 800;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 5px;
}
.global-network-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 12px 0 4px;
  color: #68778b;
  font-size: 12px;
}
.global-network-footer > div { display:flex; align-items:center; gap:9px; }
.global-hub-key {
  width: 11px; height: 11px; border-radius:50%;
  background:#ef2029; box-shadow:0 0 0 6px rgba(239,32,41,.12);
}
.global-route-key { width:34px; border-top:2px dashed #545aab; }
.global-presence-summary {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:24px;
}
.global-presence-summary article {
  padding:22px 20px;
  border:1px solid var(--line);
  border-top:3px solid var(--blue);
  background:#ffffff;
  box-shadow:0 8px 26px rgba(7,55,127,.06);
}
.global-presence-summary strong,.global-presence-summary span { display:block; }
.global-presence-summary strong { color:var(--blue); font-size:18px; }
.global-presence-summary span { margin-top:3px; color:var(--muted); font-size:12px; }
@media (max-width: 760px) {
  .global-network-map { overflow-x:auto; padding:10px; }
  .global-network-svg { width:1050px; max-width:none; }
  .global-presence-summary { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .global-route-lines path,.bangladesh-pulse { animation:none!important; }
}
/* =====================================================================
   END: 20. GLOBAL PRESENCE
===================================================================== */

/* =====================================================================
   START: 15. FOOTER WITH VIDEO BACKGROUND
===================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;

  padding-top: 65px;

  color: rgba(255, 255, 255, 0.85);
  background: #061a35;
}


/* =====================================================================
   BACKGROUND VIDEO
===================================================================== */

.footer-video {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;
}


/* =====================================================================
   DARK OVERLAY
   Makes footer information readable
===================================================================== */

.footer-video-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 10, 25, 0.68);

  z-index: 1;
}


/* =====================================================================
   FOOTER INFORMATION
===================================================================== */

.footer-content {
  position: relative;
  z-index: 2;
}


.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 50px;

  padding-bottom: 50px;
}


/* =====================================================================
   LOGO
===================================================================== */

.footer-logo {
  width: 105px;

  margin-bottom: 20px;

  background: #ffffff;

  padding: 4px;
}


/* =====================================================================
   FOOTER TEXT
===================================================================== */

.footer-grid p {
  max-width: 440px;

  color: rgba(255, 255, 255, 0.85);

  line-height: 1.8;
}


/* =====================================================================
   HEADINGS
===================================================================== */

.footer-grid h3 {
  margin-bottom: 15px;

  color: #ffffff;
}


/* =====================================================================
   LINKS
===================================================================== */

.footer-grid a {
  display: block;

  margin-bottom: 9px;

  color: rgba(255, 255, 255, 0.85);

  transition: color 0.25s ease;
}


.footer-grid a:hover {
  color: #ff7b84;
}


/* =====================================================================
   FOOTER BOTTOM
===================================================================== */

.footer-bottom {
  position: relative;

  z-index: 2;

  padding: 18px 0;

  color: rgba(255, 255, 255, 0.85);

  background: rgba(3, 19, 38, 0.85);

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/* =====================================================================
   TABLET / MOBILE
===================================================================== */

@media (max-width: 768px) {

  .site-footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 30px;

    padding-bottom: 40px;
  }

}


/* =====================================================================
   END: 15. FOOTER WITH VIDEO BACKGROUND
===================================================================== */




img {
    -webkit-user-drag: none;
    user-select: none;
}