:root {
  --primary-gold: #dcb063;
  --primary-gold-dark: #c59b50;
  --primary-blue: #061a33;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-gray: #666666;
  --bg-light: #ffffff;
  --font-main: 'Poppins', sans-serif;
  --border-color: #e0e0e0;
}

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

body {
  font-size: 14px;
  /* Slightly reduced base size */
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 40px 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--primary-blue);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-gold-dark);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-blue);
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  color: var(--primary-gold);
}

.social-icons i {
  width: 16px;
  height: 16px;
}

/* Header */
.header {
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 50px;
  object-fit: contain;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu>ul>li {
  position: relative;
}

.nav-menu a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-gold);
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 260px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  top: 100%;
  left: 0;
  border-top: 3px solid var(--primary-gold);
}

/* Only hover on desktop to prevent sticky hover on mobile */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

.dropdown-content li {
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-content li:last-child {
  border-bottom: none;
}

.dropdown-content a {
  padding: 12px 20px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  color: #555;
  transition: all 0.2s;
}

.dropdown-content a:hover {
  background-color: #f9f9f9;
  color: var(--primary-gold);
  padding-left: 25px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(220, 176, 99, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.slider-btn:hover {
  background-color: rgba(220, 176, 99, 1);
}

.slider-btn.prev {
  left: 0;
  border-radius: 0 4px 4px 0;
}

.slider-btn.next {
  right: 0;
  border-radius: 4px 0 0 4px;
}

/* About Us */
.about-us {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 16px;
  max-width: 900px;
}

/* Core Strengths */
.core-strengths {
  background-color: var(--primary-blue);
}

.split-layout {
  display: flex;
  flex-wrap: wrap;
}

.image-side,
.content-side {
  flex: 1;
  min-width: 300px;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-side {
  padding: 60px;
  background-color: var(--primary-blue);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-side h3 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 800;
}

.strength-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.strength-list li i {
  color: var(--primary-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Industries */
.industries {
  background-color: #f9f9f9;
}

.sub-title {
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 16px;
}

.industries .section-title {
  color: #000;
  margin-bottom: 20px;
}

.industry-slider-wrapper {
  position: relative;
  padding: 0 60px;
  overflow: hidden;
}

.industry-grid {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.industry-card {
  background: white;
  text-align: center;
  transition: transform 0.3s;
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.industry-card:hover .card-image img {
  transform: scale(1.1);
}

.industry-card h3 {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-gold);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  border-radius: 4px;
}

.nav-btn.prev {
  left: 0;
}

.nav-btn.next {
  right: 0;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* CTA Section */
.cta-section {
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  /* Or keep main font but use serif style if imported */
  font-family: var(--font-main);
  /* Stick to main font but maybe bold/serif look if possible, otherwise standard */
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 5px;
  color: white;
}

.cta-subtitle {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  min-width: 160px;
  text-decoration: none;
}

.btn-gold {
  background-color: #fdd835;
  /* Gold/Yellow */
  color: #000;
  border: 1px solid #fdd835;
}

.btn-gold:hover {
  background-color: #fbc02d;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid #555;
}

.btn-outline:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-green {
  background-color: #25d366;
  /* WhatsApp Green */
  color: white;
  border: 1px solid #25d366;
}

.btn-green:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

.cta-divider {
  height: 1px;
  background-color: #333;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

.cta-footer-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #aaa;
  font-size: 13px;
}

.cta-footer-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-footer-info i {
  width: 16px;
  height: 16px;
}

/* Footer */
.footer {
  background-color: #0b0f19;
  /* Darker Blue/Black */
  color: white;
  padding-top: 60px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  /* 4 Columns */
  gap: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-transform: capitalize;
}

.footer-desc {
  color: #8890a4;
  /* Muted text color */
  line-height: 1.6;
  font-size: 13px;
  max-width: 300px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #8890a4;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  /* Align icon with top of text */
  margin-bottom: 12px;
  gap: 10px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-gold);
}

.contact-icon i {
  width: 18px;
  height: 18px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}

.contact-text span {
  font-size: 12px;
  color: #8890a4;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid #1c2438;
  padding: 20px 0;
  background-color: #0b0f19;
}

.bottom-flex {
  justify-content: center;
  text-align: center;
  color: #556075;
  font-size: 12px;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.phone-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* Left side */
  width: 50px;
  height: 50px;
  background-color: #fdd835;
  /* Gold */
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.phone-float:hover,
.whatsapp-float:hover {
  transform: scale(1.1);
}

.phone-float i {
  width: 24px;
  height: 24px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
  }

  .cta-footer-info {
    flex-direction: row;
    gap: 10px;
    font-size: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    /* Two columns for Links/Products */
    text-align: left;
    /* Keep text aligned left for readability */
    gap: 20px;
  }

  /* Brand Column (Full Width & Custom Mobile Grid) */
  .footer-col:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    /* QR Auto | Desc Remainder */
    column-gap: 20px;
    row-gap: 10px;
    align-items: center;
    text-align: left;
  }

  .footer-col:first-child .footer-heading {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 5px;
  }

  .footer-col:first-child .footer-desc {
    grid-column: 2;
    grid-row: 2;
    /* Force shared row */
    margin: 0;
    text-align: left;
    max-width: none;
    /* Allow full width of fractional column */
  }

  .footer-col:first-child .qr-box {
    grid-column: 1;
    grid-row: 2;
    /* Force shared row */
    margin-top: 0 !important;
    /* Override inline style */
    padding-right: 10px;
    /* Add some spacing if gap isn't enough */
  }

  /* Contact Column (Full Width) */
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  /* Separator Lines for Mobile */
  /* Separator Lines for Mobile */
  .footer-col:first-child {
    border-bottom: 1px solid #1c2438;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    border-bottom: 1px solid #1c2438;
    padding-bottom: 20px;
    margin-bottom: 10px;
    /* Pushes Contact down */
  }

  .footer-desc {
    margin: 0 auto;
  }

  .contact-info li {
    align-items: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}



.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
  font-size: 13px;
  color: #888;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Whatsapp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

/* --- Internal Page Layout (Sidebar + Content) --- */
.page-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.sidebar {
  width: 25%;
  flex-shrink: 0;
}

.main-content {
  width: 75%;
}

/* Sidebar Styles */
.sidebar-menu {
  background-color: #f8f8f8;
  border: 1px solid #eee;
}

.sidebar-menu li a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  transition: all 0.3s;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  background-color: var(--primary-gold);
  color: white;
}

.sidebar-menu li:last-child a {
  border-bottom: none;
}

/* Main Content Styles */
/* Main Content Styles */
.page-banner {
  width: 100%;
  height: 150px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #061a33;
}

.page-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(2px);
  z-index: 1;
}

.page-banner h1 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
}

/* Breadcrumbs inside Banner Override */
.page-banner .breadcrumbs {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  margin: 0;
}

.page-banner .breadcrumbs ul {
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumbs a {
  color: white;
}

.page-banner .breadcrumbs a:hover {
  color: var(--primary-gold);
}

.page-banner .breadcrumbs li::after {
  color: rgba(255, 255, 255, 0.5);
}

.page-banner .breadcrumbs li:last-child {
  color: var(--primary-gold);
  font-weight: 600;
}

.page-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  /* Allow wrapping of container items if needed */
  gap: 10px;
}

@media (max-width: 480px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .enquire-btn {
    align-self: flex-start;
    /* Or stretch/center as preferred */
    margin-top: 10px;
  }
}

.page-header h1 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.page-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
}

.enquire-btn {
  white-space: nowrap;
}

/* Filter Tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-tag {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tag:hover,
.filter-tag.active {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* Product Table */
.product-category-section {
  margin-bottom: 40px;
}

.category-header {
  background-color: #f9f9f9;
  padding: 10px 15px;
  font-weight: 700;
  color: var(--primary-blue);
  border: 1px solid #eee;
  border-bottom: none;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.product-table th,
.product-table td {
  border: 1px solid #eee;
  padding: 12px 15px;
  text-align: left;
}

.product-table th {
  background-color: #f4f4f4;
  font-weight: 600;
  color: #333;
}

.product-table tr:hover {
  background-color: #fafafa;
}

.product-name-col {
  width: 30%;
  font-weight: 600;
  color: #444;
}

.product-desc-col {
  color: #666;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .industry-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

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

  .page-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .main-content {
    width: 100%;
  }

  .enquire-btn {
    float: none;
    margin-top: 10px;
    margin-bottom: 20px;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .header-content {
    height: 70px;
  }

  .logo img {
    height: 50px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 900;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: stretch;
    /* Stretch items to full width */
  }

  .dropdown-content {
    position: static;
    display: none;
    /* Hidden by default on mobile */
    box-shadow: none;
    border-top: none;
    background-color: #f9f9f9;
    padding-left: 0;
  }

  /* Show dropdown on hover/click in mobile if needed, or just list them */
  .dropdown.active .dropdown-content {
    display: block;
  }

  /* Make dropdown trigger clickable on mobile */
  .dropdown>a::after {
    content: ' ▼';
    font-size: 10px;
  }

  .hero-slider {
    height: 500px;
  }

  .content-side {
    padding: 40px 20px;
  }

  .industry-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .industry-slider-wrapper {
    padding: 0 10px;
  }

  .nav-btn {
    display: none;
    /* Hide arrows on mobile, just stack */
  }



  .product-table th,
  .product-table td {
    padding: 8px;
    font-size: 13px;
  }

  .product-name-col {
    width: 40%;
  }
}

/* Hero Overlay Text */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  color: white;
  width: 80%;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.hero-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-content h3 {
  /* Sub headline */
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gold);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background: white;
}

.why-card h3 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background-color: #f4f4f4;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.faq-item summary {
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-blue);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  transition: background-color 0.2s;
}

.faq-item summary:hover {
  background-color: #fcfcfc;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-gold);
  line-height: 1;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item[open] summary {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  color: var(--primary-gold-dark);
}

.faq-item p {
  padding: 20px 25px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  text-align: center;
  padding: 50px 0;
  position: relative;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

.cta-btn {
  background-color: var(--primary-gold);
  color: var(--primary-blue);
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  display: inline-block;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background-color: white;
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments for new sections */
@media (max-width: 768px) {

  /* Ensure dropdowns can be toggled on mobile */
  .dropdown.active .dropdown-content {
    display: block;
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }

  .hero-content {
    width: 90%;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content h3 {
    font-size: 14px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 15px;
  }

  /* Industry Grid Mobile 2 Columns */
  .industry-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }

  .industry-card {
    max-width: 100% !important;
    flex: unset !important;
  }
}

/* Force dropdown default hidden with high specificity */
.dropdown-content {
  display: none !important;
}

/* Only hover on desktop to prevent sticky hover on mobile */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block !important;
  }
}

/* Mobile toggle active state */
@media (max-width: 768px) {
  .dropdown.active .dropdown-content {
    display: block !important;
    position: static;
    box-shadow: none;
    padding-left: 20px;
    background: #f9f9f9;
    width: 100%;
  }
}

/* Redesigned Industry Grid */
/* Desktop Grid Layout */
@media (min-width: 769px) {
  .industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 10px;
  }
}

.industry-card {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  /* Reset flex properties from previous slider */
  flex: unset;
  max-width: unset;
  padding: 0;
  background: #000;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 100%;
  width: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  opacity: 0.8;
}

.industry-card:hover .card-image img {
  transform: scale(1.1);
  opacity: 0.6;
}

/* New overlay content container needs to be added to HTML, 
   but we can style existing elements if structure is updated */
.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  text-align: left;
  pointer-events: none;
}

.industry-card h3 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 0;
  text-transform: capitalize;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  width: 100%;
  text-align: left;
}

