:root{
  --blue-600:#0b63d6;
  --blue-700:#064ea6;
  --muted:#64748b;
  --bg:#f7fafc;
  --card:#ffffff;
  --glass: rgba(255,255,255,0.7);
  --radius:12px;
}

*{box-sizing:border-box}
html,body{
  height:100%
}

body{
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  background:var(--bg);
  color:#0f1724;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

/* Container */
/* Certificate Section */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.cert-item {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  min-height: 410px;
  justify-content: flex-start;
}
.cert-item:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.12);
}
.cert-item img.cert-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 2rem;
  background: #f8fafc;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  padding: 1.2rem;
  display: block;
}
.cert-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1746a2;
  margin-bottom: 0.5rem;
}
.cert-item p {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.btn-download {
  background: #1746a2;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.85rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(23,70,162,0.08);
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-download:hover {
  background: #003366;
}
@media (max-width: 1024px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cert-item {
    min-height: 0;
    padding: 2rem 1rem 1.5rem 1rem;
  }
  .cert-item img.cert-logo {
    width: 90px;
    height: 90px;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
  }
}
  padding:0
}

.main-nav a{
  color:#0f1724;
  text-decoration:none;
  padding:6px 8px;
  border-radius:8px;
  font-weight:500
}

.main-nav .btn-primary{
  background:var(--blue-600);
  color:#fff;
  padding:8px 14px;
  border-radius:8px
}

.main-nav .has-dropdown{
  position:relative
}

.dropdown{
  position:absolute;
  left:0;top:calc(100% + 8px);
  background:#fff;
  border-radius:8px;
  padding:8px;
  box-shadow:0 10px 30px rgba(2,6,23,0.08);
  display:none;
  min-width:220px
}

.has-dropdown:hover .dropdown{
  display:block
}

.dropdown li{
  padding:6px 10px
}

.dropdown a{
  display:block;
  color:#0b1220
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  font-size:22x
}

/* Hide dropdown by default */
.has-dropdown .dropdown {
  display: none;
}

/* Show dropdown only when parent has 'open' class */
.has-dropdown.open .dropdown {
  display: block;
}


/* HERO */
.hero{
  position:relative;
  padding:70px 0;
  overflow:hidden;
  background:linear-gradient(180deg, #f8fbff 0%, #ffffff 100%)
}

.hero-overlay{
  position:absolute;
  inset:0;
  mix-blend-mode:multiply;
  pointer-events:none;
  opacity:0.06;
  background:linear-gradient(120deg, rgba(11,99,214,0.06), rgba(11,154,214,0.03))
}

.hero-inner{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:30px;
  align-items:center
}

.hero-left h1{
  font-size:32px;
  line-height:1.06;
  margin:0 0 12px;
  color:var(--blue-700)
}

.lead{
  color:var(--muted);
  font-size:15px;
  margin-bottom:16px
}

.hero-img{
  width:100%;
  border-radius:14px;
  box-shadow:0 12px 35px rgba(2,6,23,0.08)
}

/* Buttons */
.btn{
  display:inline-block;
  text-decoration:none;
  cursor:pointer
}

.btn-primary{
  background:var(--blue-600);
  color:#fff;
  padding:10px 16px;
  border-radius:10px;
  font-weight:600;
  transition:transform .18s ease,box-shadow .18s
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(11,99,214,0.18)
}

.btn-ghost{
  background:transparent;
  border:1px solid rgba(6,78,166,0.08);
  color:var(--blue-700);
  padding:9px 14px;
  border-radius:10px
}

.btn-outline{
  border:1px solid rgba(6,78,166,0.12);
  padding:9px 14px;
  border-radius:10px;
  color:var(--blue-700)
}

.btn-sm{
  padding:7px 10px;
  font-size:13px
}

/* STATS */
.stats{
  padding:28px 0;
  background:linear-gradient(180deg, #fff 0%, #f7fbff 100%)
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}

.stat{
  background:var(--card);
  padding:22px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 20px rgba(11,99,214,0.04)
}

.stat-num{
  font-size:26px;
  color:var(--blue-700);
  margin-bottom:6px
}

.stat-label{
  color:var(--muted);
  font-size:13px
}



/* ABOUT */
.about{
  padding:60px 0
}

.about-grid{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:30px;
  align-items:center
}

.about-media img{
  width:100%;
  border-radius:12px;
  display:block
}

.about-content h2{
  color:var(--blue-700);
  margin-bottom:10px
}

.about-features{
  list-style:disc;
  margin-left:20px;
  color:var(--muted);
  margin-top:12px
}

/* PRODUCTS */
.products{
  padding:80px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.section-title{
  text-align:center;
  color:var(--blue-700);
  font-size:32px;
  font-weight:700;
  margin-bottom:40px
}

.product-filter{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:50px;
  flex-wrap:wrap
}

.filter-btn{
  background:#fff;
  border:2px solid #e2e8f0;
  padding:12px 24px;
  border-radius:50px;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition:all 0.3s ease;
  color:#64748b;
  min-width:120px;
  text-align:center
}

.filter-btn:hover{
  border-color:var(--blue-600);
  color:var(--blue-600);
  transform:translateY(-2px)
}

.filter-btn.active{
  background:var(--blue-600);
  color:#fff;
  border-color:var(--blue-600);
  box-shadow:0 8px 20px rgba(11,99,214,0.3)
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  max-width:1200px;
  margin:0 auto
}

.product-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
  border:1px solid #f1f5f9;
  position:relative
}

.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  border-color:#e2e8f0
}

.prod-media{
  position:relative;
  overflow:hidden;
  height:240px;
  background:#f8fafc
}

.prod-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.4s ease
}

.product-card:hover .prod-media img{
  transform:scale(1.05)
}

.prod-body{
  padding:24px;
  text-align:center
}

.prod-body h3{
  font-size:20px;
  font-weight:700;
  color:#1e293b;
  margin-bottom:12px;
  line-height:1.3
}

.prod-body p{
  color:#64748b;
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px
}

.prod-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:20px
}

