/* Style for the top right text */
.top-right-text {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

/* ========== COLOR PALETTE ========== */
:root {
    --primary-color: #2b6cb0;
    --secondary-color: #1a4971;
    --accent-color: #68d391;
    --text-dark: #1a202c;
    --text-light: #f7fafc;
    --background-dark: #1a202c;
    --background-light: #edf2f7;
    --gradient-start: #e2e8f0;
    --gradient-end: #f7fafc;
}

/* ========== BASE STYLES ========== */
body {
    overflow-x: hidden;
    /* Prevent horizontal overflow */
    box-sizing: border-box;
    /* Ensure padding/margins are included in width */
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Ensure all elements respect box-sizing */
*,
*:before,
*:after {
    box-sizing: inherit;
}

/* ========== LOGO STYLES ========== */
.navbar-logo {
    position: relative;
    top: 50%;
    left: 0;
    height: 32px;
    display: flex;
    filter: brightness(0) saturate(100%) hue-rotate(0deg);
    align-items: center;
}

.navbar-logo img {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) hue-rotate(0deg);
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.logo1 {
    height: 32px;
    position: fixed;
    top: 14px;
    left: 24px;
    display: none;
    z-index: 102;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) hue-rotate(0deg);
}

.logo1:hover {
    transform: scale(1.05);
}

/* ========== NAVBAR ========== */
#navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Light bottom border */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    /* Simple bottom shadow */
    height: 60px;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#navbar:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#navbar ul {
    list-style: none;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    gap: 16px;
}

#navbar li {
    flex: none;
}

.company-name{
color: #ffffff;
    margin-bottom: -18px;
}

#navbar a {
    text-decoration: none;
    color: #181818;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 16px;
    line-height: 64px;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 6px;
}

#navbar a:hover {
    color: rgb(71, 160, 233);
    background-color: rgba(255, 255, 255, 0.05);
}

#navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 12px;
    left: 50%;
}

#navbar a:hover::after {
    width: 50%;
    left: 25%;
}

/* ========== HAMBURGER MENU ========== */
#hamburger {
    display: none;
    position: absolute;
    top: 20px;
    right: 24px;
    width: 28px;
    height: 20px;
    z-index: 1000;
    cursor: pointer;
}

#hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #181818;
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

#hamburger:hover span {
    background-color:rgb(71, 160, 233);
}

#hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color:rgb(71, 160, 233);
}

#hamburger.open span:nth-child(2) {
    opacity: 0;
}

#hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color:rgb(71, 160, 233);
}

/* Update your first-page styles with this */
/* First Page Section */
#first-page {
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Press and Media Container */
.press-media-container {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

.press-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.press-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Grid Layout for Press Items */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

/* Individual Press Item */
.press-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.press-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e0e0e0; /* Light gray background for the circle */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.press-icon img {
    width: 60px;
    height: 60px;
    filter: grayscale(100%); /* Grayscale effect to match the image */
}

.press-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.download-button {
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 20px;
    background-color: transparent;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.download-button:hover {
    background-color: #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== FOURTH PAGE (CONTACT FORM) RESPONSIVE ========== */
#fourth-page {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.contact-form-container {
    width: 108.26vw;
    max-width: 1500px;
    height: auto;
    /* Changed from fixed height */
    min-height: 64vh;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.follow-text {
    font-size: 1rem;
    /* Maintain your exact size */
    color: #666;
    margin-bottom: 8px;
}

.form-title {
    font-size: 48.15px;
    /* Maintain your exact size */
    font-weight: 600;
    color: #181818;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 27.52px;
    /* Maintain your exact size */
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.form-group {
    flex: 1;
    min-width: 300px;
    /* Adjusted for responsiveness */
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 24.76px;
    /* Maintain your exact size */
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    height: 60px;
    /* Maintain your exact size */
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    /* Maintain your exact size */
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    width: 100%;
}

.recaptcha-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 3px;
    width: fit-content;
    margin: 0 auto;
    /* Centered */
    font-family: 'Inter', sans-serif;
}

.submit-button {
    height: auto;
    /* More flexible */
    width: auto;
    /* More flexible */
    min-width: 14.47vw;
    /* Maintain your ratio */
    padding: 14px 24px;
    background-color: #EAE9E9;
    color: #000000;
    border: none;
    border-radius: 46px;
    font-size: 1rem;
    /* Maintain your exact size */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto 0;
    /* Centered */
    display: block;
}

/* Responsive adjustments (only layout, no font-size changes) */
@media (max-width: 1400px) {
    .contact-form-container {
        width: 95vw;
    }
}

@media (max-width: 1200px) {
    .contact-form-container {
        width: 100%;
        padding: 40px 30px;
    }

    .form-group {
        min-width: 250px;
    }
}

@media (max-width: 992px) {
    #fourth-page {
        padding: 60px 20px;
    }

    .contact-form-container {
        padding: 40px;
    }

    .form-row {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px;
    }

    .form-group {
        min-width: 100%;
    }

    .recaptcha-container {
        width: 100%;
        align-items: center;
    }

    .submit-button {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    #fourth-page {
        padding: 40px 15px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .form-header {
        margin-bottom: 30px;
    }

    .form-title,
    .form-subtitle {
        text-align: center;
    }
}

/* ========== SIXTH PAGE (FOOTER) ========== */
#sixth-page {
    width: 100%;
    color: var(--text-light);
    background-color: #181818;
    padding: 64px 24px 32px;
    box-sizing: border-box;
    position: relative;
}

#footer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
    min-width: 240px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link:hover img {
    filter: brightness(1);
}

.link-group {
    flex: 1;
    min-width: 160px;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color:rgb(71, 160, 233);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1670px) {
    #main-title {
        font-size: 3rem;

        left: 15px;
        right: auto;
    }

    #subtitle {
        font-size: 1rem;
        right: 15px;
        left: auto;
        max-width: 300px;
    }


}


