@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* optional */

/* @tailwind base;
@tailwind components;
@tailwind utilities; */

/*
! tailwindcss v3.0.16 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
}

body {
    margin: 0;
    /* 1 */
    line-height: inherit;
    /* 2 */
  }

  hr {
    height: 0;
    /* 1 */
    color: inherit;
    /* 2 */
    border-top-width: 1px;
    /* 3 */
  }

  .main-logo {
    width: 14rem; /* Adjust this value as needed */
  }
  
  .main-logo img {
    width: 100%; /* This ensures the image fills the container */
    height: auto; /* Maintain aspect ratio */
  }
  
  .usage-sub-heading{
    color: #6d6d6d;
   }

footer{
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #003fa4;
    font-size: 14px;
  }

  .footer-subtitle{
    padding-top: 5px;
    font-size: 12px;
  }

  .usage-image{
    height: 10rem;
    width: 15rem;
  }

  .usage-image1{
    height: 10rem;
    width: 10rem;
  }

  /* Call to Action Section */
.call-to-action {
    width: 100%;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 8rem;
    background-color: #2d3748;
    border-radius: 10px;
    
}

.call-to-action h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.call-to-action a {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.call-to-action a:hover {
    background-color: #1e40af;
}


/* Benefits Section */
.benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 7rem;
    background-color: #f7fafc;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 7rem;
}

.benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.benefits p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.benefit-card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 1rem;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}
