/****** Section Styling ******/
.ipassport-hero {
    padding: 0px 20px 20px 20px;
}

/****** Container Styling ******/
.ipassport-container {
    margin: auto;
}

/****** Flyer Image Styling ******/
.ipassport-flyer-wrapper {
    margin-bottom: 30px;
}

.ipassport-flyer {
    max-width: 100%;
}

/****** Text Content Styling ******/
.ipassport-text {
    margin-top: 20px;
}

.ipassport-title {
    font-size: 25px;
    font-weight: bold;
    color: #0056b3;
}

.ipassport-subtitle {
    font-size: 25px;
    font-weight: 500;
    color: #3b86c4;
}

.ipassport-description {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/****** Button Styling ******/
.ipassport-btn {
    background:transparent ;
    color: #0056b3;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid #0056b3;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.ipassport-btn:hover {
    background: #004494;
    color: white;
    transform: scale(1.05);
}
.ipassport-form-container{
    display: flex;
    justify-content: center;
    align-items: center;  
}
.ipassport-form{
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.ipassport-form-container h1{
    padding: 10px;
    color: #0056B3; 
    font-size: 25px;
    text-decoration: underline;
    text-align: center;
    text-transform: uppercase;
}
.form-label-innovator{
    font-size: 16px;
}
.form-control-innovator,.form-select-innovator{
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}
.form-control-innovator:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
.btn-ipassport {
    background-color: #4096D9;
    color: white;
    font-size: 16px;
    padding: 12px 40px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease;
}

.btn-ipassport:hover {
    background-color: #0056b3; 
    transform: translateY(-2px); }


/****** Mobile Responsiveness ******/
@media (max-width: 768px) {
    .ipassport-hero{
        padding: 10px;
    }
    .ipassport-title {
        font-size: 2rem;
    }

    .ipassport-description {
        font-size: 14px;
    }

    .ipassport-btn {
        width: 100%;
        text-align: center;
    }
}

/* logos */
.brand-slider-container {
    width: 100%;
    overflow: hidden; /* Hide overflow */
    padding: 4em 0em 4em 0em;
}

/* The track that holds all the slides */
.brand-slider-track {
    display: flex;
    gap: 3em; /* Space between slides */
    animation: scroll 20s linear infinite; /* Infinite scrolling animation */
}

/* Individual slide styling */
.brand-slide {
    flex: 0 0 auto; /* Prevent shrinking */
}

/* Image styling */
.brand-slide-image {
    width: 20rem; /* Adjust image size */
    height: auto;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

/* Infinite scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0); /* Start position */
    }
    100% {
        transform: translateX(-100%); /* End position (scroll out of view) */
    }
}

.brand-subtitle{
    padding: 10px;
    color: #0056B3; 
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
}
.qr-container {
  padding: 20px;
  border-radius: 12px;
  text-align: center; /* Ensures heading and image are centered */
}

.qr-container img {
  width: 200px;
  height: auto;
  margin: 15px auto 0 auto; /* Top margin + horizontal centering */
  display: block; /* Needed for margin auto to work */
}

.qr-container h2 {
  font-size: 2rem;
  margin-top: 10px;
  color: #333;
}
