/* styles.css - common styling (lightweight, responsive) */

:root{
  --brand-1: #0b61a4;
  --brand-2: #5b66d8;
  --muted: #6b7280;
  --bg: #ffffff;
  --card: #ffffff;
  --radius: 8px;
  --max: 1100px;
  --wrap-padding: 18px;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 var(--wrap-padding);}

/* HEADER */
.site-header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:30;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}
.brand{display:flex;align-items:center;gap:12px}
.logo{
  width:48px;height:48px;border-radius:8px;
  background:linear-gradient(135deg,var(--brand-1),var(--brand-2));
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:700;
}
.brand-title{margin:0;font-size:16px;font-weight:600}
.brand-sub{font-size:12px;color:var(--muted)}

/* NAV */
.main-nav{display:flex;gap:18px;align-items:center}

.main-nav a{font-size:15px;color:#111;padding:8px}
.main-nav a.cta{background:var(--brand-1);color:#fff;padding:8px 14px;border-radius:6px}
.menu-toggle{display:none;background:#fff;border:1px solid #ddd;padding:6px;border-radius:6px}


/* HERO — Fade Slider */
.hero-scroll{
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.hero-item{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:420px;
  opacity:0;
  transition:opacity 1s ease-in-out;
}
.hero-item.active{
  opacity:1;
}
.hero-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width:900px){
  .hero-scroll{height:300px;}
  .hero-item{height:300px;}
}

/* SECTIONS */
.section{padding:48px 0}
.grid{display:grid;gap:20px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}
.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 6px 18px rgba(12,18,32,0.04);
}

/* PRODUCT IMAGES */
.product-img, .gallery-img{
  width:100%;height:220px;
  object-fit:cover;border-radius:6px;
}

/* FORMS */
form .row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
input,textarea,select{
  width:100%;
  padding:10px;
  border:1px solid #e5e7eb;
  border-radius:6px;
  font-size:14px;
}
button.btn{
  background:var(--brand-1);
  color:#fff;
  padding:10px 16px;
  border-radius:6px;
  border:none;
  cursor:pointer;
}

/* FOOTER */
.site-footer{
  background:#111827;color:#fff;
  padding:22px 0;margin-top:28px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

/* RESPONSIVE — NAV */
@media (max-width:900px){
  .main-nav{
    display:none;
    position:absolute;right:18px;top:72px;
    background:#fff;padding:12px;border-radius:8px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06)
  }
  .main-nav.open{display:flex;flex-direction:column}
  .menu-toggle{display:block}
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr 1fr}
  form .row{grid-template-columns:1fr}
}

/* ABOUT SECTION */
.about-section{padding:56px 0;}

.about-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:28px;
  align-items:center;
}

.sec-title{
  font-size:28px;
  font-weight:700;
  margin:0 0 12px;
}
.sec-text{
  color:#374151;
  line-height:1.75;
  font-size:15px;
}

/* STAT CARDS */
.stat-boxes{
  display:flex;
  gap:18px;
  margin-top:20px;
}
.stat-card{
  background:#fff;
  padding:16px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 10px 30px rgba(11,97,164,0.07);
  border:1px solid rgba(11,97,164,0.06);
}
.stat-label{font-size:13px;color:var(--muted);}
.stat-value{
  font-size:26px;
  font-weight:800;
  color:var(--brand-1);
  margin-top:6px;
}

/* ABOUT IMAGE — PORTRAIT + TOP ALIGN */
.about-image-wrap{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  min-height:420px;
}
.about-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;     /* portrait image top aligned */
  display:block;
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
}
.about-image-wrap:hover .about-image{
  transform:scale(1.04);
}

/* GLASS SPECIALITY CARD */
.glass-speciality{
  position:absolute;
  right:18px;
  bottom:18px;
  width:calc(100% - 36px);
  max-width:360px;
  background:rgba(255,255,255,0.08);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  padding:18px;
  color:#fff;
  box-shadow:0 10px 30px rgba(2,6,23,0.35);
}
.gs-title{
  margin:0 0 8px;
  font-size:16px;font-weight:700;color:#fff;
}
.gs-list{
  list-style:none;margin:0;padding:0;
  display:grid;gap:10px;
}
.gs-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#fff;
}
.gs-list .tick{color:#7fffd4;}

/* ABOUT — MOBILE */
@media (max-width:1000px){
  .about-grid{grid-template-columns:1fr;}
  .about-image-wrap{min-height:360px;}
  .glass-speciality{
    position:relative;
    right:auto;bottom:auto;
    width:100%;max-width:none;
    margin-top:16px;
    background:linear-gradient(135deg,rgba(11,97,164,0.12),rgba(91,102,216,0.12));
    color:#0b61a4;
    border:1px solid rgba(11,97,164,0.06);
    box-shadow:none;
    backdrop-filter:none;
  }
}

/* CONTACT PAGE */
.contact-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
}

.contact-form{padding:20px;}
.contact-info{
  padding:20px;
  font-size:15px;
  line-height:1.6;
  background:#fff;
}
.contact-item{
  display:grid;
  grid-template-columns:24px auto;
  gap:12px;
  margin-bottom:20px;
  align-items:start;
}

/* CONTACT MOBILE */
@media (max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  z-index:999;
}
.whatsapp-float img{
  width:34px;height:34px;
}
.whatsapp-float:hover{
  transform:scale(1.06);
  transition:0.2s ease-in-out;
}













/* === Gallery Component (paste into style.css) ===
   - Shows 1 landscape image at a time (scroll-snap)
   - Separate video block below the slider
   - Lightbox for fullscreen images
--------------------------------------------------*/
:root{
  --g-muted: #6b7280;
  --g-radius: 12px;
  --g-shadow: 0 10px 28px rgba(2,6,23,0.06);
  --g-accent: #06b6d4;
}

