:root {
  --orange:#f15a24;
  --dark:#1c1c1c;
  --white:#ffffff;
  --gray:#555;
  --font:'Clash Grotesk',sans-serif;
}

/* Reset */
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:var(--font);color:#222;background:var(--white);line-height:1.6;}
a{text-decoration:none;color:inherit;}
html {scroll-behavior: smooth;}

/* HEADER */
header {
  position: absolute; /* Initial absolute */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: transparent;
  z-index: 1001;
  transition: all 0.3s ease;
}

/* Sticky styles after scroll */
header.sticky {
  position: fixed; /* Make it fixed */
  background: #000; /* Change background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 6%; /* Optional: smaller padding */
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
  text-decoration: none;
}

nav a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.menu li.current-menu-item > a,
.menu li.current_page_item > a {
    color: #ff6600;       /* Example highlight color */
    font-weight: bold;
}
.menu li a:hover {
    color: #ff6600;
    transition: 0.3s;
}
/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  background: rgb(250 83 32); /* subtle orange tint */
  border-radius: 30px;
  padding: 0.6rem 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-info:hover {
  background: rgba(243, 156, 18, 0.35);
  transform: translateY(-2px);
}

/* WhatsApp Icon */
.whatsapp-icon i {
  margin-right: 10px;
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info:hover .whatsapp-icon i {
  transform: scale(1.2);
  color: #1ebe5d;
}

/* Link Text */
.contact-info a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #25D366;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* HERO SECTION */
.hero {
  position: relative;
/*  background-image: url('https://www.sandhyatech.com/JJ-Industries/images/Factory-worker-examining-equipment.webp');*/
  background-position: center center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 6%;
  animation: fadeUp 1s forwards;
}

.hero-content .welcome-text {
  text-transform: uppercase;
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-content h1 span {
  color: var(--white);
  font-weight: 800;
}

.hero-content .sub-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.8rem;
  background: var(--orange);
  color: var(--white);
/*  border-radius: 30px;*/
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

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

.btn .icon {
  font-size: 0.85em;
  transition: transform 0.3s;
}

.btn:hover .icon {
  transform: translateX(3px);
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: auto;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
}

/* ABOUT + PRODUCTS */
.about-section {
  background: #fff;
  padding: 5rem 8%;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-text h3 {font-size:1.8rem;font-weight:600;line-height:1.4;margin-bottom:1.2rem;}
.about-text p {color:var(--gray);font-size:1.05rem;line-height:1.7;}
.image-box {
  position: relative;
  width: 100%;
  padding-top: 75%; /* maintains aspect ratio */
}
.black-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers container */
}
.orange-block {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  background: var(--orange);
}

/* Product Grid */
.product-intro {text-align:center;margin-bottom:3rem;}
.product-intro h2{font-size:1.8rem;font-weight:600;margin-bottom:0.8rem;}
.product-intro p{color:var(--gray);font-size:1rem;}
.product-grid {display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;}
.product-card {
  text-align:left;
  padding:1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
/*  box-shadow: 0 8px 25px rgba(0,0,0,0.15);*/
}
.product-shape-wrapper {
  position: relative;
  width: 100%;
  height: 220px; /* Fixed height */
  overflow: hidden;
  margin-bottom: 1.2rem;
}

/* Product image with polygon effect */
.product-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.product-card h3{font-size:1.1rem;font-weight:600;margin-bottom:0.6rem;}
.product-card p{color:var(--gray);font-size:0.95rem;margin-bottom:1.2rem;line-height:1.6;}
.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* space between text and icon */
  background: var(--dark);
  color: #fff;
  font-weight: 500;
  padding: 0.6rem 1.3rem;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
}

.read-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.read-btn .icon {
  font-size: 0.85em; /* smaller icon */
  line-height: 1;
  transition: transform 0.3s;
}

.read-btn:hover .icon {
  transform: translateX(3px); /* subtle arrow movement */
}


/* INDUSTRIES */
.presence-top {
  display:flex;justify-content:space-between;align-items:center;background:var(--dark);color:#fff;padding:5rem 8%;flex-wrap:wrap;
}
.presence-content h3{font-size:2rem;font-weight:600;margin-bottom:1rem;line-height:1.3;}
.stats {display:flex;align-items:flex-end;gap:0.5rem;}
.stats .number {font-size:4rem;font-weight:700;color:var(--orange);}
.stats .label {font-size:0.9rem;color:#ccc;margin-bottom:0.5rem;}
.work-btn {background: var(--orange);color:#fff;padding:0.9rem 2rem;font-weight:600;border-radius:2px;transition: background 0.3s, transform 0.3s;}
.work-btn:hover {background:#d94d1d; transform: translateY(-2px);}

.industries-section {background:#fff;text-align:center;padding:5rem 8%;}
.industries-intro h2{font-size:1.8rem;font-weight:600;margin-bottom:0.8rem;}
.industries-intro p{color:var(--gray);font-size:1rem;margin-bottom:3rem;}
.industries-grid {display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;}
.industry-card {
  text-align:center;
  opacity:0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.industry-card.visible {
  opacity:1;
  transform: translateY(0);
}
/* Wrapper to maintain aspect ratio */
.industry-shape-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%; /* maintains original aspect ratio */
  overflow: hidden;
  margin-bottom: 1.2rem;
}

/* Image with polygon effect */
.industry-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* image fills container */
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  transition: transform 0.5s;
}
.industry-card h3{font-size:1.05rem;font-weight:600;margin-bottom:0.6rem;}
.industry-card p{color:var(--gray);font-size:0.95rem;line-height:1.6;}

/* FOOTER */
.footer {background:#1c1c1c;color:#e0e0e0;}
.footer-inner {display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;padding:2rem 2%;border-bottom:1px solid #2a2a2a;}
.footer-col {padding:0 1.5rem;border-right:1px solid #2a2a2a;}
.footer-col:last-child {border-right:none;}
.footer-logo {height:48px;margin-bottom:1rem;}
.footer-desc {font-size:0.95rem;color:#bfbfbf;line-height:1.6;margin-bottom:1.5rem;}
.social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.social-box {
  width: 32px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 6px;
  display: flex;               /* centers icon horizontally & vertically */
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

.social-box:hover {
  transform: scale(1.2);
  background: #ff6600; /* your theme orange */
}

.social-box i {
  font-size: 14px;
}

.footer h4 {color:#fff;font-size:1rem;font-weight:600;margin-bottom:1.2rem;}
.footer-contact ul, .footer-links ul {list-style:none;padding:0;margin:0;}
.footer-contact li {margin-bottom:0.8rem;font-size:0.95rem;color:#bfbfbf;position:relative;padding-left:1.2rem;}
.footer-contact .dot {position:absolute;left:0;top:7px;width:6px;height:6px;background:var(--orange);border-radius:50%;}
.link-grid {display:flex;gap:2rem;}
.footer-links a {display:inline-block;color:#bfbfbf;font-size:0.95rem;margin-bottom:0.6rem;transition:color 0.3s;}
.footer-links a::before {content:"▸ ";color:var(--orange);}
.footer-links a:hover {color:var(--orange);}
.footer-bottom {text-align:center;font-size:0.85rem;color:#7a7a7a;padding:1rem 0;background:#181818;}

/* RESPONSIVE */
@media(max-width:900px){
  .about-container {grid-template-columns:1fr;text-align:center;}
  .orange-block {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .presence-top {flex-direction:column;text-align:center;gap:2rem;}
  .stats {justify-content:center;}
  .footer-inner {grid-template-columns:1fr;border-bottom:none;}
  .footer-col {border-right:none;border-bottom:1px solid #2a2a2a;padding-bottom:2rem;margin-bottom:0rem;}
  .footer-col:last-child {border-bottom:none;margin-bottom:0;padding-bottom:0;}
  .link-grid {flex-direction:column;}
   .product-shape-wrapper {
    height: 180px; /* smaller height for mobile */
  }
  
  .industry-shape-wrapper {
    padding-top: 60%; /* slightly smaller on mobile */
  }
  /* Hamburger menu */
  .hamburger {display:flex;}
  nav {position:fixed;top:0;left:-100%;width:100%;height:100%;background:var(--dark);display:flex;justify-content:center;align-items:center;transition:left 0.3s ease;z-index:1000;}
  nav ul {flex-direction:column;gap:2rem;text-align:center;}
  nav a {font-size:1.5rem;color:var(--white);}
  nav.active {left:0;}
}
@media(max-width:768px){
  .hero-content h1{font-size:2rem;}
  .contact-info {
    display: none;
  }
  .about-section {
  background: #fff;
  padding: 2rem 4%;
}
.hero{
  min-height: 80vh;
}
}

/* ---------------------------
   JJ Industries Hero Banner
----------------------------*/
.jj-about {
  position: relative;
  height: 90vh; /* slightly shorter than full screen */
  background-image: url('https://www.sandhyatech.com/JJ-Industries/images/Factory-worker-examining-equipment.webp');
  background-position: center center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  display: flex;
  align-items: center;
  color: #fff;
  font-family: 'Clash Grotesk', sans-serif;
  padding-left: 82px; /* aligns with header logo */
  z-index: 1;
}

/* Dark overlay for readability */
.jj-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* semi-transparent overlay */
  z-index: -1;
}

.jj-about-content {
  max-width: 650px;
  z-index: 2;
}

.jj-about-content h1 {
  font-size: 3.2rem; /* decreased for better balance */
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.jj-about-content h1 span {
  display: block;
  font-weight: 700;
}

.jj-about-content p {
  font-size: 1rem;
  color: #d1d1d1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.jj-btn {
  display: inline-flex;
  align-items: center;
  background-color: #ff4c1e;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jj-btn .jj-icon {
  margin-left: 0.6rem;
  font-size: 1.1rem;
}

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

/* Responsive */
@media (max-width: 992px) {
  .jj-about {
    height: auto;
    padding: 6rem 8%;
  }

  .jj-about-content h1 {
    font-size: 2.4rem;
  }

  .jj-about-content p {
    font-size: 0.95rem;
  }
}



 /* ---------------------------
   Contact Page JJ Industries Hero Banner
----------------------------*/
.jj-hero {
  position: relative;
  height: 40vh; /* slightly shorter than full screen */
/*  background-image: url('https://www.sandhyatech.com/JJ-Industries/images/Factory-worker-examining-equipment.webp');*/
  background-position: center center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  display: flex;
  align-items: center;
  color: #fff;
  font-family: 'Clash Grotesk', sans-serif;
  padding-left: 82px; /* aligns with header logo */
  z-index: 1;
}

/* Dark overlay for readability */
.jj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* semi-transparent overlay */
  z-index: -1;
}

.jj-hero-content {
  max-width: 100%;
  z-index: 2;
}

.jj-hero-content h1 {
  font-size: 3.2rem; /* decreased for better balance */
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.jj-hero-content h1 span {
  display: block;
  font-weight: 700;
}

.jj-hero-content p {
  font-size: 1rem;
  color: #d1d1d1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.jj-btn {
  display: inline-flex;
  align-items: center;
  background-color: #ff4c1e;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jj-btn .jj-icon {
  margin-left: 0.6rem;
  font-size: 1.1rem;
}

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

/* Responsive */
@media (max-width: 992px) {
  .jj-hero {
    height: auto;
    padding: 6rem 8%;
  }

  .jj-hero-content h1 {
    font-size: 2.4rem;
  }

  .jj-hero-content p {
    font-size: 0.95rem;
  }
}
/* ---------------------------
   CONTACT PAGE STYLING
----------------------------*/
.contact-top {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background: #fff;
  padding: 50px 6%;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInDown 1s ease both;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 300px;
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateY(-5px);
}
.contact-item i {
  font-size: 1.8rem;
  color: #ff4c1e;
  background: #fff3f0;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-item:hover i {
  background: #ff4c1e;
  color: #fff;
}
.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}
.contact-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}
.contact-item a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: #ff4c1e;
}

/* Connect Section */
.connect-section {
  padding: 80px 8%;
  background: #fff;
}
.connect-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
}
.connect-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.connect-image img:hover {
  transform: scale(1.03);
}
.connect-form h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.connect-form h2 span {
  color: #000;
}
.connect-form p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
}
.connect-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.connect-form .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.connect-form input,
.connect-form select,
.connect-form textarea {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.connect-form input:focus,
.connect-form select:focus,
.connect-form textarea:focus {
  border-color: #ff4c1e;
  box-shadow: 0 0 5px rgba(255,76,30,0.3);
  outline: none;
}
.connect-form button {
  width: fit-content;
}
.connect-form button i {
  margin-left: 6px;
}

/* Map Section */
.map-section iframe {
  width: 100%;
  height: 450px;
  display: block;
  filter: grayscale(100%);
  border: 0;
}

/* Animations */
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-40px);}
  to {opacity: 1; transform: translateX(0);}
}
@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(40px);}
  to {opacity: 1; transform: translateX(0);}
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 992px) {
  .connect-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .connect-form h2 {
    font-size: 1.6rem;
  }
  .contact-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-item {
    max-width: 100%;
  }
}


/*blog*/
     /* Blog Section Outer Border */
.blog-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 80px 8%;
  border: 1px solid #ddd;      /* Thin border like PDF */
  border-radius: 8px;          /* Smooth rounded edges */
  background: #fff;            /* Keep white background */
  box-shadow: 0 2px 8px rgba(0,0,0,0.03); /* Very subtle depth */
}

@media(max-width: 900px){
  .blog-section {
    grid-template-columns: 1fr;
    padding: 50px 5%;
  }
}

  /* Blog Card */
  .blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease both;
  }

  .blog-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    padding: 25px;
/*    background: #ff6600;*/
  }

  .blog-content {
    padding: 5px 25px 25px;
  }
  
  .sidebar h3::after{
    display: none!important;
  }
  .blog-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px;
  }

  .blog-content p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .blog-content::before{
    display: none!important;
  }
  .read-btn {
    background: #ff6600;
    color: #fff;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .read-btn:hover {
    background: #e05500;
    transform: translateY(-2px);
  }

  /* Sidebar */
  .sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0px!important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: fit-content;
  }

  .sidebar h3 {
    background: #ff6600;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 20px;
    margin: 0;
    border-radius: 8px 8px 0 0;
  }

  .sidebar ul {
    list-style: none;
    padding: 10px 20px 20px;
    margin: 0;
  }

  .sidebar li {
    font-size: 0.95rem;
    color: #111;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
  }

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

  .sidebar li:hover {
    color: #ff6600;
    cursor: pointer;
  }

  /* Animation */
  @keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
  }