/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1180px) {
    #main-title {
        font-size: 3rem;
    }

    #subtitle {
        font-size: 1rem;
        max-width: 300px;
    }

    #electron-video {
        max-width: 600px;
    }

    #first-page {
        padding: 70px 15px 15px;
    }

    #electron-video {
        width: 155%;
        margin-top: -89px;
        max-width: 1254px;
        height: 100vh;
        display: block;
        z-index: 10;
        padding-right: 6vh;
    }

    .slider-container {
        position: static;
        height: 110%;
        width: 100%;
        /* margin: -34px auto; */
        margin-top: 34px;
        overflow: hidden;
    }

    #second-page {
        position: relative;
        padding-top: 80px;
        height: 72vh;
    }

    .slider-controls {
        display: flex;
        gap: 20px;
        padding-top: 3vh;
    }

    #third-page {
        height: auto;
    }

    #fourth-page {
        height: auto;
    }

    #sixth-page {
        padding: 48px 16px 24px;
    }

    .footer-top {
        gap: 32px;
    }

    .footer-brand {
        min-width: 200px;
    }

    .footer-tagline {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .social-link img {
        width: 22px;
        height: 22px;
    }

    .footer-links {
        gap: 32px;
    }

    .link-group {
        min-width: 140px;
    }

    .link-title {
        font-size: 0.95rem;
    }

    .link-group a {
        font-size: 0.85rem;
    }

    #navbar ul {
        gap: 8px;
    }

    #navbar a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .slide {
        flex: 0 0 33.33%;
    }

    #main-title {
        font-size: 3rem;

        left: 15px;
        right: auto;
    }

    #subtitle {
        font-size: 1rem;
        right: 15px;
        left: auto;
        width: 161px;
    }

    #dots-container {
        bottom: 20px;
    }

    .dots-container {
        display: none;
    }

    .dots-container1 {
        display: none;
    }

    .matter-content {
        position: relative;
        width: 112%;
        height: 100px;
        max-width: 90%;
        /* margin-bottom: -135px; */
        top: 3%;
    }

}

