@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================
   Base Styles
===================== */

:root {
  --index-blue: #1565c0;
  --index-blue-dark: #0d47a1;
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, Helvetica, Arial, sans-serif;
  padding-top: 50px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand {
  font-weight: 600;
  letter-spacing: -0.3px;
}
.navbar-brand img{
	height:60px;
}	

section {
  padding: 60px 0;
}

/* =====================
   Buttons
===================== */
/*
.btn-primary {
  background-color: #1a73e8;
  border-color: #1a73e8;
}

.btn-primary:hover {
  background-color: #1558c8;
  border-color: #1558c8;
}
*/


.btn-primary {
  background-color: var(--index-blue);
  border-color: var(--index-blue);
}

.btn-primary:hover {
  background-color: var(--index-blue-dark);
  border-color: var(--index-blue-dark);
}

.card-label {
  background-color: var(--index-blue);
}


/* =====================
   Feature Boxes
===================== */

.feature-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

/* =====================
   Footer
===================== */

footer {
  background-color: #343a40;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .text-white {
  color: #fff;
}

@media (max-width: 768px) {
	.navbar-brand img{
		height:50px;
	}	
}
