<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@import url("/Fonts/Poppin.css");
@import url("/Fonts/SofiaSansCondensed.css");
@import url('layout.css');

:root {
    --color-dark: #171717;
    --color-aqua: #35B9E0;
    --text-white: white;
    --color-secondary: #1E1D1E;
    --color-accent: #FF6262E5;
    --color-light: #858585;
    --color-dark-gray: #1F1F1F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-dark);
}

button,
input {
    font-family: "Poppins", sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 10px 60px;
}


.rc-logo,
.rc-logo-text {
    display: flex;
    align-items: center;
    color: var(--text-white);
    gap: 16px;
}

    .rc-logo img {
        width: 40px;
        margin-right: 10px;
    }

.social-connection {
    color: #FFFFFF;
    opacity: 0.5;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

    .nav-links li {
        margin: 0 10px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--color-light);
        font-size: 16px;
        padding: 5px 10px;
        position: relative;
    }

        .nav-links a.active {
            color: var(--text-white);
        }

            .nav-links a.active::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -5px;
                width: 100%;
                height: 3px;
                background-color: var(--color-aqua);
            }

    .nav-links.active {
        display: flex !important;
    }

.login-btn {
    background-color: var(--text-white);
    padding: 8px 8px;
    border-radius: 8px;
    max-width: 140px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

    .login-btn a {
        color: var(--color-dark);
    }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle div {
        width: 30px;
        height: 3px;
        background-color: var(--text-white);
        margin: 3px 0;
    }

/* -------------------------------------------------------------------------------------------- */
.main-container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    background: var(--color-aqua);
    color: var(--text-white);
    padding: 60px;
}



.text-container h2 {
    font-size: 50px;
    font-weight: 100;
    font-family: Sofia Sans Condensed;
}

    .text-container h2 span {
        font-style: italic;
        font-weight: 600;
    }

.text-container p {
    font-size: 16px;
    margin: 2px 0 25px
}

.download-btn {
    display: inline-block;
    background: var(--text-white);
    color: var(--color-aqua);
    padding: 12px 20px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(2, 1fr); */
    gap: 10px;
    /* flex: 1; */
}

    .image-container img {
        width: 100%;
    }

/* .rc-logo-container {
                     display: grid;
                    place-content: center;
                     width: 80px;
                    height: 80px;
                    grid-column: 2 / 3;
                    grid-row: 2 / 3;
                } */

.rc-logo-container img {
    width: 50px;
}

.abs-rc-logo {
    position: absolute;
    top: 38%;
    right: 25%;
    width: 50% !important;
}

/* --------------------------------------------------------------- */
.section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-secondary);
    color: var(--text-white);
    padding: 0 60px;
}

.text-content {
    max-width: 65%;
}

    .text-content h2 {
        font-size: 40px;
        font-weight: 400;
        font-family: Sofia Sans Condensed;
    }

        .text-content h2 span {
            color: var(--color-aqua);
            font-weight: 500;
        }

    .text-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 10px;
    }

.about-image-container {
    max-width: 40%;
}

    .about-image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

/* ----------------------------------------------------- */
.solutions-section,
.features-section,
.neighborhood-section,
.community-section,
.contact-section,
.footer-section,
.blog-section {
    padding: 30px 60px;
    text-align: left;
}

    .solutions-section h3,
    .features-section h3,
    .neighborhood-section h3,
    .community-section h3,
    .contact-section h3 {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-white);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .solutions-section h2,
    .features-section h2,
    .neighborhood-section h2,
    .community-section h2,
    .download-section h2,
    .contact-section h2 {
        font-size: 40px;
        font-weight: 400;
        font-family: Sofia Sans Condensed;
        color: var(--text-white);
    }

        .solutions-section h2 span,
        .features-section h2 span,
        .neighborhood-section h2 span {
            color: #35B9E0;
            font-weight: 400;
        }

.solutions-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    /* justify-content: space-between; */
    margin-top: 10px;
    gap: 20px;
    scrollbar-width: none;
}

    /* For WebKit Browsers (Chrome, Safari) */
    .solutions-container::-webkit-scrollbar {
        display: none;
    }

