@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-image: url('../img/Background.png');
    background-size: cover;       /* Cover entire element */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating */
}

.Header {
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(540deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    padding-left: 50px;
}

.logo img {
    height: 70px;
    width: 70px;
}


.button {
    padding-right: 50px;
    display: flex;
    gap: 15px;
}

.buttonNoPad{
    padding-right: 0;
    margin-top: 20px;
}

.button button {
    height: 50px;
    width: 150px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #000000;
}

.button .NormalButton:hover {
    opacity: 0.8;
}

.button button:active {
    transform: scale(0.95);
}

.button button:nth-child(1) {
    background: rgb(255, 101, 0);
    color: #FFFFFF;
}

.button:nth-child(3){
    width: 500px;
    align-items: center;
}

.button:nth-child(3) button
{
    font-size: 1.2rem;
    height: 80px;
    width: 100%;
}

.shadow__btn {
    transition: 0.5s;
    transition-property: box-shadow;
  }
  
  .shadow__btn {
    background: rgb(255, 101, 0);
    box-shadow: 0 0 25px rgb(255, 101, 0);
  }
  
  .shadow__btn:hover {
    box-shadow: 0 0 5px rgb(255, 101, 0),
                0 0 25px rgb(255, 101, 0),
                0 0 50px rgb(255, 101, 0),
                0 0 100px rgb(255, 101, 0);
    opacity: 1;
  }



::-webkit-scrollbar {
    width: 14px; 
}

::-webkit-scrollbar-track {
    background: #0C0C0C; 
    border-left: 1px solid #1e1e1e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#FF6500, #ff8533); 
    border-radius: 8px;
    border: 3px solid #0C0C0C; 
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6500;
}


html {
    scrollbar-width: thin;
    scrollbar-color: #FF6500 #0C0C0C;
}

.scrollable-div {
    overflow-y: auto;
    max-height: 300px;
}

.scrollable-div::-webkit-scrollbar {
    width: 8px;
}

main {
    margin-top: 100px; 
}

.page {
    width: 100%;
    height: calc(100vh - 100px); 
    overflow: hidden;
}

.firstPage {
    background-image: url('../img/Background.png');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.firstPage img{
    height: 500px;
    width: 500px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 5px rgba(255, 101, 0, 0.3)); /* Orange glow */
}

.firstPage h2{
    height: 5rem;
    font-size: 5rem;
    color: #FF6500;
}


.thirdPage,
.secondPage {
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 100px;
    color: #ffffff;
}

.secondPage{
    height: 100vh;
}

.sub-Title{
    padding: 10px 20px;
    width: 400px;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    border: 1px solid #ffffff80;
    transition: 0.5s ease;
    background: #FF6500;
    border: 1px solid #FF6500;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
    box-shadow: 0 0 5px #FF6500, 0 0 20px #FF6500, 0 0 50px #FF6500,
    0 0 100px #FF6500;
}

.secondPage .font-holder{
    margin-top: 50px;
    text-align: center;
}

.secondPage .font-holder p{
    color: #808080;
}

.form-holder{
    margin-top: 30px;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(3, 1fr); /* 3 rows */
    gap: 80px; /* Space between cards */
    padding: 20px; /* Padding around grid */
    max-width: 1200px; /* Optional: limit max width */
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.form-holder:nth-child(2)
{
    display: flex;
    align-items: center;
}

.card {
    position: relative;
    width: 450px;
    height: 300px;
    background: linear-gradient(137deg, rgb(255, 101, 0) 0%, rgba(0,0,0,0) 100%);
    transition: 0.3s ease;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: hidden; /* Keeps everything contained */
}

/* Black background layer */
.card::after {
    content: '';
    background-color: #000000;
    position: absolute;
    z-index: -1; /* Changed from 1 to -1 to send behind content */
    transition: 0.3s ease;
    height: 98%;
    width: 98%;
    top: 1%;
    left: 1%;
    border-radius: 28px;
}

/* Content container */
.card-content {
    position: relative;
    z-index: 2; /* Above the black background */
    color: white; /* Text color */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-left: 20px;
}
  
.card:hover {
    filter: drop-shadow(0px 0px 30px rgba(255, 101, 0, 1));
}

.secondPage .card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.secondPage .card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card .card-content .icon{
    display: flex;
    background: #FF6500;
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.card .card-content h2{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.6rem;
}

.card .card-content .description{
    margin-top: 5px;
    color: #808080;
}

/* From Uiverse.io by AnthonyPreite */ 
.price__heading 
{
    font-weight: 600;
    font-size: 2.25em;
    margin-bottom: 0.75em;
    text-align: center;
    color: #eceff1;
}
  
.price 
{
   position: relative;
}
  
.price 
{
    --flow-space: 0.5em;
    --hsl: var(--hue), var(--saturation), var(--lightness);
    flex: 1 1 14rem;
    padding: 1.5em 2em;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    align-items: start;
    gap: 1.25em;
    color: #eceff1;
    background-color: #000000;
    border: 5px solid #FF6500;
    border-radius: 15px;
    height: 600px;
    width: 500px;
    margin-top: 20px;
}
  
.price:nth-child(1) 
{
    --hue: 165;
    --saturation: 82.26%;
    --lightness: 51.37%;
}
  
.price__bullets 
{
    line-height: 1.4;
}
  
.price__heading 
{
    font-size: 2em;
    font-weight: 800;
    text-transform: uppercase;
}
  
.price__price 
{
    font-size: 2.5em;
    font-weight: 700;
    color: #FF6500;
}

li
{
    font-size: 1rem;
}
  
.flow > * + * 
{
    margin-top: var(--flow-space, 1.25em);
}
  
.cta 
{
    display: block;
    align-self: end;
    margin: 1em 0 0.5em 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #FF6500;
    padding: 0.7em;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}
  

footer{
    margin-top: 50px;
    height: 150px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 50%, rgba(255, 101, 0, 0.5) 100%);
    border-top: 5px solid #0C0C0C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    gap: 20px;
}

footer img{
    height: 100px;
    width: 100px;
}


#typewriter-text {
    position: relative;
    border-right: 2px solid #FF6500;
    white-space: nowrap;
    display: inline-block;
    vertical-align: top; 
}
price

.typewriter-container {
    min-width: 150px; 
    display: inline-block;
}


/* Mobile responsiveness */
@media (max-width: 1300px)
{
    .secondPage .form-holder{
        grid-template-columns: repeat(2, 1fr); /* 3 columns */
        grid-template-rows: repeat(2, 1fr); /* 3 rows */
    }
}

@media (max-width:500px) 
{
    .Header {
        height: 80px;
        padding-right: 5px;
    }

    .button:nth-child(3)
    {
        flex-direction: column;
    }

    .firstPage img{
        height: 350px;
        width: 400px;
        animation: float 3s ease-in-out infinite;
        filter: drop-shadow(0 5px 5px rgba(255, 101, 0, 0.3)); /* Orange glow */
    }

    .firstPage .button
    {
        width: 90%;
    }

    .logo {
        padding-left: 20px;
    }
    
    .logo img {
        height: 50px;
        width: 50px;
    }

    
    .button button 
    {
        height: 50px;
        width: 100px;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .firstPage .BlazeFont
    {
        font-size: 2.5rem;
    }
    
    .firstPage h2{
        font-size: 2.5rem;
        height: 3.5rem;
    }

    .firstPage .button button
    {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 75px;
    }

    .sub-Title
    {
        width: 80%;
    }

    main {
        margin-top: 80px;
    }
    
    .page {
        height: calc(100vh - 80px);
    }

    .secondPage{
        height: 100%;
        width: 100;
    }
    
    .secondPage .form-holder{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .card
    {
        width: 350px;
    }

    .form-holder:nth-child(2)
    {
        flex-direction: column;
    }

    .font-holder h2
    {
        font-size: 1.5rem;
    }

    .font-holder p
    {
        font-size: .8rem;
    }

    .price
    {
        height: 650px;
        width: 300px;
    }

    .price__heading {
        font-size: 1.70em;
        font-weight: 800;
        text-transform: uppercase;
      }
      
      .price__price {
        font-size: 1.75em;
        font-weight: 700;
        color: #FF6500;
      }
    
      li{
        font-size: 1rem;
      }
}

@media (max-width: 900px) {
    .Header {
        height: 80px;
    }

    .buttonNoPad{
        padding-left: 20px;

    }

    .button:nth-child(3)
    {
        flex-direction: column;
    }

    .logo {
        padding-left: 20px;
    }
    
    .logo img {
        height: 50px;
        width: 50px;
    }
    
    .button {
        padding-right: 20px;
    }
    
    .firstPage h2{
        font-size: 3.5rem;
        height: 3.5rem;
    }

    main {
        margin-top: 80px;
    }
    
    .page {
        height: calc(100vh - 80px);
    }

    .secondPage{
        height: 100%;
    }
    

    .secondPage .form-holder{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .form-holder:nth-child(2)
    {
        flex-direction: column;
    }

    .price
    {
        height: 650px;
        width: 300px;
    }

    .price__heading {
        font-size: 1.70em;
        font-weight: 800;
        text-transform: uppercase;
      }
      
      .price__price {
        font-size: 1.75em;
        font-weight: 700;
        color: #FF6500;
      }
    
      li{
        font-size: 1rem;
      }     
}

/*Animation Key Frame */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg); 
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) rotate(0deg); 
        opacity: 1;
        filter: drop-shadow(0 0 10px #FF6500); /* Modern browsers */
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #FF6500; }
}

.typing {
    animation: blink-caret 0.75s step-end infinite;
}