/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fafafa;
  line-height: 1.6;
}
/* Navbar Default (Transparent at top) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1000;
  background: transparent;
}

header .logo,
header nav a {
  position: relative;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* a little space below text */
  width: 0%;
  height: 2px;
  background: #d4af37; /* golden underline */
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%; /* underline expands smoothly */
}

/* Navbar when Scrolled */
header.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header.scrolled .logo,
header.scrolled nav a {
  color: #333; /* dark text when background is white */
}

/* Navbar – transparent */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 10%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: #fff; /* background after scroll */
  border-bottom: 1px solid #ddd;
}

.logo {
   display: flex;
  align-items: center;
  gap: 10px; /* space between image & text */
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;  /* golden text */
  margin-left: 1rem; /* space from left edge */
}

.logo img {
  height: 40px;   /* adjust as needed */
  width: auto;
  border-radius: 5px; /* optional: smooth edges */
}

.navbar.scrolled .logo {
  color: #0a0a0a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links li a {
  color: #0a0a0a;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #d4af37;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* Prevent background page scroll when menu is open */
body.nav-open { overflow: hidden; }

/* Animate hamburger into an "X" */
.hamburger { width: 28px; height: 22px; position: relative; }
.hamburger span{
  position:absolute; left:0; width:100%; height:3px; border-radius:2px;
  background:#fff; transition:transform .3s ease, top .3s ease, opacity .3s ease, background .3s ease;
}
.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:9px; }
.hamburger span:nth-child(3){ top:18px; }

.hamburger.open span:nth-child(1){ top:9px; transform:rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ top:9px; transform:rotate(-45deg); }

/* Keep bar color legible when navbar turns white on scroll */
.navbar.scrolled .hamburger span { background:#0a0a0a; }


.navbar.scrolled .hamburger span {
  background: #0a0a0a;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .navbar .logo {
    margin-left: 2px;
  }
  .navbar .logo img {
    margin-left: 0.3px;
  }
  .nav-links.active {   /* match JS toggle */
    right: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }

  .nav-links a {
    color: #d4af37 !important;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
  }

  .nav-links a:hover {
    color: #fff !important;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #d4af37;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  .hamburger.open span {
  background: #d4af37 !important;
  }
  /* Animate hamburger into an "X" */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}




/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url(Images/earth\ lightened\ all\ countries.jpeg) no-repeat center center/cover;
  color: #ffffff;
  padding: 0 10%;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 2rem auto; /* added bottom margin */
  font-size: 1.2rem;
  color: #e0e0e0;
}

.btn {
  display: inline-block;
  margin-top: 1rem; /* ensures spacing */
  padding: 0.8rem 2rem;
  background: #d4af37; /* gold */
  color: #0a0a0a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ffffff;
  color: #d4af37;
}

/* About Preview Section */
.about-preview {
  padding: 4rem 10%;
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;   /* keeps width balanced */
  margin: auto;        /* centers the container */
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #d4af37; /* golden heading */
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

/* Know More Button */
.btn-about {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: #d4af37; /* golden button */
  color: #0a0a0a;      /* dark text for contrast */
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: #333; /* dark hover */
  color: #fff;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    text-align: center;
    margin-bottom: 1rem;
    order: -2;
  }

  .about-image {
    margin: 1rem 0;
    text-align: center;
    order: -1;
  }

  .about-image img {
    max-width: 90%;
  }

  .about-text p {
    margin-bottom: 1.5rem;
    order: 0;
    text-align: center;
  }

  .btn-about {
    text-align: center;
    display: inline-block;
    margin-left: 28%;
  }
  
}

/* Products Preview Section */
.products-preview {
  padding: 4rem 10%;
  background: #fafafa;
  text-align: center;
}

.products-preview h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #d4af37; /* golden heading */
}

/* Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid #d4af37; /* golden outline */
}

