/* ==========================================================================
   स्टाइल शीट (style.css) - बेसिक और आसान डिज़ाइन
   यहाँ आप वेबसाइट के रंग, फॉन्ट, कार्ड्स और मार्जिन बदल सकते हैं।
   ========================================================================== */

/* 1. बेसिक सेटिंग्स और फॉन्ट */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  background-color: #fcfcfc;
  line-height: 1.6;
}

/* 2. नेविगेशन बार (Navbar) स्टाइल */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 14px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.nav-link {
  font-size: 1.05rem;
  margin: 0 5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
}

/* 3. पेज हेडर / बैनर (हर पेज के ऊपर का नीला बैनर) */
.page-header {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: #ffffff;
  padding: 60px 0 50px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto;
}

/* 4. होम पेज का हीरो सेक्शन (Hero Banner) */
.hero-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
  padding: 80px 0;
  border-bottom: 1px solid #e0e0e0;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0d6efd;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555555;
  margin-top: 15px;
  margin-bottom: 25px;
}

/* 5. कार्ड्स (Cards) - सर्विसेज, प्रॉडक्ट्स और फीचर्स के लिए */
.custom-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* प्रॉडक्ट इमेज बॉक्स */
.product-img-box {
  background-color: #f1f5f9;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: #64748b;
  font-size: 3.5rem;
}

/* 6. कॉल टू एक्शन बॉक्स (Call to Action) */
.cta-section {
  background-color: #0d6efd;
  color: #ffffff;
  padding: 50px 0;
  border-radius: 16px;
  margin: 50px 0;
  text-align: center;
}

/* 7. टीम कार्ड इमेज */
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #0d6efd;
  margin: 0 auto 15px auto;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 8. संपर्क पेज (Contact Page) बॉक्स */
.contact-info-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e9ecef;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item-icon {
  font-size: 1.5rem;
  color: #0d6efd;
  margin-right: 15px;
  margin-top: 2px;
}

/* 9. वेबसाइट का फूटर (Footer) */
.site-footer {
  background-color: #1a1e21;
  color: #adb5bd;
  padding-top: 60px;
  padding-bottom: 25px;
  margin-top: 60px;
}

.site-footer h5 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.site-footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #0d6efd;
}

.footer-bottom {
  border-top: 1px solid #2d3238;
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
}