.solution-card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-aqua);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.solution-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    text-decoration: none;
    transition:0.3s
}

    .solution-title:hover {
        color: var(--color-aqua);
    }

.solution-description {
    font-size: 14px;
    margin-top: 10px;
    color: #b3b3b3;
}

.features-container {
    align-items: center;
}

.features-container,
.neighborhood-container,
.community-container {
    display: flex;
    width: 100%;
    gap: 8%;
}

.features-title,
.neighborhood-title,
.community-title,
.contact-title {
    font-family: 'Poppins';
    font-size: 20px;
    color: var(--text-white);
    margin-top: 10px;
}

.features-img img, .features-img {
    width: 100%;
}

.neighborhood-img img {
    width: 100%;
    height: 100%;
}

.neighborhood-img img {
    max-width: 500px;
}

.width-50,
.community-width-50 {
    width: 100%;
}

.neighborhood-container {
    align-items: center;
}

.neighborhood-width-50 {
    width: 100%;
    max-width: 60%;
}

.features-list,
.walkie-talkie-features-list,
.neighborhood-list,
.community-list,
.contact-list {
    margin-left: 50px;
    margin-top: 10px;
}

    .features-list li,
    .walkie-talkie-features-list li,
    .neighborhood-list li,
    .community-list li,
    .contact-list {
        color: var(--text-white);
        padding: 7px;
    }

        .features-list li::marker,
        .walkie-talkie-features-list li::marker,
        .neighborhood-list li::marker,
        .community-list li::marker,
        .contact-list li::marker {
            color: var(--color-aqua);
        }

        .neighborhood-list li span {
            color: var(--color-aqua);
        }

.community-description {
    color: var(--text-white);
}

.community-img,
.community-img img {
    width: 100%;
}

.walkie-talkie-features-text {
    font-size: 20px;
    color: var(--color-aqua);
    text-decoration: underline;
    margin-top: 10px;
}

.swap-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sos-container {
    display: flex;
    align-items: center;
}

.swap-section {
    padding: 60px;
}

.sos-section {
    padding: 30px;
}

.swap-img {
    width: 100%;
    max-width: 580px;
}

    .swap-img img {
        width: 100%;
        max-width: 450px;
    }

.swap-heading,
.sos-heading {
    color: var(--text-white);
    font-size: 40px;
    font-weight: 300;
    font-family: Sofia Sans Condensed;
    margin-top: 10px;
}

    .swap-heading span {
        color: var(--color-aqua);
    }

.swap-title,
.sos-title {
    font-size: 17px;
    color: var(--text-white);
    margin-top: 10px;
}

.swap-list,
.sos-list {
    color: var(--text-white);
    margin-left: 50px;
    margin-top: 10px;
}

    .swap-list li,
    .sos-list li {
        padding: 7px;
    }

        .swap-list li::marker {
            color: var(--color-aqua);
        }

.sos-heading span {
    color: var(--color-accent);
}

.sos-list li::marker {
    color: var(--color-accent);
}

.sos-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sos-list li span {
    color: var(--color-accent);
}

.sos-img,
.sos-img img {
    width: 100%;
}

.youtube-section {
    padding: 30px 60px;
    background-color: var(--color-dark-gray);
}

.youtube-container h2 {
    text-align: center;
    color: var(--text-white);
    font-size: 40px;
    font-family: Sofia Sans Condensed;
    font-weight: 500;
}

.youtube-container span {
    color: var(--color-aqua);
}

.youtube-video-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px dashed #444;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    margin-top: 20px;
}