@media (max-width: 768px) {

    .slider-controls-container {
        width: 96%;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;
    }


    #main-title {
        font-size: 2.5rem;
    }

    #subtitle {
        font-size: 0.9rem;
        max-width: 250px;
    }

    #electron-video {
        max-width: 135%;
        /* Full width on smaller screens */
        margin-top: 23vh;

    }

    .section-header1 h2 {
        font-size: 35px;
        font-weight: bold;
    }

    #first-page {
        padding: 60px 10px 10px;
    }

    #sixth-page {
        padding: 40px 12px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .slider-container1 {
        position: static;
        /* margin: 0 auto; */
        top: 12px;
        padding-top: 2vh;
    }

    .footer-brand {
        min-width: 100%;
    }

    .footer-tagline {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .link-group {
        min-width: 100%;
        text-align: center;
    }

    .link-title {
        font-size: 0.9rem;
    }

    .link-group a {
        font-size: 0.8rem;
    }

    .social-link img {
        width: 20px;
        height: 20px;
    }

    /* Updated navbar styles to ensure logo is above */
    #navbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: auto;
        background-color: white;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* Light bottom border */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        /* Simple bottom shadow */
        border-bottom: none;
        box-shadow: none;
        padding-top: 60px;
        z-index: 99;
    }

    .navbar-logo {
        display: none;
    }

    .logo1 {
        display: block;
        position: absolute;
        top: 14px;
        left: 24px;
        height: 32px;
        z-index: 101;
    }

    #hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 24px;
        width: 28px;
        height: 20px;
        z-index: 101;
    }

    #navbar ul {
        position: fixed;
        top: -6px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        /* Ensure base background is white */
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        z-index: 100;
        opacity: 1;
        /* Ensure full opacity */
    }

    #navbar ul.active {
        max-height: 318px;
        padding: 92px 0;
    }

    #navbar ul {
        position: absolute;
        top: 10px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #ffffff;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
    }

    #navbar ul.active {
        max-height: 474px;
        padding: 10px 0;

        background-color: white;
        /* Ensure solid white background when active */
        opacity: 1;
        /* Reinforce full opacity when active */
    }

    #navbar a {
        font-size: 1rem;
        padding: 13px 1px;
        line-height: normal;
        border-bottom: none;
        margin: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #181818;
    }

    #navbar a:hover {
        color:rgb(71, 160, 233);
    }

    /* Other responsive adjustments */
    .slide {
        flex: 0 0 50%;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    #main-title {
        font-size: 3rem;

        left: 15px;
        right: auto;
    }

    #subtitle {
        font-size: 15px;
        right: 15px;
        left: auto;
        max-width: 300px;
    }

    .headingg {
        padding-left: 1vh;
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .slider-controls-container {

        margin-top: -4%;
    }


    #main-title {
        font-size: 2rem;
    }

    #subtitle {
        font-size: 0.8rem;
        max-width: 200px;
    }

    #electron-video {
        max-width: 163%;
        padding-right: 18px;
        border-radius: 8px;
        /* Smaller radius for small screens */
    }
}

@media (max-width: 480px) {
    .slider-controls {
        padding-bottom: 1vh;
    }

    .slider-container1 {
        position: static;
        /* margin: 0 auto; */
        top: 12px;
        padding-top: 2vh;
    }

    #main-title {
        font-size: 2rem;
        /* Adjusted for better fit */
        position: static;
        /* Remove absolute positioning */
        margin: 0;
        /* Reset margins */
        max-width: 100%;
        /* Full width of container */
    }

    #subtitle {
        font-size: 16px;
        /* Adjusted for better fit */
        position: static;
        /* Remove absolute positioning */
        margin-top: 5px;
        /* Space below title */
        max-width: 100%;
        /* Full width of container */
    }

    .matter-content {
        position: absolute;
        top: 77px;
        /* Position at the top */
        left: 50%;
        /* Center horizontally */
        transform: translateX(-50%);
        /* Offset by half its width */
        width: 90%;
        /* Responsive width */
        max-width: 400px;
        /* Prevent it from getting too wide */
        height: auto;
        /* Allow height to adjust */
        display: flex;
        flex-direction: column;
        /* Stack title and subtitle */
        align-items: center;
        /* Center content horizontally */
        text-align: center;
        /* Center text */
    }

    #first-page {
        padding: 50px 5px 5px;
        height: auto;
    }

    .devices-title {
        font-size: 23px;
    }

    .slide {
        flex: 0 0 100%;
    }

    .slide img {
        height: 567px;
    }

    .prev-btn,
    .next-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    #sixth-page {
        padding: 32px 8px 16px;
    }

    .footer-top {
        gap: 16px;
    }

    .footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link img {
        width: 18px;
        height: 18px;
    }

    .footer-links {
        gap: 16px;
    }

    .link-group {
        min-width: 100%;
    }

    .link-title {
        font-size: 0.85rem;
    }

    .link-group a {
        font-size: 0.75rem;
    }

    #sixth-page {
        padding: 32px 8px 16px;
    }

    .footer-top {
        gap: 16px;
    }

    .footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link img {
        width: 18px;
        height: 18px;
    }

    .footer-links {
        gap: 16px;
    }

    .link-group {
        min-width: 100%;
    }

    .link-title {
        font-size: 0.85rem;
    }

    .link-group a {
        font-size: 0.75rem;
    }

    /* Second Page Header Styles */
    #second-page {
        position: relative;
        padding-top: 0px;
        height: 96vh;
        /* Creates space for the header */
    }

    #fourth-page {
        height: auto;
    }

}

