/* Global Resets */
:root {
  --primary-color: #0831B5;
  --secondary-color: #0831B5;
  --text-color: #444444;
  --bg-gradient-start: #62CCFF;
  --bg-gradient-end: #E5F7A7;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Hind Siliguri', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

/* Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
}

/* Button Styles */
.btn-primary-custom {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Utility Classes */
.min-vh-100-custom {
  min-height: 100vh;
}

.bg-gradient-custom {
  background: linear-gradient(to bottom, var(--bg-gradient-start) 30%, var(--bg-gradient-end) 80%);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Navbar Alignment */
@media (max-width: 991px) {
  .navbar-brand {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}