.product-item:hover {
  transform: translateY(-5px);
  border: 2px solid #333; /* turns darker on hover */
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Enquire Now Button */
.btn-enquire {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #d4af37; /* golden */
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background: #333;
  color: #fff;
}

/* View More Button */
.view-more {
  margin-top: 3.5rem;
}

.btn-view {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #d4af37; /* blue */
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.btn-view::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-view:hover {
  background: #333; /* gold hover */
  color: #fff;
}

.btn-view:hover::after {
  transform: translateX(5px); /* arrow slides right */
}

/* Responsive */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Enquiry Form Section */
.enquiry-form {
  padding: 4rem 10%;
  background: #fff; /* white to contrast products section */
  text-align: center;
}
.enquiry-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #d4af37; /* golden heading */
  font-weight: 700;
}

.form-container {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Inputs, Select, Textarea */
.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  border: 2px solid #d4af37; /* golden border focus */
  outline: none;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3); /* golden glow */
}

/* Dropdown Styling */
.form-container select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}

/* Send Message Button */
.btn-send {
  background: #d4af37; /* golden */
  color: #0a0a0a;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-send:hover {
  background: #333; /* dark on hover */
  color: #fff;
}



/* Footer */
.footer {
  background: #0a0a0a; /* premium dark */
  color: #ccc;
  padding: 3rem 10% 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer p {
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #d4af37; /* gold hover */
}

/* Newsletter */
.footer .newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer .newsletter input {
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  outline: none;
}

.footer .newsletter button {
  background: #d4af37;
  border: none;
  padding: 0.7rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer .newsletter button:hover {
  background: #fff;
  color: #0a0a0a;
}

/* Bottom Line */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}







/*---------------------------------ABOUT US PAGE---------------------------------*/



/* About Us Hero */
.about-hero {
  height: 50vh; /* Half screen */
  background: url('Images/about-us-hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.4); /* subtle overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;

  background: linear-gradient(90deg, #e2ba37, #fcdf3d, #f1cf77);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* About Content */
.about-content {
  background: #f9f9f9;
  padding: 60px 20px;
}

.about-content .container {
  max-width: 1000px;
  margin: auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #333;
}

/*------- Mission & Vision Section ------*/


/* ===== Mission & Vision (About page) ===== */
.mission-vision {
  --gold: #d4af37;
  --ink: #0a0a0a;
  --soft: #f7f7f7;

  background: #fff;                 /* alternates with your about-content (#f9f9f9) */
  padding: 4rem 10%;
}

.mission-vision .mv-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mission-vision .mv-header h2 {
  font-size: 2rem;
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.mission-vision .mv-header h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 80px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--gold), #f2e2a2);
  border-radius: 2px;
}

.mission-vision .mv-header .mv-sub {
  color: #555;
  margin-top: 0.5rem;
}

.mission-vision .mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.mission-vision .mv-card {
  background: var(--soft);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mission-vision .mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  border-color: rgba(212, 175, 55, 0.35);
}

.mission-vision .mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f7e7a8);
  display: grid;
  place-items: center;
  color: #111; /* icon stroke color via currentColor */
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25);
}

.mission-vision .mv-card h3 {
  margin: 0.25rem 0 0.75rem;
  color: var(--ink);
  font-size: 1.25rem;
}

.mission-vision .mv-card p {
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .mission-vision .mv-grid {
    grid-template-columns: 1fr; /* stack */
  }
}


/* ===== Core Values / Why Choose Us ===== */
.core-values {
  --gold: #d4af37;
  --ink: #0a0a0a;
  --soft: #fafafa;

  background: var(--soft);
  padding: 4rem 10%;
}

.core-values .cv-header {
  text-align: center;
  margin-bottom: 2rem;
}

.core-values .cv-header h2 {
  font-size: 2rem;
  color: var(--ink);
  display: inline-block;
  position: relative;
}

.core-values .cv-header h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 80px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--gold), #f2e2a2);
  border-radius: 2px;
}

.core-values .cv-header .cv-sub {
  color: #555;
  margin-top: 0.5rem;
}

.core-values .cv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.core-values .cv-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.core-values .cv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  border-color: rgba(212, 175, 55, 0.35);
}

.core-values .cv-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.core-values .cv-card h3 {
  margin: 0.5rem 0 0.75rem;
  color: var(--ink);
  font-size: 1.2rem;
}

