/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'League Spartan', sans-serif;
    background: white;
}

img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10vh 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
    padding-top: 0px;
}

/* Logo */
.logo {
    max-width: 30vw;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

/* Text blocks */
.text,
.text-backed-by {
    font-size: calc(14px + 0.5vw);
    text-align: center;
    max-width: 60vw;
    line-height: 3rem;
}

.text-backed-by {
    margin-top: 3vh;
}

/* Flag */
.flag {
    max-width: 60vw;
}

/* Backers section */
.backers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3vw;
    width: 100%;
    max-width: 60vw;
    margin: 2vh auto;
}
.backer-image {
    width: 47%; /* ensures two columns roughly */
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 3vh 3vw;
    }

    .logo {
        max-width: 50vw;
    }

    .text,
    .flag,
    .backers {
        max-width: 80vw;
    }

    .backers {
        gap: 4vh;
    }
}
.fancy-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 3vh;
  }
  .email-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0072ff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2vh;
  }
  
  .email-link:hover {
    color: #00c6ff;
    border-bottom: 2px solid #00c6ff;
  }
  
  .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-top: 5vh;
    letter-spacing: 1px;
    position: relative;
  }
  
  .section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0072ff;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .made-in-india {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'League Spartan', sans-serif;
    color: #2b2d42;
    text-align: center;
    margin-top: 5vh;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .made-in-india::after {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(to right, #ff9933 0%, #ffffff 50%, #138808 99%, #ffffff 100%);
    border-radius: 3px;
  }
  
  