/* container card */
.gallery-card {
  background: #fff;
  border-radius: var(--g-radius);
  padding: 16px;
  box-shadow: var(--g-shadow);
  margin-top: 22px;
}

/* horizontal track */
.g-track {
  width: 100%;
  overflow-x: auto;
  display: flex;
  gap: 18px;
  padding: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  align-items: center;
}

/* slides: one per viewport */
.g-slide {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(2,6,23,0.06);
}
.g-slide img {
  width: 100%;
  height: 520px; /* landscape height; adjust below for smaller */
  object-fit: cover;
  display: block;
}

/* caption overlay */
.g-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0,0,0,0.48);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

/* arrows */
.g-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
}
.g-arrow-left { left: -16px; }
.g-arrow-right { right: -16px; }

/* thumbnails */
.g-thumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.g-thumb {
  width: 76px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(2,6,23,0.06);
}
.g-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.g-thumb.active { border-color: var(--g-accent); transform: translateY(-3px); }

/* separate video block */
.g-video {
  margin-top: 28px;
  background: #fff;
  border-radius: var(--g-radius);
  overflow: hidden;
  box-shadow: var(--g-shadow);
}
.g-video video {
  width: 100%;
  height: 520px; /* match image height */
  object-fit: cover;
  display: block;
  background: #000;
}

/* responsive sizes */
@media (max-width:1000px){
  .g-slide img, .g-video video { height: 420px; }
}
@media (max-width:640px){
  .g-slide img, .g-video video { height: 320px; }
  .g-arrow-left { left: 8px; }
  .g-arrow-right { right: 8px; }
  .g-thumb { width:64px; height:44px; }
}

/* lightbox modal */
.g-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(2,6,23,0.72);
  z-index: 9999;
  padding: 20px;
}
.g-lightbox.open { display: grid; }
.g-lightbox .g-frame {
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.g-lightbox img { width:100%; height:auto; display:block; }
.g-lightbox .g-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}


























/* === Gallery & Video Grid (add into style.css) === */
:root{
  --g-muted: #6b7280;
  --g-radius: 12px;
  --g-shadow: 0 10px 28px rgba(2,6,23,0.06);
  --g-accent: #06b6d4;
}

/* Reused gallery / slider card */
.gallery-card {
  background: #fff;
  border-radius: var(--g-radius);
  padding: 16px;
  box-shadow: var(--g-shadow);
  margin-top: 22px;
}

/* horizontal track (slider) */
.g-track {
  width: 100%;
  overflow-x: auto;
  display: flex;
  gap: 18px;
  padding: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  align-items: center;
}
.g-slide {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(2,6,23,0.06);
}
.g-slide img {
  width: 100%;
  height: 520px; /* landscape height */
  object-fit: cover;
  display: block;
}
.g-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0,0,0,0.48);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  backdrop-filter: blur(4px);
}
.g-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
}
.g-arrow-left { left: -16px; }
.g-arrow-right { right: -16px; }

/* thumbs */
.g-thumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.g-thumb {
  width: 76px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(2,6,23,0.06);
}
.g-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.g-thumb.active { border-color: var(--g-accent); transform: translateY(-3px); }

/* === VIDEO GRID === */
.g-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.g-video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--g-shadow);
  display: flex;
  flex-direction: column;
}
.g-video-card .poster {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  position: relative;
}
.g-video-card .poster::after{
  content: '';
  position:absolute; inset:0; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.22));
}
.g-video-card .play-btn {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display:grid; place-items:center;
  box-shadow: 0 8px 20px rgba(2,6,23,0.12);
  font-size: 24px;
}
.g-video-card .meta {
  padding: 12px;
}
.g-video-card .meta h4 { margin:0 0 8px 0; font-size:15px; color:#111; }
.g-video-card .meta p { margin:0; font-size:13px; color:var(--g-muted); }

/* Video modal (fullscreen) */
.g-video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2,6,23,0.78);
  z-index: 10000;
  padding: 20px;
}
.g-video-modal.open { display: flex; }
.g-video-modal .g-video-box {
  width: 100%;
  max-width: 1100px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(2,6,23,0.6);
}
.g-video-modal video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
  object-fit: contain;
}
.g-video-modal .g-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  border:none;
  cursor:pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* responsive adjustments */
@media (max-width:1000px){
  .g-slide img, .g-video-card .poster { height: 420px; }
}
@media (max-width:640px){
  .g-slide img, .g-video-card .poster { height: 320px; }
  .g-arrow-left { left: 8px; }
  .g-arrow-right { right: 8px; }
  .g-thumb { width:64px; height:44px; }
}
/* iframe modal adjustments for YouTube */
.g-video-box { position: relative; width: 100%; }
.g-video-box iframe {
  width: 100%;
  height: 60vh;                 /* taller on desktop */
  min-height: 320px;
  display: block;
  border: 0;
}
@media (max-width:1000px){
  .g-video-box iframe { height: 50vh; }
}
@media (max-width:640px){
  .g-video-box iframe { height: 45vh; }
}

















/* stronger CTA rule — paste near the end of style.css */
nav.main-nav a.cta,
.main-nav a.cta {
  display: inline-block;            /* makes padding/background stable */
  background: var(--brand-1);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(11,97,164,0.12);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  line-height: 1;                   /* avoids vertical misalignment */
}

/* small hover/focus affordances */
nav.main-nav a.cta:hover,
nav.main-nav a.cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11,97,164,0.14);
  filter: brightness(.98);
  outline: none;
}






	
