/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/* Color System */
:root {
  --brand-dark: #7a1414;
  --brand-primary: #b00020;
  --brand-accent: #ff6f3d;
  --brand-gold: #ffcc00;
  --neutral-50: #ffffff;
  --neutral-100: #fafafa;
  --neutral-150: #f5f2f2;
  --neutral-200: #ebe7e7;
  --neutral-700: #555;
  --neutral-800: #333;
  --shadow-soft: 0 6px 18px -6px rgba(0,0,0,0.12);
  --shadow-lift: 0 12px 32px -12px rgba(176,0,32,0.25);
  --section-bg: #f7f6f6; /* unified light section background */
}

/* Basic resets */
html, body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;  
  color: #333; 
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x:hidden;
}

/* Header */
header {
  background-color: darkred;  
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position:sticky;
  top:0;
  z-index:1000;
  transition:box-shadow .35s ease, backdrop-filter .4s ease, background-color .35s ease;
}

header .logo {
  font-size: 28px;
  font-weight: 700;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Make the dropdown toggle look like a normal text link on desktop */
header nav ul li button.submenu-toggle {
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
}
header nav ul li button.submenu-toggle:hover {
  color: #f28b82;
  background: transparent;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #f28b82; 
}
header.scrolled { box-shadow:0 4px 18px -6px rgba(0,0,0,0.35); background:linear-gradient(90deg,rgba(122,20,20,0.97),rgba(122,20,20,0.9)); backdrop-filter:saturate(1.2) blur(4px); }

/* Skip link */
.skip-link { position:absolute; left:-999px; top:0; background:#000; color:#fff; padding:10px 16px; z-index:10000; border-radius:0 0 6px 6px; font-weight:600; letter-spacing:.5px; }
.skip-link:focus { left:10px; outline:3px solid var(--brand-gold); }

/* Enhanced nav focus & structure */
.site-nav ul.primary-menu { margin:0; padding:0; list-style:none; }
.site-nav a[data-nav-item], .site-nav .submenu-toggle { position:relative; outline:none; }
.site-nav a[data-nav-item]:focus-visible, .site-nav .submenu-toggle:focus-visible { outline:3px solid var(--brand-gold); outline-offset:3px; border-radius:6px; }

/* Desktop dropdown animation */
@media (min-width:861px){
  ul.dropdown-menu { opacity:0; transform:translateY(8px); pointer-events:none; transition:opacity .3s ease, transform .35s ease; }
  header nav ul li.dropdown:hover > ul.dropdown-menu, header nav ul li.dropdown:focus-within > ul.dropdown-menu { display:block; opacity:1; transform:translateY(0); pointer-events:auto; }
}

/* Mobile submenu slide */
@media (max-width:860px){
  ul.dropdown-menu { max-height:0; opacity:0; transition:max-height .5s ease, opacity .45s ease; overflow:hidden; }
  li.dropdown.open > ul.dropdown-menu { max-height:400px; opacity:1; }
  li.dropdown.open > .submenu-toggle { background:rgba(0,0,0,.25); }
}

/* Mobile Navigation */
.nav-toggle { display:none; background:none; border:0; cursor:pointer; width:46px; height:42px; align-items:center; justify-content:center; gap:5px; flex-direction:column; padding:4px; margin-left:auto; }
.nav-toggle .bar { width:30px; height:3px; background:#fff; border-radius:3px; transition:transform .4s ease, opacity .4s ease; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
.site-nav { position:relative; }
@media (max-width:860px){
  header { flex-wrap:wrap; padding:16px 20px; }
  .nav-toggle { display:flex; }
  header .site-nav { width:100%; order:3; }
  header .site-nav ul { flex-direction:column; gap:0; margin:0; padding:0; max-height:0; overflow:hidden; transition:max-height .55s ease; background:darkred; border-radius:10px; }
  header .site-nav ul li { border-top:1px solid rgba(255,255,255,.15); }
  header .site-nav ul li:first-child { border-top:0; }
  header .site-nav ul li a, header .site-nav ul li button.submenu-toggle { display:block; width:100%; padding:14px 20px; text-align:left; background:none; border:0; font:600 15px 'Poppins',sans-serif; color:#fff; cursor:pointer; }
  header .site-nav.open ul { max-height:600px; }
  ul.dropdown-menu { position:static; box-shadow:none; background:rgba(0,0,0,.15); border-radius:0; padding:6px 0 10px; }
  ul.dropdown-menu::before { display:none; }
  ul.dropdown-menu li a { padding:10px 34px; color:#fff; border-radius:6px; }
  header nav ul li.dropdown:hover > ul.dropdown-menu { display:none; } /* disable hover open */
  li.dropdown.open > ul.dropdown-menu { display:block; }
  .submenu-toggle { position:relative; }
  /* Remove any open-state background on mobile too */
  li.dropdown.open > .submenu-toggle { background:none; }
}

/* Fluid typography & spacing */
@media (max-width:680px){
  .banner { min-height:380px; padding:60px 28px; }
  .banner-content h1 { font-size:2.4rem; }
  .banner-content p { font-size:1.05rem; }
  .what-we-do { padding:70px 18px; }
  .we-serve { padding:60px 16px; }
  .why-choose-us { padding:60px 18px; }
  .our-products { padding:70px 18px 60px; }
  .awards-section { padding:70px 18px 60px; }
  .happy-customers { padding:70px 18px 60px; }
  .product-card { border-radius:14px; }
  .award-card { border-radius:14px; }
}
@media (max-width:600px){
  .banner { padding:56px 20px 70px; min-height:360px; }
  .banner::before { width:100%; clip-path:none; background:linear-gradient(160deg,rgba(122,20,20,0.9),rgba(122,20,20,0.65)); }
  .banner-content { padding-left:0; max-width:100%; }
  .banner-content h1 { font-size:clamp(2.1rem,9vw,2.7rem); line-height:1.15; }
  .banner-content p { font-size:0.95rem; }
  .right-content h2 { font-size:30px; }
  .right-content h3 { font-size:18px; }
  .serve-item { flex:1 1 100%; max-width:100%; }
}
@media (max-width:480px){
  header .logo { font-size:22px; }
  .products-head h2, .awards-head h2, .hc-header h2 { font-size:28px; }
  .products-sub, .awards-sub, .hc-sub { font-size:14px; }
  .products-cta { padding:12px 30px; font-size:14px; }
  .serve-item img { height:200px; }
}

/* nav */
header nav ul li {
  position: relative; 
}

header nav ul li.dropdown:hover > ul.dropdown-menu {
  display: block;
}

ul.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.25);
  padding: 8px;
  margin: 0;
  z-index: 1000;
}
ul.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--neutral-200);
  border-top: 1px solid var(--neutral-200);
  transform: rotate(45deg);
}

ul.dropdown-menu li a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-800);
  white-space: nowrap;
  display: block;
  border-radius: 8px;
}