.industry-card p {
  color: #ddd;
  font-size: 12px;
  line-height: 1.4;
  display: block;
  position: relative;
  /* Adjust based on H3 height or hide if no P */
}

/* --- BLOG PAGE STYLES --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  transition: transform 0.3s;
  border: 1px solid #eee;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-blue);
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-gold);
  gap: 5px;
}

.read-more:hover {
  gap: 8px;
  /* Slight animation on hover */
}


/* --- ABOUT PAGE STYLES --- */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.about-text-lead {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

.about-vision,
.about-values {
  margin-bottom: 50px;
}

.about-vision h3,
.about-values h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-gold);
  padding-left: 15px;
}

.about-values ul {
  list-style: none;
}

.about-values li {
  position: relative;
  padding-left: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #444;
}

.about-values li i {
  color: var(--primary-gold);
  width: 20px;
  flex-shrink: 0;
}

/* Management Section */
.management-section {
  padding-top: 50px;
  border-top: 1px solid #eee;
}

.management-card {
  margin-bottom: 30px;
}

.mgmt-img {
  width: 250px;
  height: auto;
  margin: 0 auto 15px auto;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mgmt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.management-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-founder {
  margin-bottom: 50px;
}

.main-founder .mgmt-img {
  width: 340px;
  height: auto;
  border: 3px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(220, 176, 99, 0.2);
}

.main-founder h4 {
  font-size: 22px;
  margin-top: 15px;
  color: var(--primary-blue);
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  background: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li::after {
  content: '/';
  color: #ccc;
  font-size: 12px;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: #555;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: var(--primary-gold);
}

.breadcrumbs li:last-child {
  color: var(--primary-blue);
  font-weight: 600;
}

/* --- CONTACT PAGE STYLES --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.contact-card {
  background: #f9f9f9;
  padding: 25px 10px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  background: white;
}

.contact-card-icon {
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.contact-card-icon i {
  width: 40px;
  height: 40px;
}

.contact-card h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-card p,
.contact-card a {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  /* For links */
}

/* Contact Form & Map Section */
.contact-form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background: #eef7fb;
  /* Light blueish tint as per image */
  padding: 40px;
  border-radius: 8px;
}

