:root{
    --neutral-black: #020202;
    --gray: #222;
    --pyralume-red: #D81A43;
    --white: #fff;
    --yellow: #ECA54D;
    --dark-red:#410815;
}

/* ----------------      FONT STYLES      ----------------- */
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo/4.6.1.1.1 Static/01 Archivo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway/4.6.1.3 Raleway/4.6.1.3.1 Static/01 Raleway-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway/4.6.1.3 Raleway/4.6.1.3.1 Static/02 Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


*{
    box-sizing: border-box;
}

body{
    background-color: var(--neutral-black);
    color: var(--white);
    font-family: "Raleway", sans-serif;
    margin: 0 auto;
    line-height: 1.4;
    position: relative;

}

.wave-element{
    position: absolute;
    z-index: -1;
    left: 0;
   
}

.logo img{
    width: 100%;
    max-width: 200px;
}

img{
    width: 100%;
}

/* ----------------      BUTTON STYLES      ----------------- */
.btn-classic {
    background-color: var(--pyralume-red);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-wrap: nowrap;
    font-weight: 600;
    
}

.btn-classic:hover{
    background-color: var(--white);
    color: var(--pyralume-red);
    box-shadow: 0 0 10px var(--pyralume-red);
}

.btn-secondary{
    background-color: var(--white);
    color: var(--pyralume-red);
    text-align: center;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-wrap: nowrap;
    font-weight: 600;
}

.btn-secondary:hover{
    background-color:var(--pyralume-red) ;
    color:var(--white);
    box-shadow: 0 0 10px var(--pyralume-red);
}



.btn-tertiary{
    background-color: var(--pyralume-red);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease;
    text-wrap: nowrap;
    border-radius: 16px 0 16px 0;
}

.btn-tertiary:hover{
    transform: translateY(-7px);
}

.btn-tertiary-2{
    background-color: var(--yellow);
    color: var(--neutral-black);
    text-align: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease;
    text-wrap: nowrap;
    border-radius: 16px 0 16px 0;
    font-weight: 600;
}

.btn-tertiary-2:hover{
    transform: translateY(-7px);
}


/* ----------------      LINK STYLES      ----------------- */
a{
    color: var(--white);
}



/* ----------------      MENU STYLES      ----------------- */
#menu-toggle {
    display: none;
}

.menu-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    z-index: 2; 
}

.menu-icon img {
    width: 2rem; 
}

header{
    background-color: rgba(2, 2, 2, .5);
}

nav {
    background-color: var(--neutral-black); 
    display: none;  
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    padding: 5rem 10rem 3rem 2rem;
    height: 100%;
    z-index: 1;
    box-shadow: -5px 0 50px var(--pyralume-red);
    
}

nav a {
    text-decoration: none;
    color: var(--white);
    padding-top: 1rem;

}

nav a:nth-child(4){
    margin-bottom: 1rem;
}


#menu-toggle:checked + .menu {
    display: flex;
}

/* Nav link styling */
nav a {
    text-decoration: none;
    color: var(--white);
    position: relative; 
    transition: color 0.3s ease;
}

/* Custom underline effect on hover */
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 0;
    height: 2px; 
    background-color: var(--pyralume-red); 
    transition: width 0.3s ease; 
}



nav a:hover::after {
    width: 100%; 
}

