/* ---------- Only color/theme updates below. Layout untouched ---------- */
:root {
    --primary-bg: #062e24;        /* teal background */
    --primary-color: #ffffff;     /* main text on teal */
    --secondary-color: #006666;   /* darker teal */
    --accent-color: #ffd700;      /* golden accent */
    --light-gray: #f8f8f8;
    --medium-gray: #e0e0e0;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--primary-bg);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(6,46,36,0.65);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    height: 80px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-height: 75px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
}
.logo img { height: 60px; width: auto; background: transparent; }
.logo-text { font-size: 30px; font-weight: bold; color: #FAF782; letter-spacing: 0.5px; }
.nav-menu { display: flex; list-style: none; gap: 2rem; background: transparent; }
.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--accent-color); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; cursor: pointer; padding: 8px; }
.hamburger span {
    width: 25px; height: 3px;
    background: var(--primary-color);
    margin: 3px 0; transition: var(--transition);
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
    padding: 4rem 20px; max-width: 1200px; margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(6,46,36,0.9), rgba(0,102,102,0.7));
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0));
  pointer-events: none;
}
.hero-content h1 {
    font-size: 3.5rem; font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2.5rem; line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.45);
}
.hero-content p {
    font-size: 1.2rem; color: rgba(255,255,255,0.95);
    margin-bottom: 3rem; line-height: 1.6;
}
.cta-button {
    background: var(--secondary-color); color: var(--white);
    padding: 1rem 2rem; border: none;
    margin-bottom: 5rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.cta-button:hover { background: var(--accent-color); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.hero-images {
    display: flex;
    gap: 0.15rem;
    justify-content: center;
    align-items: center;
  }

  .hero-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 8s ease;
  }

  .hero-images img:first-child {
    flex: 1.2;
    max-width: 300px;
  }

  .hero-images img:last-child {
    flex: 1.5;
    max-width: 330px;
  }

  /* slow gentle zoom */
  .hero-images img { transform: scale(1); }
  .hero-images img:hover { transform: scale(1.02); }

/* Product Sections */
.product-section { padding: 4rem 0; background: var(--primary-bg); }
.section-title {
    font-size: 2.8rem !important; font-weight: 700 !important;
    background: linear-gradient(90deg, var(--accent-color), white);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-align: center; margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-in-out; position: relative;
}
.section-title::after {
    content: ""; display: block; width: 80px; height: 4px;
    background: var(--accent-color); margin: 2px auto 0;
    border-radius: 2px;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.products-scroll {
    display: flex; gap: 2rem;
    overflow-x: auto; padding: 1rem 0;
    scroll-behavior: smooth;
}
.products-scroll::-webkit-scrollbar { height: 8px; }
.products-scroll::-webkit-scrollbar-track { background: var(--medium-gray); border-radius: 4px; }
.products-scroll::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 4px; }
.products-scroll::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/* Product Cards */
.product-card, .product-card1 {
    min-width: 300px; background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); cursor: pointer;
    align-items: center;
    position: relative;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,215,0,0.06), rgba(0,0,0,0.18));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}
.product-card:hover::before { opacity: 1; }

.product-card:hover, .product-card1:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    /* background: goldenrod; -- avoid changing bg color to keep text readable */
}
.product-card img {
    width: 100%; height: 250px;
    object-fit: cover; background: var(--secondary-color);
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    z-index: 0;
}
.product-card:hover img { transform: scale(1.06); filter: brightness(1.06); }
.product-card1 img {
    display: block; width: 80%; height: 320px;
    object-fit: cover; background: var(--secondary-color);
}
.product-card h3, .product-card1 h3 {
    font-size: 1.3rem; font-weight: 600;
    margin: 1rem; color: var(--text-dark);
    position: relative; z-index: 2;
}
.product-card p, .product-card1 p {
    color: var(--text-light); margin: 0 1rem 1.5rem;
    font-size: 0.95rem; line-height: 1.5;
    position: relative; z-index: 2;
}

/* Product Categories */
.product-high img { width: 100% !important; height: 250px !important; object-fit: cover !important; }
.product-medium img { width: 85% !important; height: 300px !important; object-fit: cover !important; margin: 0 auto !important; display: block !important; }
.product-low img { width: 75% !important; height: 350px !important; object-fit: cover !important; margin: 0 auto !important; display: block !important; }

/* About */
.about-section { padding: 4rem 0; background: #f9f9f9; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; }
.about-title { font-family: "Playfair Display", serif; font-size: 2.6rem; color: var(--text-dark); margin-bottom: 20px; }
.about-text {
    font-family: "Poppins", sans-serif; font-size: 1.1rem;
    line-height: 1.8; color: #555; max-width: 800px; margin: 0 auto;
}
.about-text strong { color: #a67842; font-weight: 500; }
.about-image img {
    width: 100%; height: 400px;
    object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--shadow);
}

/* Footer */
.footer { background: var(--primary-bg); color: var(--white); padding: 3rem 0 1rem; }
.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; margin-bottom: 2rem;
}
.footer-section h3 { font-size: 1.5rem; margin-bottom: 1rem; color: white; }
.footer-section h4 { margin-bottom: 1rem; color: var(--accent-color); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: var(--white); text-decoration: none; transition: var(--transition); }
.footer-section a:hover { color: var(--accent-color); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem; text-align: center;
    color: rgba(255,255,255,0.8);
}

