/* ====================================================================================
   Shree Enterprise — Updated style.css (Bootstrap Compatible)
==================================================================================== */

/* THEME COLORS */
:root {
  --primary-dark: #ffffff;
  --primary-light: #1BAA96;
  --muted: #C7C7C7;
  --text: #2A2A2A;
  --white: #ffffff;
}

/* GLOBAL RESET */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

/* ====================================================================================
   NAVBAR (MATCHING INDEX PAGE)
==================================================================================== */

.navbar {
  background: var(--primary-dark) !important;
  padding: 14px 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 72px; /* EXACT match with index */
}

/* Fix header spacing for all pages (including About) */
body:not(.home) main {
  padding-top: 140px !important; /* avoids overlap */
}

/* Toggler icon visible on white bg */
.navbar-toggler-icon {
  filter: invert(1);
}

/* Navbar CTA buttons */
.navbar .btn-primary {
  background: var(--primary-light);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.navbar .btn-primary:hover {
  opacity: 0.9;
}

/* ====================================================================================
   HERO SECTION
==================================================================================== */

.hero {
  padding: 140px 0 80px;
  background:
    linear-gradient(180deg, rgba(9, 12, 12, 0.88), rgba(159, 172, 170, 0.7)),
    url("../assets/images/hero-bg.jpg");

  background-size: cover;
  background-position: center;
  color: white;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
}

.hero p {
  max-width: 920px;
  opacity: 0.95;
}


/* ====================================================================================
   CARD THEME
==================================================================================== */

.card {
  background: #ffffff;
  border: 1px solid #eef6f4;
  border-radius: 12px !important;
  box-shadow: 2px 6px 18px rgba(6, 46, 43, 0.03);
}

.card-title {
  color: #0B7162 !important;
  font-weight: 700;
}

.card-text {
  font-size: 15px;
  opacity: 0.95;
}

/* Equal image sizes for all cards */
.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* ====================================================================================
   GALLERY
==================================================================================== */

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

/* ====================================================================================
   BUTTONS
==================================================================================== */

.btn-primary {
  background: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ===============================
   ABOUT PAGE BACKGROUND SECTION
=============================== */
.green-section {
  background-color: #1c9b8a;
}

.green-section ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}


/* =====================================
   ABOUT PAGE – HERO WITH GRADIENT
===================================== */
.about-hero {
  position: relative;
  height: 620px;                  /* SAME AS CAROUSEL IMAGE HEIGHT */
  overflow: hidden;
}

/* Gradient overlay */ 
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 12, 12, 0.88),
    rgba(159, 172, 170, 0.7)
  );
  pointer-events: none;
}

/* Make all carousel images equal height */
.about-hero .carousel-item img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}
/* About Page – About Us Text Section */
.about-text-section {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

.about-text-section .section-heading {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20px;
}


/* ===============================
   CARD HEADING COLOR SAME AS INDEX
=============================== */
.teal-title {
  color: #08867e;
  font-weight: 700;
}

/* ===============================
   Client Logos
=============================== */
.client-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    width: 100%;          /* Bootstrap controls width */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    padding-top: 5px;
}


/* HERO GRADIENT */
/* HERO SECTION */
/* .about-hero {
  padding: 140px 0;
  background: linear-gradient(135deg, #0B7162, #0d8b76);
  color: white;
  text-align: left;
}

/* ====================================================================================
   FULL-WIDTH CAROUSEL
==================================================================================== */
/* .fullwidth-section {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
} */

/* .company-carousel-full {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

/* OLD (inside container) — no longer used */
.company-carousel-img {
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
} */

/* ====================================================================================
   TEAM CARDS
==================================================================================== */
/* .team-card {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
} */

/* ====================================================================================
   CLIENT GRID
==================================================================================== */
/* .client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.client-box {
  text-align: center;
}

.client-box img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: 0.3s ease;
}

.client-box img:hover {
  filter: grayscale(0%);
  transform: translateY(-4px);
}

.client-box p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0B7162;
} */ */

/* -------------------------
   Products page specific
   ------------------------- */

/* Hero intro band is already green via .green-section */
.products-hero{ max-width: 1200px;  font-size: 15px; }

/* Product grid layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.product-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eef6f4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 380px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(10,70,65,0.07);
}

/* Media (image) */
.product-media {
  height: 200px;
  overflow: hidden;
  background: #f8faf9;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.product-title {
  color: #0B7162; /* same teal as site */
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.product-desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1 1 auto;
}

/* Actions */
.product-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-outline-teal {
  color: #0B7162;
  border-color: #0B7162;
  background: transparent;
}
.btn-outline-teal:hover {
  background: #0B7162;
  color: white;
  border-color: #0B7162;
}

/* ------------------------------------------------
   PROJECTS PAGE DESIGN — Shree Enterprise
-------------------------------------------------- */

/* Hero Section */
.projects-hero {
  background: #0B7162;
  color: white;
}

.projects-hero p {
  font-size: 15px;
  line-height: 1.6;
}

/* Card Visual Style */
.projects-section .card {
  border-radius: 12px;
  border: 1px solid #e8efec;
  overflow: hidden;
  transition: all .25s ease;
  background: #ffffff;
}