.youtube-img img {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.download-section {
    background-color: var(--color-aqua);
    padding: 60px 30px;
    text-align: center;
    position: relative;
}

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


.download-section p {
    color: rgb(255 255 255 / 92%);
    max-width: 1000px;
    margin: 10px auto 30px;
    font-weight: 400;
    font-family: Poppins;
    font-size: 21px;
    line-height: 100%;
    text-align: center;
}

.buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-play-btn,
.apple-play-btn {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 7px;
    text-decoration: none;
    transition: transform 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

    .google-play-btn:active,
    .apple-play-btn:active {
        transform: scale(0.97);
    }

.play-icon,
.appstore-icon {
    width: 35px;
    height: 43px;
    margin-right: 8px;
}

.text-container-download-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.get-it-on {
    width: 65px;
    margin-bottom: 3px;
}

.download-on {
    width: 130px;
    margin-left: 5px;
}

.google-play-text,
.apple-play-text {
    height: 30px;
    margin-top: 5px;
}

.brand-icon {
    position: absolute;
    bottom: 20px;
    right: 70px;
    width: 80px;
    height: auto;
}

.contact-form {
    background-color: var(--color-dark-gray);
    padding: 30px;
    border-radius: 10px;
    width: 45%;
    color: var(--text-white);
}

.contact-info {
    width: 55%;
}

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

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
    gap: 20px;
}

    .form-group label {
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        background-color: #272627;
        color: var(--text-white);
        border: 1px solid #272627;
        padding: 15px;
        border-radius: 5px;
        width: 100%;
        font-size: 14px;
        margin-top: 5px;
    }

        .form-group input:focus:focus-visible,
        .form-group textarea:focus:focus-visible {
            outline-offset: -100px;
        }

    .form-group textarea {
        height: 100px;
        resize: none;
    }



.submit-btn {
    background-color: var(--color-aqua);
    color: var(--text-white);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
}

.contact-container {
    display: flex;
    width: 100%;
    gap: 20px;
}

.contact-details p {
    color: var(--text-white);
}

.form-input-handler {
    width: 100%;
}

.contact-icons {
    margin-top: 30px;
}

    .contact-icons p {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-top: 10px;
    }

.form-submit {
    display: flex;
    justify-content: end;
}

/* From Uiverse.io by vishnupprajapat */
.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

    .checkbox-wrapper-46 .cbx span {
        display: inline-block;
        vertical-align: middle;
        transform: translate3d(0, 0, 0);
    }

        .checkbox-wrapper-46 .cbx span:first-child {
            position: relative;
            width: 18px;
            height: 18px;
            border-radius: 3px;
            transform: scale(1);
            vertical-align: middle;
            border: 1px solid #9098a9;
            transition: all 0.2s ease;
        }

            .checkbox-wrapper-46 .cbx span:first-child svg {
                position: absolute;
                top: 3px;
                left: 2px;
                fill: none;
                stroke: var(--text-white);
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 16px;
                stroke-dashoffset: 16px;
                transition: all 0.3s ease;
                transition-delay: 0.1s;
                transform: translate3d(0, 0, 0);
            }

            .checkbox-wrapper-46 .cbx span:first-child:before {
                content: "";
                width: 100%;
                height: 100%;
                background: var(--color-aqua);
                display: block;
                transform: scale(0);
                opacity: 1;
                border-radius: 50%;
            }

        .checkbox-wrapper-46 .cbx span:last-child {
            padding-left: 8px;
        }

    .checkbox-wrapper-46 .cbx:hover span:first-child {
        border-color: var(--color-aqua);
    }

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
    background: var(--color-aqua);
    border-color: var(--color-aqua);
    animation: wave-46 0.4s ease;
}

    .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
        stroke-dashoffset: 0;
    }

    .checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
        transform: scale(3.5);
        opacity: 0;
        transition: all 0.6s ease;
    }

.checkbox-wrapper-46 a {
    color: var(--color-aqua);
}

@keyframes wave-46 {
    50% {
        transform: scale(0.9);
    }
}

.contact-list {
    display: none;
}

.join-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 70px;
}

.join-container {
    background-color: var(--color-aqua);
    color: var(--text-white);
    text-align: center;
    padding: 86px;
    border-radius: 15px;
    width: 100%;
}

.join-text {
    font-size: 40px;
    margin: 0;
}

.join-title {
    font-size: 20px;
    margin: 10px 0 20px;
    opacity: 0.7;
}