/* Active link underline */
nav a.active::after {
    width: 100%; 
    background-color: var(--pyralume-red); 
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button style */
.dropbtn {
    background-color: transparent;
    border: none;
    color: var(--white);
    /* padding: 1rem; */
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

/* Show the dropdown content when hovering over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown menu styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--neutral-black);
    min-width: 160px; /* Adjust the width of the dropdown */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
    flex-direction: column;
}

/* Dropdown links styling */
.dropdown-content a {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}




/* ----------------      HERO BANNER VIDEO STYLES      ----------------- */

/* Hero Banner Styles */
.hero-banner-homepage {
    position: relative;
    width: 100%;
    height: 50vh;
    background-image: url('../images/placeholder-video.gif'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    padding: 2rem 0 0 1rem;
}

.hero-content h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;

}

.hero-content p {
    font-family: 'Raleway', sans-serif;
    
}

.hero-content p:nth-child(2){
    font-size: 1.2rem;
    max-width: 370px;
    margin-bottom: 3rem;
}

.hero-form {
    display: flex;
    gap: 1rem;
}

.hero-form input {
    padding: 0.7rem 1rem;
    border: 1px solid var(--pyralume-red);
    border-radius: 30px;
    background-color: transparent;
    color: var(--white);
    outline: none;
    font-family: 'Raleway', sans-serif;
    /* width:300px ; */
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button{
    border: none;
}



/* ----------------      SECTION 1 STYLES      ----------------- */
.content-wrapper{
    padding: 0 2rem;
}

.audience-section {
    padding: 2rem 0;
    text-align: center;
}

.section-headings{
    text-align: left;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    text-shadow: 0 0 10px var(--pyralume-red), 0 0 20px var(--pyralume-red), 0 0 30px var(--pyralume-red);
    position: relative;
    margin:4rem 0;
    
}

.section-headings::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -20px;
    width: 100px;
    height: 7px;
    background-color: var(--pyralume-red);
    
}

.card-container{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 2rem;
}
  
.card{
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.card:hover{
    transform: translateY(-10px);
    border-radius: 26px;
}

.card span{
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-family: 'Archivo', sans-serif;
    max-width: 300px;
    font-size: 1.8rem;
    text-align: left;
    
}

.card img{
    border-radius: 20px;
    width: 100%;
}


/* ----------------      SECTION 2 STYLES      ----------------- */
.get-started-section-img img{
    width: 100%;
    z-index: 1;
    position: relative;
    /* margin: 2rem; */
    border-radius: 26px;
    box-shadow: 0 0 15px var(--neutral-black),0 0 15px var(--neutral-black) ;
}
.get-started-section-img{
    padding: 2rem;
    padding-right: 0;
}

.img-style {
    position: relative;
   
}


.get-started-section-block {
    position: absolute;
    left: 0;
    bottom:10px;
    width: 250px;
    height: 150px;
    background-color: var(--pyralume-red); 
    z-index: 0; 
    border-radius: 26px;
}

.content-styling-gradient{
background: linear-gradient(to bottom, var(--neutral-black), var(--pyralume-red));
border-radius: 26px;
padding: 1rem;
margin: 1rem 0;
}



/* ----------------      SECTION 3 STYLES      ----------------- */
.stacked-gallery img{
    width: 100%;
    box-shadow: 0 0 20px var(--neutral-black),0 0 25px var(--neutral-black) ;
}

.scrollable-gallery-wrapper{
    display: flex;
}

.stacked-gallery{
    display: flex;
    align-items: center;
    
}

.gallery-item{
    z-index: 1;
    position: relative;
}

.scroll-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 3;
    font-size: 2rem;
    border-radius: 50%;
    outline: none;
}

.stacked-gallery .btn-classic {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    left: 25%;
    
}





/* ----------------      SECTION 4 STYLES      ----------------- */

.global-community-section{
    display: flex;
    align-items: center;
    padding: 2rem 0 4rem 0;
    margin: 0 auto;
    justify-content: center;
    background-image: url('../images/cinema.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin: 8rem 0 6rem 0;
   
}

.global-community-section p{
    max-width: 600px;
}


/* ----------------      SECTION 5 STYLES      ----------------- */

.discover-section img{
    width: 60%;
    box-shadow: 0 0 30px var(--pyralume-red); 
    margin-bottom: 2rem;
    border-radius: 26px;
}

.discover-section p{
    max-width: 600px;
    text-align: center;
    margin-bottom: 2rem;
}

.discover-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.pricing-section-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding-bottom:4rem ;
}

.pricing-sect{
    background: linear-gradient(to bottom, var(--neutral-black), var(--dark-red));
    padding-bottom:3rem ;
}

.pricing-sect div{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-section-content p:nth-child(1){
    font-size: 3rem;
    margin: 0;
}

.pricing-section-content p:nth-child(2){
    font-size: 1.2rem;
    margin:4rem 0 2rem 0;
}

.price-span{
    font-size: 6rem;
    padding: 1rem;
    text-shadow: 0 0 10px var(--yellow), 0 0 20px var(--yellow), 0 0 30px var(--yellow);
}



/* ----------------      FOOTER STYLES      ----------------- */
footer{
    box-shadow: 0 -3px 30px var(--pyralume-red) ; 
    /* margin-top: 4rem; */
    background-color: var(--neutral-black);
 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 5rem 0 6rem;
    background-color: var(--neutral-black);
}


.footer-sections span, .newsletter-section span {
    font-weight: bold;
    color: var(--pyralume-red);
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-sections a, .newsletter-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;

}

.footer-sections a:hover {
    color: var(--pyralume-red);
}


.footer-sections .newsletter-p {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.newsletter-section input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(118, 118, 118, 0.7) ;
    border-radius: 50px;
    background-color: transparent;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-section input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    padding: .5rem;
}




.social-connect {
    text-align: center;
    margin-top: 1rem;
}

.connect-title {
    color: var(--pyralume-red);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;

}

.social-icons img {
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    padding: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright-line{
    color:var(--pyralume-red);
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 0;
}

.testimonials-section{
    margin-bottom: 6rem;
  }
  
  .testimonials-head{
      display: flex;
      align-items: center;
      gap: 2rem;
  }
  
  .testimonials-head img{
      width: 100px;
      border-radius: 100%;
  }
  
  .testimonials-head h4, .testimonials-head p{
      text-transform: uppercase;
      margin: 0;
  }
  
  .testimonials-head h4{
      margin-bottom: .7rem;
  }
  .testimonials-card{
      background-color: var(--pyralume-red);
      padding: 2rem;
      border-radius: 8px;
  }
  
  .testimonials-grid{
      display: grid;
      gap:2rem;
  }
  

/* ----------------      DESKTOP VIEW      ----------------- */
@media (min-width: 720px) {
    /* ----------------      HEADER & MENU STYLES      ----------------- */
    header {
        display: flex;
        justify-content: space-between;
        position: sticky; 
        top: 0; 
        z-index: 10; 
        align-items: center;
        /* margin-bottom: 1rem; */
        padding: 0 1rem;
        box-shadow: 0 2px 20px var(--pyralume-red);
    }

    nav {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 3rem;
        padding: 0;
        align-items: center;
        box-shadow: none;
        text-wrap: nowrap;
        /* margin: 0 auto; */
        background-color: transparent;
    }

    nav a {
        padding-top: 0;
    
    }
    
    nav a:nth-child(4){
        margin-bottom: 0;
    }
    

    .menu-icon {
        display: none;
    }

    /* ----------------      HERO BANNER STYLES      ----------------- */
    

    .hero-banner-homepage {
        height: 75vh;
    }

    .hero-content {
        padding: 4rem 0 0 8rem;
    }

    .hero-content p:nth-child(2){
        
        max-width: 370px;
        margin-bottom: 9rem;
    }

    .hero-form input {
        
        width:300px ;
    }

    /* ----------------     SECTION 1 STYLES   ----------------- */


    .content-wrapper{
        margin: 0 auto;
        max-width: 1200px;
    }

   .card-container{
    
    grid-template-columns: repeat(2,1fr);
   }

   .card span{
    font-size: 2.5rem;
   }

   /* ----------------     SECTION 2 STYLES   ----------------- */
   

   .get-started-section-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
   }
   
   .testimonials-grid{
    grid-template-columns: repeat(3,1fr);
}

    /* ----------------      FOOTER STYLES      ----------------- */
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .social-icons {
        gap: 1rem;
    }


}



    /* ----------------      LOGIN SIGNUP PAGE CSS     ----------------- */

    .login-body {
        margin: 0;
        padding: 0;
        min-height: 100vh;
        background-color: #020202;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        position: relative;  
        padding-bottom: 150px; 
    }
    
    .login-back-btn {
        position: absolute;
        top: 2rem;
        left: 2rem;
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem;
    }
    
    .login-wrapper {
        max-width: 400px;
        width: 100%;
        margin: auto;
        text-align: center;
        padding-top: 2rem;
    }
    
    .login-logo-wrapper {
        margin-bottom: 2rem;
    }
    
    .login-logo-img {
        width: 70%;
        margin-bottom: 0.2rem;
    }
    
    .login-brand-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .login-tabs {
        display: flex;
        justify-content: center;
        gap: 8rem;
        margin-bottom: 2rem;
    }

    .login-tab-input {
        display: none;
    }

    .login-tab-link {
        text-decoration: none;
        font-size: 1.1rem;
        color: #fff;
        position: relative;
        padding-bottom: 4px;
        cursor: pointer;
    }

    .login-tab-link:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
    }

    .login-tab-input:checked + .login-tab-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
    }

    .login-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .login-input {
        padding: 0.8rem;
        border-radius: 10px;
        border: none;
        background-color: #fff;
        font-size: 1rem;
    }
    
    .login-submit-btn {
        padding: 0.5rem;
        background-color: #D81A43;
        color: #fff;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s;
    }
    
    .login-submit-btn:hover {
        background-color: #D81A43;
    }
    
    .login-links {
        margin-top: 1rem;
        display: flex;
        justify-content: space-between;
    }
    
    .login-link {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
    }
    
    .login-link:hover {
        text-decoration: underline;
    }
    
    .login-signup-wrapper {
        text-align: right; 
    }
    .signup-wrapper{
        text-align: right; 
        max-width: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto; 
    }

    .login-links-p {
        color: #767676;
        font-size: 1rem;
        margin: 0 0 0.2rem 0; 
    }
    
    .login-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 2rem 0;
        text-align: center;
        background-color: #020202;  
    }
    
    .login-footer-nav {
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
        flex-direction: column;
    }
    
    .login-footer-link {
        color: #fff;
        text-decoration: none;
    }
    
    .login-copyright {
        color: #D81A43;
        font-size: 0.9rem;
    }

    @media (min-width: 720px){
        .login-footer-nav {
            flex-direction: row;
            gap: 5rem;
        }
    }

    /* ----------------      SUPPORT PAGE CSS     ----------------- */

    .support-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        color: #ffffff;
    }
    
    .support-search-section {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .support-heading {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .support-search-wrapper {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }
    
    .support-search-input {
        width: 100%;
        padding: 12px 48px 12px 16px;
        border-radius: 4px;
        border: none;
        background: #ffffff;
        color: #333;
    }
    
    .support-search-button {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #666;
        cursor: pointer;
    }
    
    .support-popular {
        margin-bottom: 60px;
    }
    
    .support-subheading {
        font-size: 24px;
        margin-bottom: 24px;
        text-align: center;
        color: #ffffff;
    }
    
    .support-popular-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .support-popular-item {
        text-align: center;
        padding: 20px;
    }
    
    .support-popular-item p {
        margin: 0;
        color: #ffffff;
        line-height: 1.5;
    }
    
    .support-popular-item p:first-child {
        margin-bottom: 8px;
    }
    
    .support-faq {
        margin-bottom: 60px;
        max-width: 800px;
        margin: 0 auto 60px;
    }
    
    .support-faq-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .support-faq-item {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .support-faq-button {
        width: 100%;
        padding: 16px;
        text-align: left;
        background: none;
        border: none;
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .support-faq-icon {
        flex-shrink: 0;
        margin-left: 16px;
    }
    
    .support-contact {
        text-align: center;
    }
    

    

       /* ----------------     CONTACT FORM STYLES   ----------------- */
    .contact-form-section {
        padding: 4rem 2rem;
    }

    /* .contact-form-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        color: white;
    } */

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 1rem;
        border-radius: 5px;
        border: 1px solid #767676;
        background-color: #fff;
        width: 100%;
        font-family: "Raleway", sans-serif;
    }

    .question-type {
        margin-top: 2rem;
    }

    .question-type h3 {
        color: #fff;
        margin-bottom: 1rem;
    }

    .contact-form .btn-classic {
        
        padding: 1rem 2rem;
        
        border-radius: 4px;
        
        
    }


    .custom-select {
        position: relative;
        width: 100%;
    }

    .select-header {
        background-color: #020202;
        padding: 1rem;
        border-radius: 10px;
        border: 1px solid #767676;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-icon {
        border: solid #767676;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        transition: transform 0.3s;
    }

    .custom-select.open .dropdown-icon {
        transform: rotate(-135deg);
    }

    .options-list {
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        background-color: #020202;
        border: 1px solid #767676;
        border-radius: 4px;
        margin-top: 0.5rem;
        display: none;
        z-index: 1000;
        max-height: 300px;
        overflow-y: auto;
      }

    .custom-select.open .options-list {
        display: block;
    }

    .option {
        padding: 1rem;
        cursor: pointer;
        border-bottom: 1px solid #767676;
    }

    .option:last-child {
        border-bottom: none;
    }

    .option:hover {
        background-color: #020202;
    }

    .option h4 {
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .option p {
        color: #767676;
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* ----------------     GET IN TOUCH STYLES   ----------------- */

    .get-in-touch {
        padding: 4rem 2rem;
        background-color: #020202;
    }

    .get-in-touch h2 {
        text-align: center;
        color: #fff;
        margin-bottom: 3rem;
    }

    .contact-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .contact-card {
        text-align: center;
        padding: 2rem;
        color: #fff;
    }

    .contact-card i {
        display: block;
        width: 48px;
        height: 48px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        font-size:2em
    }

    .contact-card h3 {
        margin-bottom: 0.5rem;
    }

    .contact-card p {
        color: #fff;
    }


/* 404 page styles */
.error-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    height: 60vh;
}

.error-code {
    font-size: 5rem;
    color: var(--pyralume-red);
    font-weight: bold;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 2rem;
}

.description {
    font-size: 1rem;
    margin: 15px 0;
    color:#999999;
}

/* scrollbar */

::-webkit-scrollbar {
    width: 2px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--pyralume-red); 
    border-radius: 10px;
  }
  






    