/* Footer Quotations block */
.footer .quote-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}
.footer .quote-text {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--white);
}
.footer .cta-button {
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.footer .cta-button:hover {
    background: #ffcc00;
    transform: translateY(-2px);
}

/* Social icons */
.social-icons a {
  color: white;
  font-size: 1.4rem;
  margin-right: 1rem;
  transition: all 0.25s ease;
}
.social-icons a:hover { color: var(--accent-color); transform: translateY(-4px) scale(1.1); }

/* Modal */
.modal {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7); animation: fadeIn 0.3s ease;
}
.modal-content {
    background-color: var(--white);
    margin: 3% auto;           /* a little higher for tall screens */
    padding: 0;
    border-radius: var(--border-radius);
    max-width: 900px;          /* wider modal */
    max-height: 85vh;          /* allow taller */
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
  }
.close {
    position: absolute; right: 20px; top: 20px;
    font-size: 2rem; font-weight: bold;
    cursor: pointer; z-index: 2001; color: var(--text-dark);
    background: var(--white); width: 40px; height: 40px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    box-shadow: var(--shadow);
}
.close:hover { background: var(--light-gray); }
.modal-body { padding: 2rem; }
.modal-image {
    width: 100%; height: 300px;
    object-fit: cover; border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.modal-title {
    font-size: 1.8rem; color: var(--text-dark);
    margin: 1.5rem 0 1rem; font-weight: 700;
}
.modal-description { color: var(--text-light); margin-bottom: 2rem; font-size: 1.1rem; line-height: 1.6; }
.specifications {
    background: var(--light-gray); padding: 1.5rem;
    border-radius: var(--border-radius); margin-top: 1rem;
}
.specifications h4 { color: var(--text-dark); margin-bottom: 1rem; font-size: 1.3rem; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.spec-item {
    display: flex; justify-content: space-between;
    padding: 0.5rem 0; border-bottom: 1px solid var(--medium-gray);
}
.spec-item:last-child { border-bottom: none; }
.spec-label { font-weight: 600; color: var(--text-dark); }
.spec-value { color: var(--text-light); }

/* Slideshow inside modal */
.slideshow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;        /* match modal background */
    padding: 0;               /* no extra padding */
  }

  .slideshow img {
    max-width: 95%;
    max-height: 80vh;
    height: auto;
    object-fit: contain;      /* no cropping */
    border-radius: 0;         /* remove rounded corners */
    box-shadow: none;         /* remove shadow */
    background: white;        /* blend with modal */
  }

.nav-btn {
  background: var(--accent-color);
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  color: var(--text-dark);
  margin: 0 10px;
  transition: var(--transition);
  z-index: 2002;
}
.nav-btn:hover { background: #ffcc00; }
.caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; left: -100%; top: 70px;
        flex-direction: column; background-color: var(--white);
        width: 100%; text-align: center; transition: var(--transition);
        box-shadow: var(--shadow); padding: 2rem 0;
    }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .product-card, .product-card1 { min-width: 280px; }
    .modal-content { margin: 10% auto; max-width: 90%; }
    .spec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .product-card, .product-card1 { min-width: 250px; }
    .modal-content { margin: 5% auto; max-width: 95%; }
    .container { padding: 0 15px; }
}

/* Fade-in on scroll */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(.2,.9,.3,1);
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
   New Launch Grid (fixed)
   4 columns on desktop, thumbnails limited height
   ------------------------- */
/* 🔹 New Launch Container (transparent background) */
.new-launch-container {
    background: rgba(0, 0, 0, 0.05); /* light transparent overlay */
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  /* 🔹 New Launch Grid (4x2 layout) */
  .new-launch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .product-thumb {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .product-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .product-thumb:hover img {
    transform: scale(1.05);
  }
  
  /* 🔹 Individual Image Sizes (customize each if needed) */
  .new-launch-grid .img1 img { height: 250px;}
  .new-launch-grid .img2 img { height: 250px; }
  .new-launch-grid .img3 img { height: 250px; }
  .new-launch-grid .img4 img { height: 250px; }
  .new-launch-grid .img5 img { height: 250px; }
  .new-launch-grid .img6 img { height: 250px; }
  .new-launch-grid .img7 img { height: 250px; }
  .new-launch-grid .img8 img { width: 100%;height: 250px !important;}
  
  /* Responsive */
  @media (max-width: 992px) {
    .new-launch-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .new-launch-grid {
      grid-template-columns: 1fr;
    }
  }
  
/* Quote Modal Specific Styles */
.quote-modal-content {
    max-width: 500px;
    padding: 2.5rem;
    text-align: left;
  }
  
  .quote-modal-content .modal-title {
    font-family: var(--font-playfair);
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .quote-modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--light-gray);
    color: var(--text-dark);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
  }
  
  .submit-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .submit-button:hover {
    background: var(--accent-color);
    color: var(--text-dark);
  }