.prod-actions .btn{
  padding:10px 20px;
  font-size:13px;
  font-weight:600;
  border-radius:25px;
  transition:all 0.3s ease
}

.prod-actions .btn-sm{
  background:var(--blue-600);
  color:#fff;
  border:none
}

.prod-actions .btn-sm:hover{
  background:var(--blue-700);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(11,99,214,0.3)
}

.prod-actions .btn-ghost{
  background:transparent;
  border:2px solid #e2e8f0;
  color:#64748b
}

.prod-actions .btn-ghost:hover{
  border-color:var(--blue-600);
  color:var(--blue-600);
  transform:translateY(-2px)
}

/* Responsive Design for Products */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-filter {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .filter-btn {
    min-width: 200px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .prod-body {
    padding: 20px;
  }
  
  .prod-body h3 {
    font-size: 18px;
  }
}

/* TIMELINE journey */
/* JOURNEY / TIMELINE */
.journey {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--blue-600);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
}

.timeline-item .time {
  font-weight: 700;
  color: var(--blue-700);
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-item .desc {
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.timeline-item .desc:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* Left items */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: var(--blue-600);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff;
}

/* Right items */
.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -10px;
  width: 18px;
  height: 18px;
  background: var(--blue-600);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff;
}

/* Responsive */
@media(max-width:768px) {
  .timeline::before { left: 8px; }
  .timeline-item {
    width: 100%;
    padding-left: 40px;
    text-align: left !important;
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) { left: 0; }
  .timeline-item::before {
    left: 0 !important;
    right: auto !important;
  }
}


/* TESTIMONIALS */
.testimonials{
  padding:60px 0
}

.swiper-container{
  padding:20px 0
}

blockquote{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 8px 22px rgba(2,6,23,0.04);
  font-style:italic
}

blockquote footer{
  margin-top:12px;
  font-weight:600;
  color:var(--muted)
}

/* GALLERY */
/* GALLERY */
.gallery {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3x3 grid */
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Effect */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* CONTACT */
/* CONTACT CTA */
.contact-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #0b63d6, #064ea6);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -60px;
  left: -60px;
  animation: float 6s infinite alternate;
}