ul.dropdown-menu li a:hover {
  background: rgba(176,0,32,0.08);
  color: var(--brand-primary);
}

/* =logo.png */
/* Logo container to keep image and text side by side */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo image size */
.logo-img {
  width: 40px; 
  
  height: auto;
  object-fit: contain;
}

/* Existing logo text style */
.logo {
  font-size: 28px;
  font-weight: 700;
  color: white; 
}

/* what we do */
.what-we-do { background: var(--section-bg); padding:100px 20px; position:relative; }

.what-we-do .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

@keyframes floatImg {
  0%, 100% { transform: translate(20px, 40px); }
  50% { transform: translate(0px, 45px); }
}

.main-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;

  animation: floatImg 8s ease-in-out infinite;
}

.image-wrapper {
  position: relative;
  flex: 1 1 50%;
  min-width: 300px;
  min-height: 400px;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
   /* opacity: 0.1;
  z-index: 0; */
} 


.right-content {
  flex: 1 1 50%;
  min-width: 300px;
  z-index: 2;
  position: relative;
}

.right-content h3 {
  color: darkred;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.right-content h2 {
  color: darkred;
  font-size: 36px;
  margin-bottom: 20px;
}

.right-content p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

/* Mobile adjustments for What We Do section */
@media (max-width:700px){
  .what-we-do .container { flex-direction:column; gap:34px; }
  .image-wrapper { min-height:auto; }
  .main-img { position:relative; width:100%; right:auto; bottom:auto; animation:none; transform:none; }
  .bg-img { display:none; }
  .right-content { padding:0 4px; }
  .right-content h2 { font-size:30px; }
  .right-content h3 { font-size:18px; }
}



/* we serve */
.we-serve { padding:80px 20px; background:var(--section-bg); text-align:center; }
.we-serve h2 { color: darkred; font-size: 36px; margin-bottom: 40px; }
.serve-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1200px; margin: auto; }
.serve-item { position: relative; flex: 1 1 calc(33.33% - 20px); max-width: calc(33.33% - 20px); overflow: hidden; border-radius: 1px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; height: auto; }
.serve-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.text-overlay { position: absolute; bottom: 0; width: 100%; background: rgba(255,255,255,0.85); color: darkred; font-size: 15px; padding: 10px 15px; font-weight: 500; box-sizing: border-box; z-index: 2; text-align: center; }
.serve-item:hover img { transform: scale(1.1); }
@media (max-width: 900px) { .serve-list { grid-template-columns: repeat(2, 1fr); max-width: 700px; } }
@media (max-width: 600px) { .serve-list { grid-template-columns: 1fr; max-width: 350px; } }



/* why choose us */
.why-choose-us {
  background-color: #7a1414;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: white;
}

