/* Source Infotech - Main Stylesheet */

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ========== Header Navigation ========== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* ========== Hero Section ========== */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-image-placeholder {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  /* height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255,255,255,0.3);
  overflow: hidden;
}

/* ========== Buttons ========== */
.btn-primary-custom {
  background: white;
  color: var(--primary-color);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

/* ========== Content Sections ========== */
.content-section {
  padding: 5rem 0;
  background: #fff;
}

.section-alt {
  background: var(--bg-light);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ========== Image Placeholders ========== */
.image-placeholder {
  background: var(--bg-light);
  border-radius: 12px;
  /* height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e5e7eb;
  margin-bottom: 2rem;
}

.placeholder-content {
  text-align: center;
  color: var(--text-light);
}

.placeholder-content i {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

/* ========== Cards ========== */
.pillar-card,
.custom-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover,
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.pillar-card h3,
.custom-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.pillar-card p,
.custom-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.card-image {
  background: var(--bg-light);
  height: 350px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

/* ========== Feature Lists ========== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ========== Highlight Box ========== */
.highlight-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========== Why Choose Us Section ========== */
.why-choose-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.value-prop-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border-bottom: 4px solid var(--primary-color);
  transition: transform 0.3s;
}

.value-prop-card:hover {
  transform: translateX(5px);
}

.value-prop-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.value-prop-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ========== Blog Section ========== */
.blog-section {
  padding: 5rem 0;
  background: #fff;
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-image-placeholder {
  background: var(--bg-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========== Footer ========== */
.footer {
  background: #1f2937;
  color: #9ca3af;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.social-icons a {
  color: #9ca3af;
  font-size: 1.25rem;
  margin-right: 1rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: white;
}

.copyright {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

/* ========== Homepage Specific Styles ========== */
.developersSect {
  position: relative;
}

.developersSect .devCont {
  position: absolute;
  color: #FFF;
  padding: 20px;
  text-align: center;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.sectionTitle {
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.infoCard {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.infoCard.active {
  border: 2px solid #0d6efd;
}

.infoCard h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.infoCard ul {
  list-style: none;
  padding-left: 0;
}

.infoCard ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.infoCard ul li::before {
  content: "✔";
  color: #00c389;
  font-weight: bold;
  margin-right: 10px;
}


.contactImageBox img{border-radius:30px;}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .why-choose-section,
  .blog-section {
    padding: 3rem 0;
  }

  .developersSect .devCont {
    max-width: 90%;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .image-placeholder {
    height: 300px;
  }
}
