* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2, h3 {
  font-weight: 700;
}

p {
  color: #cecece;
  font-weight: 400;
}



.container {
  max-width: 1200px;   /* controls how wide gallery can go */
  margin: 0 auto;      /* centers it */
  padding: 0 24px;     /* 👈 THIS creates gap from left & right */
}


.text-center { text-align: center; }

/* HEADER */
.site-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px; /* ⬅️ THIS is the fix */
  display: flex;
  align-items: center;
  justify-content: space-between;
}



@media (max-width: 768px) {
  .header-container {
    padding: 12px 14px;
  }

  .logo {
    gap: 8px;
  }

  .logo-text {
    font-size: 20px;
  }

  .menu-btn {
    font-size: 26px;
  }
}



.logo {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #111;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
}

.menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px;
}

.mobile-nav.show { display: flex; }

@media(max-width:768px){
  .nav-links { display:none; }
  .menu-btn { display:block; }
}

/* HERO */
.hero {
  background: linear-gradient(to bottom right, #eff6ff, #f9fafb);
  padding: 100px 16px;
}

.hero h1 {
  font-size: 48px;
  text-align: center;
}

.hero h1 {
  text-align: center;
  line-height: 1.25;
  word-break: normal;
  white-space: normal;
}


@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;      /* smaller */
    line-height: 1.25;   /* tighter */
    padding: 0 10px;     /* breathing space */
  }
}


.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #22c55e;
  color: white;
  padding: 16px 28px;
  text-decoration: none;
  border-radius: 8px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.light-bg {
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
}

/* GRID */
/* ===== SERVICES GRID FIX ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Tablet */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}


/* CARDS */
.card {
  background: #f3f4f6;
  padding: 32px;
  border-radius: 12px;
}

.white-card { background: white; }

.servicep {color: #020617;}

.icon { font-size: 40px; margin-bottom: 12px; }

.icon-circle {
  width: 60px;
  height: 60px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 24px;
}

/* SERVICES HERO */
.services-hero {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
  padding: 80px 16px;
}

/* FOOTER */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 30px;
  text-align: center;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #22c55e;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
}

/* about page starts */

.about-hero {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
  padding: 80px 16px;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.about-text {
  max-width: 900px;
  margin: 20px auto;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.process-card {
  position: relative;
}

.process-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  color: #a4ccff;
  font-weight: bold;
}

.about-sectors {
  background: #2563eb;
  color: white;
}

.sector-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.sector-tags span {
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 999px;
}

/* gallery page starts */

.gallery-hero {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
  padding: 80px 16px;
}

.gallery-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

/* ===== GALLERY GRID FIX ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 x 3 = 9 images */
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}


/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


.gallery-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 140px;   /* 👈 CONTROL SIZE HERE */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card h3 {
  padding: 10px;
  font-size: 14px;
  color: #111827;
}

.gallery-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-note {
  font-style: italic;
  color: #6b7280;
  margin-bottom: 24px;
}


/* quality page starts */

.quality-hero {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
  padding: 80px 16px;
}

.quality-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.quality-text {
  max-width: 900px;
  margin: 20px auto;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.materials-box {
  background: #f9fafb;
  padding: 32px;
  border-radius: 16px;
}

.materials-box ul {
  list-style: none;
  margin-top: 16px;
}

.materials-box li {
  margin-bottom: 10px;
  color: #374151;
}

.quality-cta {
  background: #2563eb;
  color: white;
}

.quality-cta p {
  max-width: 800px;
  margin: 20px auto 30px;
  opacity: 0.9;
}

.btn-light {
  background: white;
  color: #2563eb;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== PREMIUM FOOTER ===== */
.premium-footer {
  background: linear-gradient(to right, #0f172a, #020617);
  color: #cbd5f5;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.premium-footer h3,
.premium-footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.premium-footer a {
  display: block;
  color: #c4c4c4;
  text-decoration: none;
  margin-bottom: 8px;
}

.premium-footer a:hover {
  color: #60a5fa;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}


/* ===== MOBILE MENU PREMIUM FIX ===== */
.mobile-nav {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 8px;
  margin: 4px 8px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background-color: #eef4ff;
  color: #2563eb;
  transform: translateX(4px);
}

/* ===== DESKTOP NAV HOVER (BOLT STYLE) ===== */
.nav-links a {
  position: relative;
  padding: 6px 2px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #2563eb;
  font-size: 20px;
}

.nav-links a:hover::after {
  width: 100%;
}

.quality-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 👈 2 × 2 layout */
  gap: 32px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .quality-features-grid {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}


.btn-large {
  font-size: 18px;
  padding: 18px 36px;
}


.stats {
  background: #ffffff;
  padding: 60px 16px;
}

.stats h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 6px;
}

.stats p {
  color: #6b7280;
  font-weight: 500;
}
.feature-box {
  padding: 24px;
}


.cta-box {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: #ffffff;
  padding: 60px;
  border-radius: 24px;
  text-align: center;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 18px;
  opacity: 0.95;
}

.cta-box .small-text {
  font-size: 15px;
  opacity: 0.85;
  margin-top: 8px;
}


.premium-footer h3,
.premium-footer h4 {
  margin-bottom: 12px;
}

.premium-footer a {
  display: block;
  margin-bottom: 6px;
}

.herop{ color: #000000; }


/* GLOBAL ICON STYLES */
.icon-box i,
.icon-circle i {
  font-size: 26px;
  color: #2563eb;
}

.whatsapp-float i {
  font-size: 28px;
}

.footer-logo i {
  font-size: 22px;
  color: #60a5fa;
}

.fa-solid{color: #60a5fa;}

.srviceicon{ font-size: 30px;
padding: 25px 10px;}

.qualitybtn{font-size: 18px;}


.brand-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.brand-list li {
  background: #f3f4f6;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
}


.dev-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  font-style: italic;
  text-decoration: underline;
}

.dev-link:hover {
  text-decoration: underline;
  font-size: 16px;
  transition: all 0.3s ease;

}

.btncall:hover{
  font-size: 19px;
  transition: all 0.3s ease;
}


.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

@media (min-width: 768px) {
  .logo-img {
    height: 80px;
  }

  .logo-text {
    font-size: 28px;
  }
}