.choose-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.choose-point {
  background: white;
  color: #7a1414;
  flex: 1 1 28%;
  min-width: 260px;
  max-width: 300px;
  padding: 40px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s ease;
   height: 250px; 
}

.choose-point .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #7a1414;
  transition: color 0.4s ease;
}

.choose-point::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7a1414;
  z-index: -1;
  transition: top 0.4s ease;
}

.choose-point h3 {
  font-size: 24px;   
  font-weight: 700;
  margin-bottom: 15px;
  color: inherit;
}


.choose-point p {
  font-size: 15px;
  line-height: 1.5;
  color: inherit;
}

.choose-point:hover::before {
  top: 0;
}

.choose-point:hover {
  color: white;
}

.choose-point:hover .icon {
  color: white;
}



/* Our Products (Enhanced) */
.our-products { position:relative; padding:90px 24px 80px; background:var(--section-bg); overflow:hidden; }
.our-products::before { display:none; }
.products-inner { max-width:1240px; margin:0 auto; position:relative; z-index:2; }
.products-head { margin:0 auto 48px; max-width:880px; text-align:center; background:none; padding:0 20px 10px; }
.products-head h2 { font-size:42px; margin:0 0 14px; font-weight:700; letter-spacing:.5px; color:var(--brand-primary); position:relative; }
.products-head h2::after { content:""; position:absolute; left:50%; bottom:-10px; width:110px; height:4px; background:var(--brand-gold); transform:translateX(-50%); border-radius:3px; }
.products-sub { margin:0; font-size:15px; letter-spacing:.55px; color:#555; font-weight:500; }
@media (max-width:980px){ .products-head h2 { font-size:36px; } }
@media (max-width:640px){ .products-head h2 { font-size:32px; } .products-head { padding:26px 22px 30px; } }
.our-products .product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:34px; align-items:stretch; }
@media (max-width:780px){ .our-products .product-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .our-products .product-grid { grid-template-columns:1fr; } }
.product-card { position:relative; background:var(--neutral-50); border-radius:18px; box-shadow:0 4px 14px -6px rgba(0,0,0,.12); overflow:hidden; cursor:pointer; outline:none; transition:box-shadow .4s ease, transform .4s ease; display:flex; border:1px solid #ececec; }
.product-figure { margin:0; width:100%; }
.product-media { position:relative; aspect-ratio:4/3; overflow:hidden; }
.product-media img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s ease, filter .45s ease; filter:grayscale(12%) brightness(.97) contrast(1.05); }
.product-card::before,.product-card::after { display:none; }
.product-card:hover,.product-card:focus { box-shadow:0 10px 26px -10px rgba(0,0,0,.25); transform:translateY(-6px); }
.product-card:hover img,.product-card:focus img { transform:scale(1.08); filter:grayscale(0%) brightness(1) contrast(1.06); }
.product-card:focus-visible { outline:3px solid var(--brand-gold); outline-offset:4px; }
/* Floating tag / badge placeholder removed (can be added later) */
.products-cta { display:inline-block; background:var(--brand-primary); color:#fff; padding:14px 40px; border-radius:40px; text-decoration:none; font-weight:600; letter-spacing:.5px; box-shadow:0 8px 24px -10px rgba(176,0,32,.5); transition:box-shadow .4s ease, transform .4s ease, background .4s ease; }
.products-cta:hover { transform:translateY(-4px); box-shadow:0 14px 34px -12px rgba(176,0,32,.55); background:var(--brand-accent); }
.view-more-btn { margin-top:48px; text-align:center; }
@media (max-width:980px){ .products-head h2 { font-size:36px; } .our-products { padding:80px 20px 70px; } }
@media (max-width:640px){ .products-head h2 { font-size:32px; } .product-grid { gap:28px; } }
@media (prefers-reduced-motion:reduce){ .product-card,.product-card::before,.product-card::after,.product-media img,.products-cta::after { transition:none !important; }
  .product-card:hover img { transform:none; }
}



/* Awards & Recognition (Enhanced) */
.awards-section { position:relative; padding:90px 24px 80px; background:var(--section-bg); }
.awards-section::before,.awards-section::after { display:none; }
.awards-inner { max-width:1240px; margin:0 auto; position:relative; z-index:2; }
.awards-head { text-align:center; margin:0 auto 48px; max-width:880px; background:none; padding:0 20px 10px; }
.awards-head h2 { margin:0 0 14px; font-size:42px; font-weight:700; letter-spacing:.5px; color:var(--brand-primary); position:relative; white-space:nowrap; }
.awards-head h2::after { content:""; position:absolute; left:50%; bottom:-10px; width:110px; height:4px; background:var(--brand-gold); transform:translateX(-50%); border-radius:3px; }
.awards-sub { margin:0; font-size:15px; letter-spacing:.55px; color:#555; font-weight:500; }
.awards-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:34px; align-items:stretch; }
.award-card { position:relative; background:var(--neutral-50); border-radius:18px; padding:26px 24px 30px; box-shadow:0 4px 14px -6px rgba(0,0,0,.12); display:flex; flex-direction:column; gap:12px; outline:none; transition:box-shadow .4s ease, transform .4s ease; border:1px solid #ececec; }
.award-card::before,.award-card::after { display:none; }
.award-card:hover,.award-card:focus { box-shadow:0 10px 26px -10px rgba(0,0,0,.25); transform:translateY(-6px); }
.award-icon { width:58px; height:58px; border-radius:16px; background:var(--brand-primary); display:flex; align-items:center; justify-content:center; font-size:26px; color:#fff; box-shadow:0 4px 14px -6px rgba(176,0,32,.6); }
.award-icon::after { display:none; }
.award-card h3 { margin:0; font-size:20px; font-weight:600; line-height:1.25; color:var(--brand-primary); letter-spacing:.3px; }
.award-card p { margin:0; font-size:14.5px; line-height:1.55; color:#444; }
.award-card:focus-visible { outline:3px solid var(--brand-gold); outline-offset:3px; }
@media (max-width:980px){ .awards-head h2 { font-size:36px; } .awards-section { padding:80px 20px 70px; } }
@media (max-width:520px){ .awards-head h2 { white-space:normal; } }
@media (max-width:640px){ .awards-head h2 { font-size:32px; } .awards-head { padding:26px 22px 30px; } .awards-grid { gap:28px; } }
@media (prefers-reduced-motion:reduce){ .award-card,.award-card::before,.award-card::after { transition:none !important; } }

/* customer*/
/* Enhanced Happy Customers */
.happy-customers { padding:90px 20px 80px; background:var(--section-bg); position:relative; overflow:hidden; border-top:4px solid var(--brand-primary); }
.happy-customers::before,.happy-customers::after { display:none; }
.hc-inner { max-width:1260px; margin:0 auto; position:relative; z-index:2; }
.hc-header { text-align:center; margin:0 auto 40px; max-width:960px; background:none; padding:0 20px 10px; }
.hc-header h2 { font-size:42px; margin:0 0 12px; font-weight:700; line-height:1.15; letter-spacing:.5px; color:var(--brand-primary); position:relative; }
.hc-header h2::after { content:""; position:absolute; left:50%; bottom:-8px; width:100px; height:4px; background:var(--brand-gold); transform:translateX(-50%); border-radius:3px; }
.hc-sub { margin:0; font-size:15px; letter-spacing:.55px; color:#555; font-weight:500; }
.logo-marquee { position:relative; overflow:hidden; width:100%; mask-image:linear-gradient(to right,transparent 0, #000 7%, #000 93%, transparent 100%); -webkit-mask-image:linear-gradient(to right,transparent 0,#000 7%,#000 93%,transparent 100%); }
.logo-track { list-style:none; display:flex; align-items:center; gap:70px; padding:0; margin:0; }
.logo-track li { flex:0 0 auto; position:relative; background:var(--neutral-50); padding:26px 34px; border-radius:18px; box-shadow:0 4px 12px -6px rgba(0,0,0,.08); transition:box-shadow .45s ease, transform .45s ease, background .45s ease; }
.logo-track li::before { content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(135deg,rgba(255,204,0,0.22),rgba(176,0,32,0.15)); opacity:0; transition:opacity .5s ease; pointer-events:none; }
.logo-track li:hover::before { opacity:0.8; }
.logo-track img { height:100px; width:auto; display:block; filter:grayscale(100%) contrast(1.05) brightness(.92); opacity:.85; transition:filter .6s cubic-bezier(.65,.05,.36,1), transform .6s cubic-bezier(.65,.05,.36,1), opacity .35s ease; }
.logo-track li:hover { box-shadow:var(--shadow-lift); transform:translateY(-10px) scale(1.04); }
.logo-track li:hover img { filter:grayscale(0%) brightness(1) saturate(1.15); opacity:1; }

/* Controls */
.hc-controls { display:flex; justify-content:center; gap:22px; margin-top:52px; }
.hc-btn { background:var(--neutral-50); border:1px solid var(--neutral-200); padding:12px 26px; border-radius:46px; cursor:pointer; font-size:14px; font-weight:600; letter-spacing:.6px; color:var(--brand-primary); display:inline-flex; align-items:center; gap:6px; box-shadow:0 4px 14px -6px rgba(0,0,0,.12); transition:background .45s ease, color .45s ease, box-shadow .45s ease, transform .45s ease, border-color .45s ease; }
.hc-btn:hover { background:linear-gradient(90deg,var(--brand-primary),var(--brand-accent)); color:#fff; box-shadow:0 14px 34px -10px rgba(176,0,32,.5); transform:translateY(-4px); border-color:var(--brand-primary); }
.hc-btn:active { transform:translateY(-1px); }
.hc-btn.hc-pause[aria-pressed="true"] { background:linear-gradient(90deg,var(--brand-gold),var(--brand-accent)); color:#1e1e1e; border-color:var(--brand-gold); }

/* Autoscroll animation (JS sets custom property) */
.logo-marquee[data-running="true"] .logo-track { animation: marquee var(--marquee-duration,40s) linear infinite; }
@keyframes marquee { to { transform: translateX(var(--marquee-translate,-50%)); } }

/* Responsive tweaks */
@media (max-width:980px){ .logo-track { gap:54px; } .logo-track img { height:90px; } .logo-track li { padding:22px 30px; } .hc-header h2 { font-size:36px; } }
@media (max-width:680px){ .logo-track { gap:42px; } .logo-track img { height:78px; } .logo-track li { padding:20px 26px; } .happy-customers { padding:70px 18px 65px; } }
@media (max-width:480px){ .logo-track { gap:34px; } .logo-track img { height:66px; } .hc-header h2 { font-size:30px; } .logo-track li { padding:18px 22px; } }



/* Banner */
.banner {
  position: relative;
  background: url('images/bg.jpg') no-repeat center center/cover;
  padding: 80px 40px;
  min-height: 450px;
  display: flex;
  align-items: center;
  color: white;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(191, 0, 32, 0.85), rgba(191, 0, 32, 0.6));
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  z-index: 1;
}



.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-left: 40px;
}

.banner-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  
}

.banner-content p {
  font-size: 1.3rem;
  line-height: 1.5;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}
/* Mobile hero refinements */
.banner-overlay { position:absolute; inset:0; pointer-events:none; display:none; background:linear-gradient(160deg,rgba(122,20,20,0.92),rgba(122,20,20,0.55)); }
@media (max-width:600px){
  .banner::before { display:none !important; }
  .banner-overlay { display:block; }
  .banner { background-position:center center; }
  .banner-content h1 { word-break:normal; hyphens:auto; }
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content {
  animation: fadeIn 1.8s ease forwards;
}




/* Sections */
.section {
  padding: 60px 40px;
  background-color: white;
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  color: #444;
}

.section.light {
  background-color: #f9f0f0;  
}

/* Headings */
.section h2 {
  color: #d94f4f;
  margin-bottom: 20px;
  font-size: 32px;
  border-bottom: 3px solid #ff6f61;
  padding-bottom: 8px;
  display: inline-block;
}

/* Images and Text side by side */
.img-text {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.img-text img {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.2);
}

.img-text p {
  flex: 1 1 400px;
  font-size: 18px;
  color: #555;
}

/* Reverse order for some sections */
.img-text.reverse {
  flex-direction: row-reverse;
}

/* Products */
.products {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.products img {
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.25);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.products img:hover {
  transform: scale(1.05);
}

/* about.html */

/* Hero Section Style */
.page-hero {
  background-image: url("images/bg2.jpg"); 
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  /* margin-top: 5px; */
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 48px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-hero .breadcrumb {
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
}

.page-hero .breadcrumb a {
   color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.page-hero .breadcrumb span {
  color: #fff;
}
/* about sawant group */
.about-section {
  display: flex;
  gap: 50px;
  padding: 60px 80px;
  background-color: #ffffff;
  align-items: stretch; 
  font-family: 'Poppins', sans-serif;
  color: #333;
  min-height: 500px; 
}

.about-image {
  flex: 1;
  position: relative;
  min-width: 400px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Background image full cover with dim effect */
.about-image img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(0.85);
  border-radius: 20px;
  transition: filter 0.3s ease;
}

/* Overlay image — thoda varcha ani thoda motha */
.about-image img:nth-child(2) {
  position: absolute;
  bottom: 60px; 
  right: 40px;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border: 5px solid #fff;
  background-color: #fff;
  transition: transform 0.3s ease;
}

/* Optional hover zoom effect for overlay image */
.about-image img:nth-child(2):hover {
  transform: scale(1.05);
}

/* content side */
.about-content {
  flex: 1.2;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

/* headings & text styles same as before */

.about-content h2 {
  font-size: 3rem;
  color: #7a1414; 
  font-weight: 200;
  margin-bottom: 10px;
}

.about-content h4 {
  font-size: 1.3rem;
  font-weight: 200;
  color: #7a1414;
  margin-bottom: 30px;
  font-style: italic;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
  }
  .about-image {
    width: 100%;
    max-height: none;
    height: 300px;
    margin-bottom: 30px;
  }
  .about-image img:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 15px;
    right: 15px;
  }
  .about-content {
    max-width: 100%;
  }
  .about-content h2 {
    font-size: 2.2rem;
  }
  .about-content h4 {
    font-size: 1.1rem;
  }
}



/* our idologoy */

/* Section background with diagonal stripes */
.core-ideology-grid {
  padding: 60px 20px;
  background: repeating-linear-gradient(
    -45deg,
    #f5f5f5,
    #f5f5f5 10px,
    #eeeeee 10px,
    #eeeeee 20px
  );
  text-align: center;
}

/* Section heading */
.core-ideology-grid .section-title {
  font-size: 36px;
  color: #8b1c1c;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Flex layout for boxes */
.ideology-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* White box */
.ideology-box { background:#fff; border-radius:14px; box-shadow:0 6px 20px -6px rgba(0,0,0,0.12); padding:38px 30px 30px; flex:1 1 300px; position:relative; overflow:hidden; transition:box-shadow .45s ease, transform .45s ease; }
.ideology-box::before { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(176,0,32,0.08),rgba(255,204,0,0.12)); opacity:0; transition:opacity .55s ease; }
.ideology-box:hover { box-shadow:0 18px 42px -14px rgba(176,0,32,0.35); transform:translateY(-8px); }
.ideology-box:hover::before { opacity:1; }
.ideology-header { font-size:22px; margin:0 0 16px; color:darkred; font-weight:700; text-transform:uppercase; letter-spacing:.8px; position:relative; display:inline-block; padding-bottom:6px; }
.ideology-header::after { content:""; position:absolute; left:0; bottom:0; width:54%; height:3px; background:linear-gradient(90deg,var(--brand-gold),var(--brand-primary)); border-radius:2px; }



/* Paragraphs & list */
.ideology-box p,
.ideology-box ul {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: left;
  margin-top: 40px; 
}

.ideology-box ul {
  list-style: none;
  padding: 0;
}

.ideology-box ul li {
  margin: 8px 0;
  position: relative;
  padding-left: 25px;
  display: block;
}


.ideology-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8b1c1c;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .ideology-columns {
    flex-direction: column;
    gap: 30px;
  }
}



/* quality-assurance */
.quality-assurance-clean {
  background: linear-gradient(135deg, #ececec 0%, #d6d6d6 100%);
  padding: 80px 20px;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.qa-box {
  background: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
  text-align: left;
  color: #333;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qa-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(139, 28, 28, 0.3);
  background-color: wheat;
}

.qa-box h2 {
  font-size: 36px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: darkred;
  border-bottom: 4px solid darkred;
  display: inline-block;
  padding-bottom: 8px;
}

.qa-box p {
  font-size: 17px;
  margin: 14px 0;
  line-height: 1.7;
  color: #555;
  padding-left: 35px;
  position: relative;
}

/* Bullet icons */
.qa-box p:not(:first-child)::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: darkred;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .qa-box {
    padding: 30px 20px;
  }
  .qa-box h2 {
    font-size: 28px;
  }
}




/* infrastructure */

.infrastructure h2 {
  text-align: center;
  color: darkred;
}

.infrastructure-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.infrastructure-images img {
  width: 300px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin: 25px;  
  box-sizing: border-box;
}


.about-section.infrastructure {
  display: block !important;
}

.about-section.infrastructure > * {
  float: none !important;
  display: block !important;
  width: 100% !important;
  text-align: center; 
}


/* produts */
.products-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.products-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: darkred;
}

.products-section .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-card p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* facilities */
 /* foundry */
 /* ===== Foundry page styles ===== */
.foundry-hero {
  position: relative;
  background: url('images/foundry-hero.jpg') center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.foundry-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(176,0,32,0.75), rgba(0,0,0,0.25));
  z-index: 1;
}

.foundry-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.foundry-hero h1 {
  font-size: 48px;
  margin: 0 0 8px;
  letter-spacing: 1px;
  font-weight: 800;
}

.foundry-hero .hero-sub {
  font-size: 18px;
  opacity: 0.95;
}

/* Intro and caps */
#sawant{
  text-align: center;
  color: darkred;
  font-size: 40px;
}
#para{
 font-size: large;
}
.foundry-intro {
  padding: 40px 20px;
  background: #faf9f8;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 18px; }

.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 18px;
  margin-top: 18px;
}

.cap-box {
  position: relative;
  background-color: white; 
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  cursor: pointer;
  overflow: hidden;
}


.cap-box::before,
.cap-box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: lightsalmon; 
  transition: transform 0.6s ease, background-color 0.6s ease;
  z-index: 2;
}

.cap-box::before {
  left: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform-origin: left center;
}

.cap-box::after {
  right: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transform-origin: right center;
}

/* Hover effect */
.cap-box:hover::before {
  transform: rotateY(-90deg);
  background-color: white;
}

.cap-box:hover::after {
  transform: rotateY(90deg);
  background-color: white;
}

/* Text z-index fix */
.cap-box h3,
.cap-box .cap-value {
  position: relative;
  z-index: 5;
}

.cap-value { 
  font-size: 20px; 
  font-weight:800; 
  color:#b00020; 
}

/* Features grid */
.foundry-features { 
  padding: 50px 20px; 
  
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 24px;
  
}

.feature-card {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  transition: transform .28s ease, box-shadow .28s ease;
  
}

.feature-card img { 
  width:100%; 
  height:170px; 
  object-fit:cover; 
  display:block; 
}
.feature-card .card-body { 
  padding:18px; 
}
.feature-card h3 { 
  color:#b00020; 
  margin:0 0 10px;
  font-size:18px;
 }
.feature-card ul {
   margin:0; 
   padding-left:18px; 
   color:#444; 
   line-height:1.6; 
   font-size:14px; 
  }

/* Hover */
.feature-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 18px 40px rgba(176,0,32,0.12); 
  
 
}

/* Specs */
#t {
text-align: center;
color: darkred;
font-size: 40px;
}
.foundry-specs { 
  padding: 40px 20px; 
  background: #fff6f6; 

  
}
.specs-wrap { 
  display:flex; 
  gap:30px; 
  align-items:flex-start; 
  flex-wrap:wrap; 
  justify-content: center;
  
 
}
.spec-table { 
  border-collapse: collapse; 
  width: 1000px; 
  max-width:500%; 
  background:#fff; 
  border-radius:8px; 
  overflow:hidden; 
  box-shadow:0 6px 18px rgba(0,0,0,0.05); 
  
}
.spec-table th, 
.spec-table td { 
  padding:14px 18px; 
  text-align:left;
  border-bottom:1px solid #f0e6e6; 
  font-size:15px; 
  color:#333;
}
.spec-table th {
   background:#fff; 
   color:#8b0000; 
   font-weight:700; 
   width:40%; 
  }



/* Gallery */
.foundry-gallery { 
padding:40px 20px; 
}

.gallery-grid {
display:grid; 
grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); 
gap:14px; 
max-width:1100px; 
margin:0 auto; 
}

.gallery-grid img { 
  width:100%; height:150px; 
  object-fit:cover; 
  border-radius:8px; 
  box-shadow:0 6px 20px rgba(0,0,0,0.06); 
}

/* CTA */
.foundry-cta { 
background: linear-gradient(90deg,#fff6f6,#fff); 
padding:40px 20px; 
text-align:center; 
}

.btn { 
display:inline-block; 
padding:12px 18px; 
border-radius:8px; 
text-decoration:none; 
font-weight:700; 
margin:8px; 
}

.btn-primary { 
  background:#b00020; 
  color:#fff; 
}

.btn-outline { 
  border:2px solid #b00020; 
  color:#fff; 
  background:#b00020; 
}

/* Responsive tweaks */
@media (max-width:900px){
  .foundry-hero h1 { font-size:34px; }
  .feature-card img { height:150px; }
  .specs-wrap { flex-direction:column; }
}


/* machine-shop */
/* Common Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #8b0000; 
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Machine Infrastructure Grid */
.machine-infra {
  padding: 50px 20px;
  background: #fff;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.infra-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.infra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.infra-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #8b0000;
}

.infra-card h3 {
  padding: 16px 10px;
  font-size: 1.2rem;
  color: #8b0000;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* gallery css */

.gallery-section {
  padding: 50px 20px;
  background: #fdf6f6;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.gallery-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}



/* machining Facility Section */
.machining-facility {
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto 60px;
  background: #fdf6f6;
  border-radius: 10px;
}

.machining-facility #t {
  text-align: center;
  color: darkred;
  font-size: 36px;
  margin-bottom: 10px;
}

.machining-facility p {
  text-align: center;
  color: #444;
  font-size: 16px;
  margin-bottom: 40px;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.machine-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.machine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.machine-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.machine-card h3 {
  color: darkred;
  margin: 16px 0 10px;
  font-size: 20px;
}

.machine-card .features {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
  text-align: left;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.machine-card .features li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.machine-card .features li::before {
  content: "•";
  color: #b00020;
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1;
}





/* contact */

main {
  max-width: 1240px;
  margin: 40px auto 60px;
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main h1 {
  text-align: center;
  color: #b00020;
  font-size: 36px;
  margin-bottom: 30px;
}

/* Make the contact page content use full width with safe gutters */
body.contact main {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 50px 32px;
}
@media (min-width: 1280px){ body.contact main { padding-left: 48px; padding-right: 48px; } }

/* Contact Info & Map container */
.contact-info-map {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Two-column layout on larger screens */
@media (min-width: 768px) {
  .contact-info-map {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns in one row */
    align-items: stretch;
    gap: 24px;
  }
  .map-section { height: auto; min-height: 400px; }
  .contact-info { margin: 0; height: auto; min-height: 400px; box-sizing: border-box; }
}

/* Map styles */
.map-section {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 300px; /* ensure visible map when content is short */
  border: none;
}

/* Contact info box */
.contact-info {
  background: #f9f9f9;
  padding: 22px 36px 26px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* match map */
  font-size: 16px;
  color: #333;
  width: 100%;
  margin: 0;
  text-align: left;
}

.contact-info h2 {
  margin: 0 0 18px; /* remove top margin for better top alignment */
  color: #b00020;
  text-align: center;
}

/* Icons with text */
.contact-info p {
  margin: 0 0 14px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-info p strong { min-width: 120px; display: inline-block; }
.contact-info p .icon { margin-top: 2px; }

.contact-info .icon {
  font-size: 22px;
  color: #b00020;
  min-width: 28px;
  text-align: center;
}

/* Links */
.contact-info a {
  color: #b00020;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  main {
    padding: 20px 15px;
  }

  .contact-info {
    max-width: 100%;
    padding: 20px;
  }

  .map-section {
    height: 250px;
  }
}




/* ================= Footer (Enhanced) ================= */
.footer {
  background: radial-gradient(circle at 30% 30%, #272727, #141414 70%);
  color: #d5d5d5;
  padding: 70px 32px 0;
  font-size: 15px;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 70px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -180px;
  right: -180px;
  transform: rotate(25deg);
  pointer-events: none;
}
.footer::after { top: auto; bottom: -220px; left: -220px; right: auto; transform: rotate(-15deg); }

.footer-top {
  display: grid;
  gap: 42px 55px;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  max-width: 1240px;
  margin: 0 auto 55px;
  position: relative;
  z-index: 2;
}
.footer-section { position: relative; }
.footer-logo { width: 150px; margin-bottom: 18px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35)); }
.footer-section h3, .footer-section h4 { color: #fff; margin: 0 0 24px; font-weight:600; letter-spacing:.5px; position:relative; }
.footer-section h3::after, .footer-section h4::after {
  content:""; position:absolute; left:0; bottom:-7px; width:52px; height:3px; background:linear-gradient(90deg,#ffcc00,#b00020); border-radius:2px;
}
.footer-section p, .footer-section a, .footer-section li { color:#c9c9c9; text-decoration:none; line-height:1.65; font-size:14px; }
.footer-section ul { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-section ul li a { position:relative; display:inline-block; }
.footer-section ul li a:hover { color:#ffcc00; text-decoration:none; }
.footer-section ul li a::after { content:""; position:absolute; left:0; bottom:-4px; width:0; height:1.5px; background:linear-gradient(90deg,#ffcc00,#ff7b3d); transition:width .35s ease; }
.footer-section ul li a:hover::after { width:100%; }

/* Map link chip */
.map-link a { display:inline-flex; align-items:center; gap:9px; color:#ffcc00; text-decoration:none; font-weight:600; margin-top:18px; padding:6px 16px 6px 12px; background:rgba(255,204,0,0.08); border:1px solid rgba(255,204,0,0.25); border-radius:30px; font-size:13px; transition:background .35s ease, transform .35s ease, border-color .35s ease; }
.map-link a:hover { background:rgba(255,204,0,0.18); border-color:#ffcc00; transform:translateY(-3px); }
.map-icon { width:22px; height:22px; filter:brightness(1.2) contrast(1.1); }

/* Social links */
.social-links { display:flex; gap:15px; margin-top:14px; }
.social-links a { width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; color:#ffcc00; background:#262626; border-radius:12px; font-size:16px; border:1px solid #333; transition:background .4s ease, transform .4s ease, color .4s ease, box-shadow .4s ease; }
.social-links a:hover { background:linear-gradient(135deg,#ffcc00,#ff7b3d); color:#1e1e1e; transform:translateY(-5px) rotate(-6deg); box-shadow:0 12px 28px -8px rgba(255,123,61,.55); }

/* (Newsletter removed) */

/* Bottom bar */
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding:20px 0 28px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px; max-width:1240px; margin:0 auto; font-size:13px; letter-spacing:.35px; position:relative; z-index:2; }
.footer-bottom p { margin:0; color:#a8a8a8; }
.footer-bottom a { color:#ffcc00; }
.footer-bottom a:hover { text-decoration:underline; }

@media (max-width:880px){ .footer { padding:60px 26px 0; } .footer-top { gap:50px 32px; } .footer-bottom { flex-direction:column; align-items:flex-start; } }
@media (max-width:520px){ .social-links a { width:36px; height:36px; font-size:14px; } .newsletter-form button { font-size:13px; } }

/* Buttons */
button {
  background-color: #ff6f61;
  border: none;
  color: white;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #d94f4f;
}

/* Form inputs (contact page) */
input, textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 18px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #ff6f61;
  outline: none;
}

/* (Old responsive footer rules replaced above) */



.download-brochure ul {
  list-style: none;
  padding: 0;
}

.download-brochure ul li {
  margin-bottom: 10px;
}

.download-brochure ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.download-brochure ul li a:hover {
  color: #ffcc00;
  text-decoration: underline;
}


/* .foot removed in favor of .footer-bottom */


