:root {
  --navy: #0E1F36;
  --gold: #D6B46A;
  --grey: #8A8A8A;
  --white: #ffffff;
}

html,
body {
  overflow-x: hidden;
  /* Fix horizontal scroll issues globally */
}

body {
  font-family: 'Poppins', sans-serif;
  background: #FAFAFA;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* =====================
       GLASS NAVBAR
===================== */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.nav-link {
  color: var(--navy) !important;
  margin-left: 1rem;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link.active {
  color: var(--gold) !important;
}

/* =====================
       LANGUAGE SWITCH
===================== */
.language-switch {
  display: flex;
  border: 1px solid rgba(14, 31, 54, 0.15);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}

.lang-btn.active {
  background: var(--gold);
  color: #fff;
}

/* =====================
       GLOBAL SECTIONS
===================== */
section {
  padding: 50px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

/* =====================
       HERO SECTION
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--navy);
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: var(--grey);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.btn-gold,
.about-btn {
  background: #131F37;
  color: #DCC17A;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover,
.about-btn:hover {
  background: #DCC17A;
  color: #131F37;
}

.hero .btn-gold {
  background: var(--gold);
  color: #fff;
  margin-top: 1.5rem;
}

.hero .btn-gold:hover {
  background: #c9a758;
}

/* =====================
   CAROUSEL
===================== */
.carousel {
  border-radius: 20px;
  overflow: hidden;
}

.carousel-item img {
  height: 420px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .carousel-item img {
    height: 300px;
  }
}

/* =====================
   PRODUCT STRIP (Index Page)
===================== */
.product-strip {
  margin-top: -40px;
  padding-bottom: 60px;
}

.home-product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(14, 31, 54, 0.08);
  height: 100%;
}

.home-product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.home-product-card h6 {
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 5px;
}

.home-product-card span {
  font-size: 0.85rem;
  color: var(--grey);
}

.home-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

/* =====================
   PRODUCT CARD (Product Page)
===================== */
.product-card {
  position: relative;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all .4s ease;
  display: block;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: .85;
}

.product-card .card-content {
  padding: 25px;
  color: var(--white);
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
}

.product-card button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: .3s;
}

.product-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover .card-content {
  color: var(--navy);
}

.product-card:hover h3 {
  color: var(--navy);
}

.product-card:hover button {
  background: var(--gold);
  color: var(--navy);
}


/* =====================
   ABOUT PAGE STYLES
===================== */
.about-section {
  background: #ffffff;
}
.about-section-page {
  background: #d3d3d3;
}

.small-title,
.section-subtitle,
.about-subtitle {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-title,
.who-title,
.section-title {
  color: var(--navy);
  font-weight: 700;
  margin: 10px 0 20px;
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.25;
}

.about-title span,
.section-title span {
  color: var(--gold);
}

.about-text,
.who-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.about-image,
.who-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
}

.about-image img,
.who-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Vision & Mission Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  background: var(--navy);
  color: var(--gold);
  padding: 40px;
  border-radius: 22px;
  transition: all .4s ease;
  border: none;
  height: 100%;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all .4s ease;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

.card p {
  color: var(--gold);
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.9;
}

.card:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card:hover p {
  color: var(--navy);
}

.card:hover .card-icon {
  background: rgba(14, 31, 54, 0.08);
  color: var(--navy);
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.feature {
  background: var(--navy);
  color: var(--gold);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: left;
  transition: all .4s ease;
}

.feature .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--gold);
  transition: 0.4s;
}

.feature h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gold);
  margin-bottom: 0;
  opacity: 0.85;
}

.feature:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature:hover p {
  color: var(--navy);
}

.feature:hover .icon {
  background: rgba(14, 31, 54, 0.08);
  color: var(--navy);
}