.contact-form-container h2 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-form-container p {
  color: #555;
  margin-bottom: 30px;
  font-size: 14px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form .form-row .form-group {
  flex: 1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-blue);
}

.contact-form .btn-submit {
  background-color: var(--primary-gold);
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  /* Or auto based on preference */
  max-width: 200px;
}

.contact-form .btn-submit:hover {
  background-color: #c9a05a;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  height: 500px;
  /* Adjust height matches form roughly */
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- CAREER PAGE STYLES --- */
.career-values {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.career-values h2 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.career-values ul {
  list-style: none;
  padding: 0;
}

.career-values li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #444;
  font-size: 15px;
}

.career-values li::before {
  content: '➔';
  /* Or use an icon */
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  /* Or black as per image */
  font-weight: bold;
}

.career-form-section {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  /* Card style form */
  border: 1px solid #eee;
}

.career-form-section label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.file-input-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* --- POPUP MODAL STYLES --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex !important;
}

.modal-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 20px;
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #ff5555;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.modal-body .form-group {
  margin-bottom: 15px;
}

.modal-body label {
  display: none;
  /* Placeholder style often hides label or keep it */
}

.modal-body input,
.modal-body textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.modal-footer .btn-close {
  background: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.modal-footer .btn-send {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  border-radius: 4px;
  cursor: pointer;
}

/* --- PRODUCT PAGE SLIDER --- */
.product-hero-slider {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 4px;
}

/* --- PRODUCT PAGE SLIDER --- */
.product-hero-slider {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 4px;
}

.product-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  /* Start from right */
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 1;
}

.product-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* Optional: Class for slide leaving to left if we implement continuous loop explicitly with classes */
.product-slide.prev-out {
  transform: translateX(-100%);
  opacity: 0;
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #deb666;
  color: white;
  border: none;
  width: 50px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
  transition: background 0.3s;
}

.product-slider-btn:hover {
  background: #d4a750;
}

.product-slider-btn.prev {
  left: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.product-slider-btn.next {
  right: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 80px;
  height: 80px;
  background: #ffffff url('images/favi.jpg') no-repeat center center;
  background-size: 50%;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  /* Soft shadow like a coin */
  /* Ensure existing styles don't conflict */
  border: none;
  animation: none;
}

/* spinning ring */
.spinner::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 3px solid transparent;
  border-top-color: var(--primary-gold);
  border-right-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}