/*  products css*/
.product-range {
  text-align: center;
  padding: 60px 8%;
  font-family: "Clash Grotesk", sans-serif;
  background: #fff;
}

.product-range .heading h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-range .heading p {
  color: #555;
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px; /* reduced from 18px or 30px */
  justify-items: center;
}

/*.product-card {
  background: #fff;
  border: 1.5px solid #e1e1e1;
  border-radius: 18px;
  padding: 15px;
  width: 100%;
  max-width: 400px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}*/

.product-card {
  background: #fff;
  border: 1.5px solid #565656;
  border-radius: 18px;
  padding: 25px;
  width: 100%;
  max-width: 400px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* 👇 bottom-right diagonal cut */
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    0 100%
  );
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* optional thin orange accent along the cut edge */
.product-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, #565656 50%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}


.product-img {
  width: 100%;             /* fills card width */
  height: 200px;           /* fixed design height */
  background: #e9e9e9;
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;        /* ensures image fits rounded corners */
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crops image to fit container */
  border-radius: 14px;
  display: block;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 45px;
}

.read-icon {
  position: absolute;
  bottom: 22px;
  right: 25px;
  font-size: 28px;
  color: #fa5320;
  text-decoration: none;
  z-index: 2;
  font-weight: 600;
}

.read-icon:hover {
  transform: translate(3px, -3px);
}

