/********* Global Reset & Base *********/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px; 
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Slab", Arial, Helvetica, sans-serif, serif;
  background-color: #ffffff;
  color: #222222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/******* Typography ********/
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #0F2BC9;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

h1 { font-size: 2.75rem; }  
h2 { font-size: 2rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444444;
}

/****** Buttons ******/
button,
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0F2BC9 0%, #667eea 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(1px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #0F2BC9;
  color: #0F2BC9;
}

.btn-outline:hover {
  background-color: #0F2BC9;
  color: #ffffff;
}


/**** Loader Animation ****/
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  color: #4f46e5;
  background: radial-gradient(farthest-side, currentColor calc(100% - 6px),#0000 calc(100% - 5px) 0);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 13px),#000 calc(100% - 12px));
  border-radius: 50%;
  animation: l19 5s infinite linear;
}
.loader::before,
.loader::after {    
  content: "";
  grid-area: 1/1;
  background:
    linear-gradient(currentColor 0 0) center,
    linear-gradient(currentColor 0 0) center;
  background-size: 100% 10px,10px 100%;
  background-repeat: no-repeat;
}
.loader::after {
   transform: rotate(45deg);
}

@keyframes l19 { 
  100%{transform: rotate(1turn)}
}

/***** Media Query *****/
/***** Large tablets & small desktops (≤1200px) ******/
@media (max-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.4rem; }
  h5 { font-size: 1.2rem; }
  h6 { font-size: 1.05rem; }
  p  { font-size: 1.05rem; }
  button,
.btn {
  font-size: 1rem;
}
}

/***** Tablets portrait & smaller laptops (≤991px) ******/
@media (max-width: 991px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.35rem; }
  h5 { font-size: 1.15rem; }
  h6 { font-size: 1rem; }
  p  { font-size: 1rem; }
  button,
  .btn {
  font-size: 0.95rem;
}
}

/***** Standard tablets & landscape phones (≤768px) ******/
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
  p  { font-size: 0.95rem; }
  button,
  .btn {
  font-size: 0.9rem;
}
}

/***** Large smartphones & phablets (≤617px) ******/
@media (max-width: 617px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.35rem; }
  h4 { font-size: 1.2rem; }
  h5 { font-size: 1.05rem; }
  h6 { font-size: 0.95rem; }
  p  { font-size: 0.9rem; }
  button,
  .btn {
  font-size: 0.85rem;
}
}

/***** Small smartphones (≤450px) ******/
@media (max-width: 450px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }
  h5 { font-size: 1rem; }
  h6 { font-size: 0.9rem; }
  p  { font-size: 0.85rem; }
  button,
  .btn {
  font-size: 0.8rem;
}
}

/***** Extra small phones (≤365px) ******/
@media (max-width: 365px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.15rem; }
  h4 { font-size: 1rem; }
  h5 { font-size: 0.9rem; }
  h6 { font-size: 0.85rem; }
  p  { font-size: 0.8rem; }
  button,
  .btn {
  font-size: 0.8rem;
}
}