/* Second Page Header Styles */
#second-page {
    position: relative;
    padding-top: 25px;
    /* Creates space for the header */
}

.section-header {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 20;
}

.section-header h2 {
    color: #000;
    font-size: 2.5rem;
    font-weight: bold;
    margin: -34px 0px 0px 25px;
    text-align: right;
}

.section-header1 {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 20;
}

.section-header1 h2 {
    color: #000;
    font-size: 2.5rem;
    font-weight: bold;
    margin: -34px 0px 0px 25px;
    text-align: right;
}

.buttons-container {
    display: flex;
    gap: 10px;
}

.spec-labels {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.spec-label-list {
    list-style: none;
    padding: 0;
    display: flex;
    margin-bottom: -198px;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
}

.spec-label-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    margin: 0;
    width: 100%;
    /* Ensure all list items take the same width for alignment */
}

.spec-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
    /* Prevent the icon from shrinking */
}

.spec-icon img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* Style for the label (e.g., "CPU") */
.spec-label {
    font-weight: 500;
    color: #333;
    min-width: 80px;
    /* Ensures consistent spacing between label and description */
}

/* Style for the description (e.g., "2.4 GHz hex-core CPU") */
.spec-desc {
    font-weight: 400;
    color: #666;
    /* Lighter color to distinguish from the label */
    margin-left: 141px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .spec-label-list {
        gap: 18px;
        /* Slightly smaller gap on mobile */
    }

    .spec-label-list li {
        font-size: 0.9rem;
        /* Slightly smaller font on mobile */
    }

    .spec-icon img {
        width: 20px;
        height: 20px;
        /* Adjust icon size for mobile */
    }

    .spec-label {
        min-width: 70px;
        /* Adjust spacing for smaller screens */
    }

    .spec-desc {
        margin-left: 35px;
        /* Adjust spacing for smaller screens */
    }
}

/* 
@media (max-width: 480px) {
    #main-title {
        font-size: rem;
        position: static;
        margin: 0;
        max-width: 100%;
    }

    #subtitle {
        font-size: 16px;
        margin-top: 5px;
        max-width: 100%;
    }

} */


/* ========== POPUP STYLES ========== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup.active {
    display: flex;
}

.popup-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.popup-content p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 20px 0;
}

.popup-content input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f5f5f5;
    color: #666;
    box-sizing: border-box;
}

.subscribe-button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Responsive Adjustments for Popup */
@media (max-width: 480px) {
    .popup-content {
        padding: 20px;
        max-width: 300px;
    }

    .popup-content h2 {
        font-size: 1.25rem;
    }

    .popup-content p {
        font-size: 0.9rem;
    }

    .popup-content input[type="email"] {
        padding: 10px;
        font-size: 0.9rem;
    }

    .subscribe-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* ========== POPUP STYLES ========== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup.active {
    display: flex;
}

.popup-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.popup-content p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 20px 0;
}

.popup-content input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f5f5f5;
    color: #666;
    box-sizing: border-box;
}

.subscribe-button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Responsive Adjustments for Popup */
@media (max-width: 480px) {
    .popup-content {
        padding: 20px;
        max-width: 300px;
    }

    .popup-content h2 {
        font-size: 1.25rem;
    }

    .popup-content p {
        font-size: 0.9rem;
    }

    .popup-content input[type="email"] {
        padding: 10px;
        font-size: 0.9rem;
    }

    .subscribe-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.recaptcha-icon {
  width: 9vh;
    margin-right: -9px;
  vertical-align: middle;
}

span{
    font-size: 8px;
}

.recaptcha-links {
    font-size: 8px;
}