/* PRODUCT DETAIL SECTION */
.product-detail {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.product-detail h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-detail p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* SPECIFICATIONS BOX */
.spec-box {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
}
.spec-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.spec-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spec-box li {
  color: #444;
  margin-bottom: 8px;
}
.spec-box li strong {
  color: #000;
}

/* Top Image Box */
.topImage {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 8%;
  text-align: center; /* centers the image */
  overflow: hidden;   /* ensures image doesn’t overflow the box */
  border-radius: 12px; /* optional: rounded corners for smooth look */
}

.topImage img {
  width: 100%;          /* fills the container width */
  height: 400px;        /* fixed box height */
  object-fit: cover;    /* covers the box without distortion */
  display: block;
  border: 2px solid #ccc;
  border-radius: 20px;
  transition: transform 0.5s ease, opacity 0.5s ease; /* smooth animation */
}

/* Optional: smooth zoom effect on hover */
.topImage img:hover {
  transform: scale(1.05); /* subtle zoom effect */
  opacity: 0.95;           /* slightly smoother look */
}
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr; /* stack columns */
    gap: 30px;                  /* optional: reduce gap for mobile */
  }
}
/* FEATURES */
.features {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 8%;
}
.features h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

/* WHY CHOOSE */
.why-choose {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 8%;
}
.why-choose h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 10px;
}
.why-item span {
  color: #ff4c1e;
  font-size: 1.2rem;
}
.why-item p {
  color: #444;
  font-size: 0.95rem;
}
.why-item strong {
  color: #000;
}

/* Two-column rows */
.wpcf7-form .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/* Inputs and selects */
.wpcf7-form .form-input {
  width: 324px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.wpcf7-form .form-textarea {
  width: 100%;
}
.wpcf7-form .form-input:focus,
.wpcf7-form .form-textarea:focus {
  border-color: #ff4c1e;
  box-shadow: 0 0 5px rgba(255,76,30,0.3);
  outline: none;
}

/* Two-column layout on desktop */
@media(min-width: 768px){
  .wpcf7-form .form-row .form-input,
  .wpcf7-form .form-row select.form-input {
    flex: 1;
  }
}

/* Button styling */
.wpcf7-form .jj-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff4c1e;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.wpcf7-form .jj-btn:hover {
  background-color: #e63e10;
  transform: translateY(-2px);
}

/* Icon inside button */
.wpcf7-form .jj-btn i {
  font-size: 1.1rem;
}