/* Card Hover Lift Effect */
.projects-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(8, 70, 60, 0.15);
}

/* Project Images */
.projects-section .card-img-top {
  height: 220px;
  object-fit: cover;
  background: #f5f9f7;
}

/* Card Title Styling */
.teal-title {
  color: #0B7162;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

/* Card Text */
.projects-section .card-text {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #333;
}

/* Grid Adjustments on Mobile */
@media (max-width: 767px) {
  .projects-section .card-img-top {
    height: 180px;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .product-media { height: 160px; }
  .product-card { min-height: 320px; }
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Contact Card */
.contact-card {
  background: #ffffff;
  border: 1px solid #e7eee9;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(8,70,60,0.07);
}

/* Form Inputs */
.input {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #dce8e4;
  background: #f9fbfa;
  font-size: 0.95rem;
}

/* Google Map Box */
.map-holder {
  border: 1px solid #dfeae7;
  border-radius: 10px;
  overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ====================================================================================
   FOOTER
==================================================================================== */

.footer {
  margin-top: 40px;
  padding: 28px 0;
  font-weight: 500;
  background: #ffffff;
  color: #0B7162 !important;
}

.footer .social-icons a svg {
  transition: 0.3s ease;
}

.footer .social-icons a:hover svg {
  transform: scale(1.15);
  fill: #1BAA96;
}

/* ====================================================================================
   TYPOGRAPHY
==================================================================================== */

h1, h2, h3, h5 {
  margin-bottom: 12px;
}

/* ====================================================================================
   RESPONSIVE
==================================================================================== */

@media (max-width: 992px) {
  .hero { padding: 120px 0 60px; }
}

@media (max-width: 768px) {
  .navbar-brand img { height: 58px; }
  .hero h1 { font-size: 28px; }
  .gallery-img, .card img { height: 180px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 50px; }
  .gallery-img, .card img { height: 150px; }
}



/* 
:root{
  --primary-dark: #ffffff;
  --primary-light:#1BAA96;
  --muted:        #C7C7C7;
  --text:         #2A2A2A;
  --white:        #0B7162;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Inter",system-ui,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.5;
}


.header {
  width:100%;
  background:var(--primary-dark);
  color:var(--white);
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  box-shadow:0 2px 8px rgba(11,113,98,0.08);
}
.header .nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.header .brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.header .brand img{height:52px;width:auto}
.header .title{
  font-weight:700;font-size:18px;line-height:1;
}
.header .navlinks{display:flex;gap:18px;align-items:center}
.header .navlinks a{
  color:var(--white);font-weight:500;font-size:15px;text-decoration:none;padding:6px 8px;border-radius:6px;
}
.header .navlinks a:hover{background:rgba(255,255,255,0.04)}
.header .cta span{
  display:inline-block;
  padding:8px 14px;
  background:var(--primary-light);
  border-radius:8px;
  font-weight:600;
}

.header .hamburger{display:none}
@media(max-width:900px){
  .header .navlinks{display:none;position:absolute;right:16px;top:68px;box-shadow:0 8px 40px rgba(0,0,0,0.12)}
  .header .navlinks.open{display:flex;flex-direction:column;background:var(--primary-dark);padding:20px;border-radius:10px}
  .header .hamburger{display:block;font-size:24px;color:white;cursor:pointer}
}


.hero {
  padding:140px 0 80px;

  background:
    linear-gradient(180deg, rgba(9, 12, 12, 0.88), rgba(159, 172, 170, 0.7)),
    url("../assets/images/hero-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color:white;
}

.hero h1{font-size:36px;font-weight:800;margin-bottom:12px}
.hero p{font-size:16px;opacity:0.95;max-width:920px}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:900px){.grid-3{grid-template-columns:1fr}}

.card{
  background:#fff;
  padding:22px;
  border-radius:12px;
  border:1px solid #eef6f4;
  box-shadow:0 6px 18px rgba(10,70,65,0.03);
}
.card h3{font-size:18px;color:var(--primary-dark)}
.card p{margin:10px 0 0;color:var(--text);opacity:0.9}


.gallery {display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
@media(max-width:900px){.gallery{grid-template-columns:1fr}}
.gallery img {width:100%;height:220px;object-fit:cover;border-radius:8px}


.contact-card{
  background:white;
  padding:20px;
  border-radius:12px;
  border:1px solid #eef6f4;
}
.input, textarea{
  width:100%;padding:12px;margin-top:8px;border-radius:8px;border:1px solid #e6eded;font-size:14px;font-family:inherit;
}


.btn{display:inline-block;padding:8px 12px;border-radius:8px;border:0;background:var(--muted);color:var(--text)}
.btn-primary{background:var(--primary-light);color:white}


.footer{
  margin-top:40px;
  padding:28px 0;
  background:var(--primary-dark);
  color:white;
}

main{padding-bottom:40px}
h1{margin:0 0 8px;font-size:26px}
h2{margin:0 0 6px;font-size:20px;color:var(--primary-dark)}
p{margin:0 0 12px}

@media(max-width:1100px){
  .container{padding:0 16px}
}
@media(max-width:700px){
  .container{padding:0 14px}
  .header .title{font-size:16px}
  .hero h1{font-size:28px}
} */