@media (max-width: 991px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .about-image,
  .who-image {
    height: auto;
    margin-bottom: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

/* =====================
   WHY CHOOSE SECTION (Home)
===================== */
.why-choose-section {
  background: #f9f9f9;
}

.section-desc {
  max-width: 650px;
  margin: auto;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.why-card {
  background: #131F37;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(19, 31, 55, 0.15);
  transition: all 0.35s ease;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(220, 193, 122, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.35s ease;
}

.why-icon i {
  font-size: 26px;
  color: #DCC17A;
  transition: 0.35s ease;
}

.why-card h5,
.why-card p {
  color: #DCC17A;
  transition: 0.35s ease;
}

.why-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
}

.why-card:hover h5,
.why-card:hover p {
  color: #131F37;
}

.why-card:hover .why-icon {
  background: rgba(19, 31, 55, 0.12);
}

.why-card:hover .why-icon i {
  color: #131F37;
}


/* =====================
   PRODUCT PAGE STYLES
===================== */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (width >=992px) {
  .product-card-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-section {
  padding: 20px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.split img {
  width: 100%;
  border-radius: 24px;
}

.uniform-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 0;
}

.uniform-list li {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
}

.uniform-list li:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: var(--white);
  width: 60%;
  max-width: 900px;
  border-radius: 30px;
  padding: 40px;
  text-align: center;
}

.modal-content img {
  width: 250px;
  height: 250px;
  align-self: center;
  border-radius: 20px;
  margin: 25px 0;
  object-fit: contain;
}

.close-modal {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
}

/* =====================
   CONTACT PAGE STYLES
===================== */
.contact-section {
  padding: 80px 0;
}

.contact-info-box {
  background: var(--navy);
  padding: 45px;
  border-radius: 24px;
  height: 100%;
}

.contact-info-box h3 {
  color: var(--gold);
  margin-bottom: 5px;
}

.contact-info-box h6 {
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  text-decoration: none;
  color: var(--gold);
  font-weight: 500;
}

.icon-box {
  width: 46px;
  height: 46px;
  background: rgba(220, 193, 122, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.contact-item:hover .icon-box {
  background: #f4f7ff;
  color: var(--navy);
}

.contact-image img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 40px;
}

.contact-form-box {
  background: var(--navy);
  padding: 40px;
  border-radius: 24px;
}

.contact-form-box h2 {
  color: var(--gold);
  margin-bottom: 30px;
}

.contact-form-box label {
  color: var(--grey);
  font-size: 13px;
  margin-bottom: 6px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border: 4px solid var(--gold);
}

.send-btn {
  background: rgba(220, 193, 122, 0.15);
  color: var(--gold);
  padding: 12px 45px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  transition: 0.3s;
}

.send-btn:hover {
  background: #f4f7ff;
  color: var(--navy);
}

/* =====================
   BREADCRUMB
===================== */
.breadcrumb-box {
  text-align: center;
  margin-top: 150px;
  padding-bottom: 20px;
}

.breadcrumb-box h1 {
  color: var(--navy);
  font-weight: 600;
  font-size: 2rem;
}

.breadcrumb-box span {
  color: var(--grey);
  font-size: 14px;
}

.breadcrumb-box span a {
  color: var(--navy);
  text-decoration: none;
}

/* =====================
   FOOTER
===================== */
.linora-footer {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 60px 0 20px;
  font-family: inherit;
}

.footer-top {
  row-gap: 40px;
}

.footer-logo {
  max-width: 200px;
}

.footer-title {
  font-weight: 600;
  color: #0c1f3f;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c9a24d;
}

.footer-contact p {
  margin: 0;
  color: #444;
}

.footer-contact .label {
  font-weight: 500;
  color: #0c1f3f;
}

.footer-content {
  text-align: center;
}

.footer-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0c1f3f;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #c9a24d;
  color: #0c1f3f;
}

.footer-center {
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #555;
}

/* =====================
   GLOBAL RESPONSIVE RULES
===================== */
@media (max-width: 900px) {

  .product-card-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 90%;
  }

  .uniform-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-center {
    text-align: center;
  }

  .breadcrumb-box {
    margin-top: 120px;
  }

  .section-title {
    font-size: 28px;
  }
}