.contact-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  animation: float 8s infinite alternate-reverse;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(20px); }
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

.cta-action .btn {
  font-size: 18px;
  padding: 14px 24px;
  border-radius: 10px;
  background: #fff;
  color: #064ea6;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-action .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:768px) {
  .contact-cta-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.contact-cta {
  margin-bottom: 60px; /* footer आधी gap */
}



/* FOOTER */
/* FOOTER */
.site-footer {
  background: #0b1220; /* गडद navy background */
  color: #fff;
  padding: 60px 0 20px; /* वर-खाली padding */
  position: relative;
  overflow: hidden;
}

/* Gradient overlay (background मध्ये style) */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(11,99,214,0.25), transparent 60%),
              radial-gradient(circle at bottom right, rgba(6,78,166,0.25), transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 6px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--blue-600);
  border-radius: 2px;
}

.footer-col p, 
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.logo-sm {
  width: 120px;
  margin-bottom: 12px;
}

/* Socials */
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.socials a:hover {
  background: var(--blue-600);
  transform: translateY(-4px);
}

/* Bottom strip */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

/* helpers */
.text-muted{color:var(--muted)}
.active{font-weight:700} 


/* about.html */
/* About Hero */
/* ===== Hero Section ===== */
.about-hero {
  position: relative;
  background: url('../images/bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.about-hero h1 { 
  font-size: 42px;
  margin-bottom: 15px; 
  position: relative; 
  z-index: 1; 
  
}
.about-hero p { 
  font-size: 18px; 
  opacity: 0.9; 
  position: relative; 
  z-index: 1; 
  color: #fff;
}


/* ===== About Intro ===== */
.about-intro {
  padding: 80px 20px;
  background: #f7f9fc;
}

/* Main Card Full Width */
.about-main-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  max-width: 100000px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-main-card h2 {
  font-size: 36px;
  font-weight: 700;
  color: #064ea6;
  margin-bottom: 25px;
  position: relative;
}

.about-main-card h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #0b63d6;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.about-main-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

/* Strengths Box */
.strengths-card {
  width: 100%; /* full width of parent container */
  background: linear-gradient(135deg, #e6f0ff, #d3e2ff);
  padding: 25px 30px;
  border-radius: 15px;
  margin: 25px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* ensures padding is included in width */
}

.strengths-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.strengths-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b63d6;
  margin-bottom: 15px;
}

.strengths-card ul {
  list-style: none;
  padding-left: 0;
}

.strengths-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.strengths-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b63d6;
  font-weight: bold;
}


/* Contact Card */
.contact-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1000px;
  margin: 30px auto 0 auto;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .about-main-card {
    padding: 35px 25px;
  }

  .about-main-card h2 {
    font-size: 30px;
  }

  .strengths-card h3 {
    font-size: 20px;
  }

  .about-main-card p,
  .strengths-card ul li {
    font-size: 15px;
  }

  .contact-card {
    padding: 20px;
    max-width: 100%;
  }
}




/* ===== Mission Vision Values ===== */
/* ===== Mission Vision Values (Modern) ===== */
.mvv {
  background: linear-gradient(135deg, #f7f9fc, #eaf1fc);
  padding: 70px 20px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.mvv-item {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: default;
}

.mvv-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #d3e2ff, #e6f0ff);
}

.mvv-item h3 {
  font-size: 22px;
  color: #064ea6;
  margin-bottom: 15px;
  position: relative;
}

.mvv-item h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #0b63d6;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

.mvv-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .mvv-item h3 {
    font-size: 20px;
  }
  .mvv-item p {
    font-size: 15px;
  }
}


