:root {
  --color-primary: #003366; /* Deep Navy */
  --color-secondary: #0073e6; /* Bright Blue */
  --color-accent: #fdb813; /* Golden Yellow */
  --color-text: #333;
  --color-text-light: #555;
  --color-bg-light: #f9fafb;
  --color-white: #ffffff;
  --color-border: #eaeaea;
  --shadow-sm: 0 4px 12px rgba(0, 51, 102, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 51, 102, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 74, 173, 0.15);
}


/* --- HERO HIGHLIGHT SECTION --- */
.smart-highlight {
  background: linear-gradient(110deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}
.smart-highlight h2 {
  font-size: 2.8rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 20px;
}
.smart-highlight p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 850px;
  margin: 0 auto;
}

/* --- MAIN SMART SECTION --- */
.smart-section {
  
  padding: 80px 0;
  background: var(--color-bg-light);
}
.smart-section.bg-white {
  background: var(--color-white);
}

.smart-section h2, 
.smart-section h3 {
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
/* Targets the intro paragraph */
.smart-section > .container > h2 + p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  font-size: 1.05rem;
}

/* --- FEATURE CARDS --- */
.smart-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.smart-feature {
  background: var(--color-white);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}
.smart-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.smart-feature img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.smart-feature h4 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.smart-feature p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- NEW BENEFITS LIST --- */
.smart-benefits-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.smart-benefits-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.smart-benefits-item:hover {
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-accent);
  transform: translateX(5px);
}
.smart-benefits-item .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 3px;
  color: var(--color-accent);
}
.smart-benefits-item div h4 {
  color: var(--color-primary);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.smart-benefits-item div p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- GALLERY SECTION --- */
.smart-gallery {
  margin-top: 70px;
}
.smart-gallery h3 {
  margin-bottom: 40px;
}
/* Override for gallery cards */
.smart-gallery .smart-feature {
  padding: 0;
  overflow: hidden;
}
.smart-gallery .smart-feature img {
  width: 100%;
  height: 250px;
  border-radius: 0;
  margin-bottom: 0;
  transition: transform 0.4s ease;
}
.smart-gallery .smart-feature:hover img {
  transform: scale(1.05);
}

.palign{
	text-align:justify;
}

/* --- QUOTE SECTION --- */
.quote-section {
  background: var(--color-primary);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.quote-section .quote-icon {
  width: 60px;
  height: 60px;
  fill: var(--color-secondary);
  opacity: 0.8;
  margin-bottom: 20px;
}
.quote-section blockquote {
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  max-width: 850px;
  margin: 0 auto 25px;
  line-height: 1.6;
}
.quote-section cite {
  display: block;
  color: var(--color-accent);
  font-weight: 600;
  font-style: normal;
  font-size: 1.1rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
  .smart-highlight h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .smart-section {
    padding: 60px 0;
  }
  .smart-benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .quote-section blockquote {
    font-size: 1.25rem;
  }
}