.core-values .cv-card p {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .core-values .cv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .core-values .cv-grid {
    grid-template-columns: 1fr;
  }
}

/*-------------- Our Timeline -----------------*/
/* ===== Timeline (solid line + upward arrows on the line) ===== */
.timeline-section {
  --gold: #d4af37;
  --ink: #0a0a0a;
  --section-bg: #fff; /* match your page background here */
  background: var(--section-bg);
  padding: 60px 20px;
  text-align: center;
}

.timeline-section .section-title {
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 40px;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 40px; /* bottom pad so last arrow has breathing room */
}

/* Solid golden vertical spine (full height - JS will mask the bottom part) */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;               /* full height; the ::after mask hides the bottom tail */
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--gold);
  z-index: 0;
}

/* Bottom mask (hides the line below the lowest arrow so the line "starts" at that arrow) */
.timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: var(--mask-bottom-from, 9999px); /* JS sets this to the last arrow Y */
  bottom: 0;
  width: 8px;                           /* slightly wider than the line for clean cover */
  background: var(--section-bg);        /* same as section bg */
  z-index: 1;                           /* above the line */
}

/* L/R rails for cards */
.timeline-container {
  position: relative;
  width: 50%;
  padding: 12px 40px;
  z-index: 2; /* above the spine */
}

.timeline-container.left  { left: 0;     text-align: right; }
.timeline-container.right { left: 50%;   text-align: left;  }

/* Cards */
.timeline-content {
  display: inline-block;
  background: #f3f2f2;
  color: #333;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  max-width: 85%;
}

.timeline-content h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

/* Upward arrows ON the line at each card's vertical position */
.timeline-container::after {
  content: "";
  position: absolute;
  top: 50%;                       /* aligns to the middle of each card */
  transform: translateY(-50%);    /* vertical center of the card */
  width: 0; height: 0;
  border: 9px solid transparent;  /* triangle base */
  border-top: 0;
  border-bottom: 12px solid var(--gold); /* ▲ upward-pointing arrowhead */
  z-index: 2;
}

/* Place the arrow exactly over the line */
.timeline-container.left::after  { left: 100%; transform: translate(-50%, -50%); }
.timeline-container.right::after { right: 100%; transform: translate(50%,  -50%); }

/* ===== Mobile (stack) ===== */
@media (max-width: 768px) {
  .timeline::before {
    left: 22px ; /* solid golden line on the left */
  }

  .timeline-container,
  .timeline-container.left,
  .timeline-container.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 64px;  /* space for line + arrow */
    padding-right: 20px;
    position: relative;
  }

  /* Reset arrows for mobile */
  .timeline-container::after {
    content: "";
    position: absolute;
    left: 22px;                   /* align to line */
    top: 50%;                     /* vertically center on card */
    transform: translate(-50%, -50%) rotate(180deg); /* center + flip upwards */
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #d4af37; /* golden upward arrow */
  }
}




/*--------------- Global Map ------------*/

.global-presence {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.global-presence .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
  font-weight: 700;
}

.map-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  border: 2px solid #d4af37;
  border-radius: 10px;
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #d4af37;   /* Gold */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.3);
  background: #b8860b;   /* Darker gold */
}

/* Tooltip */
.map-pin::after {
  content: attr(data-country);
  position: absolute;
  bottom: 125%; /* above the pin */
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.map-pin:hover::after {
  opacity: 1;
}






/*--------------------Prodcuts Page------------------*/


/* Hero Section */
.products-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url("Images/spices.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.products-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, #FFD700, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.products-hero p {
  font-size: 1.2rem;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  background: #f8f8f8;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #d4af37;
  height: 270px;          /* smaller height for horizontal look */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;          /* makes card content adapt */
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ensures image fills card neatly */
  transition: transform 0.5s ease;
  display: block;
}


.product-card.active {
  border-color: #000; /* change border color */
  border-bottom: 3px solid black; /* indicator */
}

.product-card.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 4px;
  background: #000; /* black line indicator */
  border-radius: 2px;
}


.product-card:hover img {
  transform: scale(1.1);
}