/* cta */
/* ===== CTA Section ===== */
.about-cta {
  background: linear-gradient(135deg, #0b63d6, #064ea6);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.about-cta h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #fff;
  display: block;
  margin: 10px auto 0;
  
}

.about-cta .btn-primary {
  background: #fff;
  color: #0b63d6;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.about-cta .btn-primary:hover {
  background: #0b63d6;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Optional subtle animation */
.about-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(45deg);
}



/* ===== Products Hero Section ===== */
/* ===== Products Hero Section – same as About Hero ===== */
.page-header {
  position: relative;
  background: url('../images/bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 5px;  /* same as about.html */
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-header h1 {
  font-size: 48px;  /* same as about.html */
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.7s ease forwards;
}

.page-header p.lead {
  font-size: 20px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease forwards;
  color: #fff;
}

.page-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0b63d6;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .page-header h1 { font-size: 36px; }
  .page-header p.lead { font-size: 18px; }
}

@media (max-width: 480px) {
  .page-header h1 { font-size: 28px; }
  .page-header p.lead { font-size: 16px; }
}


  



/* Fade In Up Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }
  .page-header p.lead {
    font-size: 18px;
  }
  .product-item h2 {
    font-size: 20px;
  }
  .product-item p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 28px;
  }
  .page-header p.lead {
    font-size: 16px;
  }
  .product-item h2 {
    font-size: 18px;
  }
  .product-item p {
    font-size: 14px;
  }
} 

/* quality.html */
.quality-standards {
  padding: 60px 20px;
  background: #f7f9fc;
  text-align: center;
}

.quality-standards h2 {
  font-size: 36px;
  color: #064ea6;
  margin-bottom: 15px;
}

.quality-standards p {
  font-size: 16px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feature-box {
  background: linear-gradient(135deg, #e6f0ff, #d3e2ff);
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-box .icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0b63d6;
}

.feature-box p {
  font-size: 16px;
  color: #064ea6;
  font-weight: 500;
}


/* contact.html */
.contact-form {
  padding: 80px 20px;
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

/* Floating Labels */
.form-group {
  position: relative;
  margin-bottom: 25px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  background: none;
  outline: none;
}
.form-group label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #aaa;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease all;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 15px;
  font-size: 13px;
  color: #0b63d6;
  background: #f5f7fb;
  padding: 0 5px;
}

/* Form Card Hover */
form {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Animated Gradient Button */
form button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: linear-gradient(270deg,#0b63d6,#064ea6,#0b63d6);
  background-size: 600% 600%;
  color: #fff;
  cursor: pointer;
  animation: gradientShift 4s ease infinite;
  transition: 0.3s ease;
}
form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11,99,214,0.4);
}
@keyframes gradientShift {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* Contact Info Card */
.contact-info {
  background: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}
.contact-info h3,
.contact-info h4 {
  color: #0b63d6;
  margin-bottom: 15px;
}
.contact-info p {
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
}
.contact-info p::before {
  position: absolute;
  left: -25px;
  top: 0;
  font-size: 18px;
  color: #0b63d6;
  transition: 0.3s ease;
}
.contact-info p.address::before { content: "📍"; }
.contact-info p.phone::before { content: "📞"; }
.contact-info p.email::before { content: "✉️"; }
.contact-info:hover p::before { transform: translateX(5px); }

/* Map Container */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}


/* Responsive */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, form { margin-bottom: 30px; }
}


/* CERTIFICATES */
.certificates {
  padding: 70px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  text-align: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 40px;
  align-items: stretch;
  justify-items: center;
  margin-top: 40px;
}

.cert-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
  text-align: center;
}

.cert-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: #e2e8f0;
}

.cert-item img {
  max-width: 120px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  padding: 15px;
  background: #fafbfc;
  transition: all 0.3s ease;
}



.cert-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cert-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.cert-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Download Button Styling */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(11,99,214,0.2);
}

.btn-download:hover {
  background: linear-gradient(135deg, var(--blue-700), #053a75);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,99,214,0.3);
  color: #fff;
}

.btn-download:active {
  transform: translateY(0);
}

/* Certificate Details */
.quality-info {
  margin-top: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.quality-info h3 {
  font-size: 24px;
  color: var(--blue-700);
  margin-bottom: 25px;
  text-align: center;
}

.cert-details {
  display: grid;
  gap: 20px;
}

.cert-detail-item {
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid var(--blue-600);
}

.cert-detail-item strong {
  color: var(--blue-700);
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.cert-detail-item p {
  margin: 5px 0;
  color: #64748b;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .quality-info {
    padding: 25px;
  }
}