.join-input {
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .join-input input {
        caret-color: var(--text-white);
        color: var(--text-white);
        border: 1px solid var(--text-white);
        border-radius: 8px;
        padding: 13px;
        width: 25%;
        background-color: transparent;
    }

        .join-input input:focus-visible {
            outline-offset: -100px;
        }

        .join-input input:focus {
            outline-offset: -100px;
        }

        .join-input input::placeholder {
            color: var(--text-white);
        }

.join-btn button {
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 13px;
    color: var(--color-aqua);
    cursor: pointer;
}

.footer-section {
    padding: 30px 60px;
    background-color: var(--color-dark-gray);
}

.footer-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

    .footer-icons a :hover {
        opacity: 0.7;
    }

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
    font-size: 15px;
    color: var(--color-light);
}

    .footer-links a {
        color: var(--text-white);
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.rc-2025 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 12px;
    font-size: 15px;
}

    .rc-2025 a {
        color: var(--text-white);
        text-decoration: none;
    }

    .rc-2025 p {
        color: var(--color-light);
    }

.progress-wrap {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15); /* subtle white border */
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms linear;
    transform: translateY(15px);
    background-color: rgba(255, 255, 255, 0.05); /* soft background for dark theme */
    backdrop-filter: blur(4px); /* elegant blur effect */
}

    .progress-wrap::after {
        position: absolute;
        content: "\f062"; /* up arrow */
        font-family: "FontAwesome";
        text-align: center;
        line-height: 35px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9); /* soft white */
        left: 0;
        top: 0;
        height: 35px;
        width: 35px;
        cursor: pointer;
        display: block;
        z-index: 1;
        transition: all 200ms linear;
    }

    .progress-wrap svg path {
        stroke: rgba(255, 255, 255, 1); /* subtle progress stroke */
        fill: none;
        stroke-width: 2;
    }

    .progress-wrap.active-progress {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.arrow-icon {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    background-color: transparent;
    padding: 7px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    /* Progress border */
    .arrow-icon::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 50%;
        background: conic-gradient(#35B9E0 var(--progress), #fff var(--progress));
        mask: radial-gradient(circle, transparent 55%, #fff 56%);
        -webkit-mask: radial-gradient(circle, transparent 55%, #fff 56%);
    }

    .arrow-icon svg {
        /*stroke: var(--color-aqua);*/
        stroke: var(--text-white);
        stroke-width: 3px;
    }

@media screen and (max-width:1200px) {
    .neighborhood-width-50 {
        max-width: 100%;
    }

    .features-container,
    .neighborhood-container,
    .community-container,
    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .features-section,
    .neighborhood-section,
    .community-section,
    .contact-section,
    .footer-section {
        padding: 30px;
        margin-left: 0px;
    }

    .join-section {
        padding: 0px;
        margin-left: 0px;
    }

    .features-list,
    .walkie-talkie-features-list,
    .neighborhood-list,
    .community-list,
    .contact-list {
        margin-left: 15px;
    }

    .neighborhood-title,
    .community-title,
    .contact-title {
        font-size: 15px;
        line-height: 22px;
    }

    .neighborhood-img img,
    .community-img img {
        width: 100%;
        height: 100%;
        margin-top: 15px;
    }

    .community-left h2 {
        font-size: 20px;
    }

    .contact-form {
        width: 100%;
        margin-top: 10px;
    }

    .contact-info {
        width: 100%;
    }

    .submit-btn {
        margin-top: 10px;
    }

    .contact-icons {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .footer-icons a img {
        width: 80%;
    }

    .footer-links a {
        font-size: 12px;
    }

    .checkbox-wrapper-46 .cbx {
        font-size: 12px;
    }

    .contact-form {
        padding: 15px;
    }

    .main-container {
        display: flex;
        flex-direction: column;
        text-align: left;
        padding: 30px;
    }

    .text-container h2,
    .features-section h2,
    .solutions-section h2,
    .section-container h2,
    .neighborhood-section h2,
    .contact-section h2 {
        font-size: 26px;
    }

    .download-btn {
        max-width: 100%;
    }

    .rc-logo-text {
        flex-direction: column;
        align-items: start !important;
        gap: 0 !important;
    }

        .rc-logo-text svg {
            width: 70px;
        }

    .social-connection {
        font-size: 14px;
    }

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

    .section-container {
        flex-direction: column;
        text-align: left;
        padding: 30px;
    }

    .text-content,
    .about-image-container {
        max-width: 100%;
    }

        .about-image-container img {
            max-width: 300px;
            margin: 0 auto;
        }

    .solutions-container {
        align-items: center;
    }

    .solutions-section,
    .youtube-section {
        padding: 30px;
    }

    .solution-card {
        width: 100%;
    }

    .youtube-container h2 {
        color: var(--text-white);
        font-size: 26px;
        font-family: Sofia Sans Condensed;
    }

    .youtube-img img {
        max-width: 150px;
    }

    .youtube-video-upload {
        min-height: 350px;
    }

    .brand-icon {
        display: none;
    }

    .download-section h2 {
        font-size: 26px;
    }

    .buttons-row {
        flex-direction: column;
        gap: 15px;
    }

    .brand-icon {
        width: 60px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .contact-list {
        display: block;
    }

    .join-container {
        background-color: var(--color-aqua);
        color: var(--text-white);
        text-align: center;
        padding: 20px;
        width: 100%;
        border-radius: 0px;
    }

    .join-text {
        font-size: 26px;
        margin: 0;
    }

    .join-title {
        font-size: 14px;
        margin: 10px 0 20px;
    }

    .join-input {
        display: grid;
        grid-template-columns: 70% 30%;
        gap: 15px;
    }

        .join-input input {
            border: 1px solid #FFFFFF;
            border-radius: 8px;
            padding: 13px;
            width: 100%;
            background-color: transparent;
        }

    .arrow-icon {
        position: fixed;
        right: 10px;
        bottom: 30px;
        z-index: 999;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        margin-top: 16px;
        font-size: 14px;
        color: var(--color-light);
    }
}

@media screen and (max-width:1100px) {
    .swap-section, .sos-section {
        padding: 30px;
    }

    .swap-container,
    .sos-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .swap-list,
    .sos-list {
        margin-left: 15px;
    }

    .swap-heading,
    .sos-heading {
        font-size: 26px;
    }

    .swap-text img,
    .sos-text img {
        height: 43px;
        width: 76px;
    }

    .swap-img img,
    .sos-img img {
        margin-top: 10px;
        max-width: 100%;
    }

    .swap-title,
    .sos-title {
        font-size: 16px;
    }

    .swap-list li,
    .sos-list li {
        font-size: 15px;
        padding: 7px;
    }
}

@media screen and (max-width:1250px) {
    .navbar {
        padding-inline: 18px;
    }



    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 79px;
        left: 0;
        width: 100%;
        background-color: black;
        text-align: center;
        /*padding: 52% 0;*/
        z-index: 1000;
    }



        .nav-links li {
            margin: 15px 0;
        }

        .nav-links a {
            color: white;
            font-size: 18px;
            display: block;
            padding: 10px;
        }

    .login-btn {
        width: 40%;
    }

        .login-btn a {
            color: var(--color-dark);
        }

    .menu-toggle {
        display: flex !important;
    }
}

.error {
    border-color: red !important;
    box-shadow: 0 0 0 1px transparent !important;
}

.loader {
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    border-bottom-color: #cecece;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 0.5s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.disabled-btn {
    opacity: 0.7;
    cursor: not-allowed !important;
}

:root {
    --primary-color: #ee7d08;
    --primary-light: #ffefd9;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

.blog-container h3{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-container h2 {
    font-size: 40px;
    font-weight: 400;
    font-family: Sofia Sans Condensed;
    color: var(--text-white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    margin-bottom:30px;
    margin-top:30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .blog-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.blog-image {
    height: 200px;
    overflow: hidden;
}
.page-title{
    color:white;
    text-align:center;
    font-size:30px;
    font-weight:600;
}
.page-description {
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
     background:black;
}

.blog-category {
    display: inline-block;
    background-color: #0086ae;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: white;
}

.blog-excerpt {
    color:white;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-date {
    display: flex;
    align-items: center;
}

    .blog-date svg {
        margin-right: 0.35rem;
    }

.read-more {
    display: inline-block;
    background-color: #35B9E0;
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

    .read-more:hover {
        background-color: #35B9E0;
    }

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0.25rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .pagination-item.active {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .pagination-item:not(.active):hover {
        background-color: var(--primary-light);
    }

footer {
    background-color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
    }

        .nav-links a {
            margin: 0 0.75rem;
        }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 30px;
    }
    .page-description{
        font-size:19px;
    }
    .page-title{
        font-size:25px;
    }
}

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

</pre></body></html>