/* Root Typography Scale */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
  font-family: 'Barlow', sans-serif;
}


:root {
    --font-primary: 'Barlow', sans-serif;
    --text-dark: #0d224a;
    --text-muted: #4b5563;

    --text-white: #ffffff;

    --line-tight: 1.2;
    --line-normal: 1.6;
}

/* Base */
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: var(--line-normal);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: var(--line-tight);
    margin: 0 0 0.6em 0;
    color: #0d224a;
}

/* Individual Sizes (Desktop First) */
h1 {
   font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    letter-spacing: -0.015em;
}

h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
}

h6 {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* Utility Text */
.small-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lead-text {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 500;
}

/* Mobile Fine-Tuning */
@media (max-width: 480px) {
    h6 {
        letter-spacing: 0.05em;
    }

    p {
        max-width: 100%;
    }
}

a{
    text-decoration: none;
}

.primary_color {
    color: #0d224a;
}

.secondary_color {
    color: #f4ba18;
}
 
.tertiary-color {
    color: #ffcc00;
}

section{
    margin: 60px 0px;
}

.cta-btn-1{
    background-color: #d11221;
    color: #ffffff;
    padding: 5px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-2 {
    background-color: transparent;
    color: #0d224a;
    padding: 12px 30px;
    border: 2px solid #d11221;
    /* border-radius: 30px; */
    font-weight: 600;
    transition: all 0.3s ease;
}
.whatapp-btn{
      background: #25D366;
      border-radius:  30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      text-decoration: none;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 5px 30px;
      display: flex;
      gap: 10px;
}
.hero h1{
    color: #ffffff;
    position: relative;
    font-size: 55px;
    /* font-weight: 800; */
}
.hero h1 span{
    color: rgb(209 18 33);
    position: relative;
}
.hero p{
    color: #ffffff;
    position: relative;
    font-size: 19px;
}
.hero h1 span{
    color: rgb(209 18 33);
    position: relative;
}
.cards-cta-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-type-1 {
    background: #d0101f; /* secondary_color */
    color: #fdc911;
    padding: 8px 30px;
    font-weight: 600;
    border-radius: 47px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-type-1:hover {
    background: #0d224a;
    color: #ffffff;
}

/* Secondary Button */
.btn-type-2 {
    background: #0b1f52;
    color: #fff;
    padding: 8px 28px;
    font-weight: 600;
    border: 2px solid #0d224a;
    border-radius: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-type-2:hover {
    background: #0d224a;
    color: #ffffff;
}
/* Full page loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-box {
    text-align: center;
    font-size: 18px;
    color: #333;
}

.loader-box i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ff6b00;
}

/* Button loading state */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