/* Overlay text on card */
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: 2;
}
.product-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}
.product-overlay p {
  font-size: 0.9rem;
  margin-top: 5px;
}

/*-----------------Product Details--------------------*/

.product-details {
  margin: 80px auto;
  max-width: 1100px;   /* centralize */
}

.product-details-container {
  display: none; /* hidden by default */
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  background: #fafafa;
}

.product-details-container.active {
  display: grid; /* show only selected */
}

.product-image img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin: 0 auto;
}

.product-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.product-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.product-info label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #444;
}

.product-info select {
  width: 100%;
  max-width: 250px;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.product-info button {
  margin-top: 20px;
  background: linear-gradient(to right, #FFD700, #DAA520);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.product-info button:hover {
  background: linear-gradient(to right, #DAA520, #FFD700);
}

.pricing-btn {
  background: linear-gradient(90deg, #f6d365, #fda085); /* golden gradient */
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.pricing-btn:hover {
  background: linear-gradient(90deg, #fda085, #f6d365);
  transform: scale(1.05);
}


/* Mobile fix for your product-details HTML (image on top, content below) */
@media (max-width: 768px) {
  /* Force stack layout even if desktop uses grid/flex */
  #product-details > .product-details-container {
    display: none;    /* image first, then info */
    align-items: center;
    gap: 16px !important;
    text-align: center;
    padding: 20px 16px;
  }

  .product-details-container.active {
    display: flex !important;               /* override grid if any */
    flex-direction: column !important; 
  }

  /* Make both columns full width */
  #product-details .product-image,
  #product-details .product-info {
    width: 100% !important;
    max-width: 640px;                       /* nice readable line length */
    margin: 0 auto;
  }

  /* Image sizing & centering */
  #product-details .product-image img {
    width: min(80%, 320px);                 /* scale down on small screens */
    height: auto !important;
    display: block;
    margin: 0 auto 14px;
    border-radius: 6px;
  }

  /* Typography alignment */
  #product-details .product-info h3,
  #product-details .product-info p {
    text-align: center;
  }

  /* Form controls width & centering */
  #product-details .product-info label {
    display: block;
    max-width: 360px;
    margin: 10px auto 4px;
    text-align: left;                       /* labels left, inputs centered */
  }

  #product-details .product-info select {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 12px;
  }

  /* Button centering */
  #product-details .product-actions {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #product-details .pricing-btn {
    width: 100%;
    max-width: 360px;
    margin-top: 8px;
  }
}

/*----------CONTACT US PAGE---------------------*/

/* ====== CONTACT PAGE SECTIONS ====== */

/* Hero Section */
.contact-hero {
  height: 50vh;
  background: url('Images/contact-hero.jpg') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #FFD700, #C5A200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 10px;
}

/* Contact Details */
.contact-details {
  padding: 70px 10%;
  text-align: center;
  background: #fff;
}

.contact-details h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #FFD700, #C5A200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.detail-box {
  background: #f9f9f9;
  border: 1px solid #e2c76e;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}

.detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.detail-box h3 {
  color: #c5a200;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.detail-box p {
  color: #444;
  margin: 5px 0;
}

.detail-box a {
  color: #000;
  text-decoration: none;
}

.detail-box a:hover {
  text-decoration: underline;
}

/* Map Section */
.map-section {
  background: #f7f7f7;
  padding: 60px 10%;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #FFD700, #C5A200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-container {
  border: 2px solid #e2c76e;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-details h2,
  .map-section h2 {
    font-size: 1.8rem;
  }

  .details-grid {
    gap: 20px;
  }
}



/* Footer */
.footer {
  background: #111;
  color: #bbb;
  padding: 40px 10%;
  text-align: center;
}
.footer-links {
  margin-bottom: 20px;
}
.footer-links a {
  margin: 0 10px;
  color: #bbb;
  text-decoration: none;
}
.footer-links a:hover {
  color: #FFD700;
}
.newsletter input {
  padding: 8px;
  border-radius: 5px;
  border: none;
  margin-right: 8px;
}
.newsletter button {
  padding: 8px 15px;
  border: none;
  background: #FFD700;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.newsletter button:hover {
  background: #DAA520;
}









