* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --body-bg-color: #fff;
    --body-text-color: #444;
    --hover-text-color: #6ab7aa;
    --heading-text-color: #444444;
    --container-bg-color: #f8f6f6;
}

.container {
    background-color: var(--body-bg-color);
    color: var(--body-text-color);
    width: 100%;
    justify-content: center;
    align-items: center;
    /* text-transform: uppercase; */
    min-height: 100vh;
}

.nav {
    position: sticky;
    top: 0px;
    z-index: 10;
}

.nav_menu {
    display: none;
}

.menu_Email,
.menu_contact {
    position: absolute;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 10px;
    text-transform: uppercase;
}

.menu_Email {
    text-transform: lowercase;
    right: 150px;
    margin-top: 3px;
}

.menu_contact {
    right: 10px;
    margin-top: 3px;
}

.menu_link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2),
        4px 4px 10px rgba(0, 0, 0, 0.1);
    width: max-content;
}

.menu_text {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.menu_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.menu_link:hover .menu_text {
    opacity: 0;
}

.menu_link:hover .menu_icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.menu_link:hover {
    color: #ffcc00;
    transform: translateY(-2px) scale(1.05);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}




.top-nav {
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    flex-wrap: wrap;
    background-color: #4169e1;
    border-bottom: 1px solid #ccc;
    padding: 0px 0px;
    box-shadow: 0 4px 10px rgba(3, 39, 243, 0.1);
}

.top-nav .menu {
    margin-left: 1%;
    list-style-type: none;
    padding: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
}

.top-nav .menu a {
    display: block;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    align-items: center;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5), 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.top-nav .menu a:hover {
    transform: translateY(-3px);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.top-nav .menu>.menu_list>a {
    padding: 6px;
}




.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 0;
    padding: 0;
    color: #007bff;
    border-radius: 5px;
}


.menu_list {
    width: 95%;
    position: relative;
    list-style-type: none;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.menu_list>a {
    color: #007bff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu_list>a:hover {
    color: #0fc0fc;
    background-color: rgba(0, 123, 255, 0.1);
}

.menu_list>.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #007bff;
    border-radius: 0 5px 5px 5px;
    min-width: 200px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    margin: 0;
}

.menu_list>.dropdown a {
    color: white !important;
    padding: 8px 15px;
}

.menu_list>.dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.menu_list:hover>.dropdown {
    display: block;
    animation: slideIn 0.3s ease forwards;
}


.menu_list .dropdown .menu_list {
    position: relative;
}

.menu_list .dropdown .dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #0056b3;
    min-width: 150px;
    max-width: 250PX;
    border-radius: 0 5px 5px 5px;
}

.menu_list .dropdown .menu_list:hover>.dropdown {
    display: block;
    animation: slideIn 0.3s ease forwards;
}

.menu_list .dropdown .menu_list>a::after {
    content: "▶";
    float: right;
    margin-left: 8px;
    font-size: 12px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.nav_company {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    /* padding: 10px 20px; */
    background-color: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.nc_home {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--heading-text-color);
    /* flex-wrap: wrap; */
}

.nc_logo {
    width: 100%;
    max-width: 64px;
    height: auto;
    max-height: 64px;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.ncl_img {
    width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.comp_logo {
    width: 100%;
    height: auto;
    max-height: 48px;
    margin-left: -30px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comp_logo:hover {
    transform: translateY(1.5px) scale(1.05);
}

.company_p {
    /* color: #fff; */
    color: #1220e6;
    font-size: 24px;
    font-weight: bold;
    text-shadow:
        2px 2px 3px rgba(0, 0, 0, 0.4),
        4px 4px 5px rgba(0, 0, 0, 0.3),
        6px 6px 7px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 250px;
    max-width: 500px;
    margin-left: -40px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease, color 0.3s ease;
}

.company_p,
.ncn_p {
    color: #1220e6;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow:
        2px 2px 3px rgba(0, 0, 0, 0.4),
        4px 4px 5px rgba(0, 0, 0, 0.3),
        6px 6px 7px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ncn_p:hover {
    color: #ffffff;
    transform: translateY(-1.5px) scale(1.1);
    text-shadow:
        2px 2px 5px rgba(0, 0, 0, 0.7),
        4px 4px 10px rgba(0, 0, 0, 0.5),
        6px 6px 15px rgba(0, 0, 0, 0.3);
    font-size: 24px;
}

.nmul_dropdown {
    display: none;
    transition: 0.2s ease-in-out;
    list-style: none;
    width: max-content;
    position: absolute;
    overflow: hidden;
    top: 100%;
    left: 0;
    border-radius: 12px;
    padding: 0;
    background-color: var(--body-text-color);
}

.nmuld_li {
    border-top: 1px solid var(--container-bg-color);
    border-bottom: 1px solid var(--container-bg-color);
    padding: 2px 6px;
}

.nmuld_li:hover {
    background-color: var(--body-bg-color);
}

.nmuld_li:hover a {
    color: var(--body-text-color);
}

@media (min-width: 1440px) {

    .company_p,
    .ncn_p {
        font-size: 1.8rem;
    }
}

/* Laptops and standard desktops */
@media (max-width: 1439px) {

    .company_p,
    .ncn_p {
        font-size: 1.5rem;
    }
}

/* Tablets */



.footer_section {
    background-color: var(--container-bg-color);
    padding: 1.5rem;
}

.footer_upper {
    text-decoration: none;
    text-align: center;
}

.fu_columns {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 1.5rem auto;
    gap: 1rem;
}

.fucu_li {
    list-style: none;
    line-height: 1.6;
    text-transform: capitalize;

    & a {
        text-decoration: none;
        color: blue;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: bold;
    }

    &:hover {
        transition: 0.4s ease;
        transform: scale(1.02);

        & a {
            color: #0000ff;
            /* background-color: #00ffb7; */

        }
    }
}



.fucul_heading {
    line-height: 1.5;
    border-bottom: 1px solid var(--body-text-color);
    width: max-content;
    margin-bottom: 0.75rem;

}

.fucu_quote {
    align-self: center;
    word-break: keep-all;
}

.fl_up {
    align-items: center;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.flu_comp,
.flu_right {
    flex-wrap: nowrap;
}

.vertical_line {
    border-left: 1px solid var(--body-text-color);
    height: 40px;
    margin: 0 10px;
}

.fluc_logo {
    width: 64px;
    margin: 0 10px;
}

.flurls_link {
    margin: 0 0 0 1rem;
}

.flucn_span {
    font-size: 30px;
    letter-spacing: 1.25px;
    text-transform: capitalize;
    word-spacing: 3px;
}


.fl_down {
    background: linear-gradient(145deg, #f1f1f1, #e2e2e2);
    color: #333;
    padding: 10px 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 100%;
    margin-bottom: -20px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fl_down:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 0 12px 25px rgba(0, 0, 0, 0.2);
    /* Intensify shadow */
}

/* Copywrite Section */
.fld_copywrite {
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}

/* Paragraph Styling */
.flc_para {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* Highlighted Text */
.highlight {
    color: #ff5733;
    font-weight: bold;
}

/* Footer Links */
.footer-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0056b3;
    text-decoration: underline;
}



.ch_h1 {
    color: var(--heading-text-color);
    text-align: center;
    margin: 1rem;
}

.cd_p {
    text-align: justify;
    margin: 1rem auto;
    width: 70%;
}

.contact_form {
    width: 40%;
    float: right;
}

.cf_form {
    display: flex;
    flex-direction: column;
    line-height: 1.5rem;
}

.cff_h3 {
    text-transform: capitalize;
    font-size: larger;
    text-align: center;
}

.ff_label {
    text-transform: capitalize;
    font-size: medium;
    color: #777eff;
}

.form_field {
    padding: 0.25rem 1rem;
}

.ff_input {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    width: 100%;
    min-height: 2.5rem;
    outline: none;
    resize: none;
    border: 1px solid #008000;
}

.cf_submit_button {
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    text-transform: capitalize;
    margin: 0.5rem 1rem 1rem;
    margin: 0.5rem;
    border-radius: 12px;
    color: #ffffff;
    border: none;
    font-weight: 600;
    background: linear-gradient(to bottom, #4a90e2, #357ABD);
    /* base color */
    box-shadow: 0 6px #2c6cb0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cf_submit_button:hover {
    background: linear-gradient(to bottom, #34c759, #28a745);
    /* distinct green */
    transform: translateY(-2px) scale(1.05);
    color: #ffffff;
}

.cf_submit_button:active {
    transform: translateY(2px);
    box-shadow: 0 3px #1e7e34;
}


.mc_content {
    display: flex;
    justify-content: center;
}

.contact_image {
    display: flex;
    align-items: center;
    width: 50%;
    overflow: hidden;
}

.ci_img {
    aspect-ratio: 0;
    border-radius: 1rem;
}

.as_boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
}

.asb_box {
    width: 20%;
    min-width: 180px;
    border: 1px solid var(--heading-text-color);
    padding: 1rem 0.75rem;
    min-height: 32vh;
    border-radius: 0.75rem;
    box-shadow: 4px 4px 4px var(--body-text-color);
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--container-bg-color);
}

.asbb_projectLink {
    text-decoration: none;
    color: #18b457;
    position: absolute;
    bottom: 1rem;
    right: 0.75rem;
    padding: 2px 4px;
    border-radius: 0.5rem;
    background-color: var(--body-bg-color);

    &:hover {
        color: #006026;
        border: 1px solid var(--body-text-color);
    }
}

.cdp_box {
    width: 80%;
    border: 1px solid var(--container-bg-color);
    padding: 0.75rem 1rem;
    text-align: center;
    text-align: justify;
    background-color: var(--container-bg-color);
    margin: 1rem auto;
    border-radius: 2rem;
    box-shadow: 2px 2px 2px var(--body-text-color);

    &:hover {
        transform: scale(1.05);
        transition: 0.4s ease-out;
    }
}

.gs_content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gsc_p {
    text-align: center;
}

.gscso_li {
    display: flex;
    justify-content: center;
    margin: 1rem auto;
    width: 80%;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 2rem;
}

.gscsol_left {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    width: 50%;
    min-width: 19rem;
    overflow: hidden;
}

.resources_container {
    width: 100%;
}

.rc_ul {
    gap: 2rem;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
    flex-wrap: wrap;
}

.rcu_li {
    list-style: none;
    line-height: 2rem;
    width: 21%;
}

.blog-card {
    text-align: center;
    margin: 10px auto;
    padding: 10px;
    /* slightly more padding helps */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    min-width: 250px;
    max-width: 300px;
    min-height: 200px;
    max-height: 250px;
    box-sizing: border-box;
    overflow: hidden;
}

.blog_img {
    max-width: 100%;
    height: 60%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.tile-heading-primary {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.tile-description-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}


.btn_blog_page_link {
    display: inline-block;
    padding: 2px 2px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    margin-top: 2px;
    white-space: nowrap;
}

.btn_page_link:hover {
    background-color: #90ee90;
    color: #000000;
}

.btn_page_link a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.banner {
    margin-top: -50px;
    position: relative;
}

.bi_banner {
    display: none;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    text-align: center;
    transition: opacity 1s ease-in-out;
}

.bi_banner.active {
    display: block;
    animation: fade 1s;
    position: relative;
    z-index: 1;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.bi_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.banner_head {
    font-size: 24px;
    margin-bottom: 10px;
}

.banner_p {
    font-size: 16px;
    line-height: 1.5;
}

.nav_arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 4;
}

.nav_arrows span {
    cursor: pointer;
    font-size: 30px;
    color: white;
    user-select: none;
}

.progress_bar {
    height: 5px;
    background: rgba(219, 15, 15, 0.3);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
}

.progress_fill {
    height: 100%;
    width: 0;
    background: #007bff;
    transition: width 0.1s linear;
}

.banner_image {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bi_desc {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--container-bg-color);
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 2.5rem;
    text-align: center;
    border-radius: 1.5rem;
}



.ocs_items {
    width: 90vw;
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.ocst_item {
    width: auto;
    min-height: 16vh;
    padding: 2rem;
    border-radius: 1rem;
    line-height: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--container-bg-color);
}

.gscsolr_img {
    max-height: 40vh;
    box-shadow: 2px 2px 2px 2px var(--body-text-color);
    border-radius: 1rem;
}

.bi_banner {
    width: 100%;
}


.contactUs_content {
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
}

.cu_home_button {
    display: flex;
    justify-content: center;
    margin: 1px;
}

.contactUsPage {
    content: '';
    transition: 1s ease;
    position: fixed;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    color: var(--body-bg-color);
    overflow: auto;
}

.hideContactUs {
    background: none;
    position: absolute;
    top: 1rem;
    right: 2rem;
    border: none;

    &:hover {
        transition: 0.2s ease;
        transform: scale(1.2);
    }
}

.hr {
    background-color: yellow;
}

@media screen and (max-width: 768px) {
    .flc_para {
        font-size: 12px;
        line-height: 1.6;
    }

    .fld_copywrite {
        font-size: 13px;
    }

    .footer-link {
        display: inline-block;
        margin-top: 4px;
    }
}

@media screen and (max-width: 480px) {
    .fl_down {
        padding: 12px 8px;
    }

    .flc_para br {
        display: none;
        /* Reduces line breaks on tiny screens */
    }

    .flc_para {
        font-size: 12px;
        text-align: left;
    }

    .fld_copywrite {
        text-align: left;
    }
}





/* About_us */

.section-container {
    padding: 2px 10px;
}

.section-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 1px;
}

.section-grid {
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap;
}

.media-container {
    flex: 0 0 auto;
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 150px;
    border-radius: 12px;
    margin-top: 5px;
}

.media-container img,
.media-container video {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    margin-top: 15px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.responsive-media {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.media-container:hover img {
    transform: scale(1.05);
}

.image-description {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

.media-container .overlay-details {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.media-container:hover .overlay-details {
    opacity: 1;
}

.section-content {
    flex: 1;
    padding: 2px;
    text-align: left;
}

.heading-primary {
    font-size: 2rem;
    color: #0066cc;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: -10px 10px;
}

.heading-secondary {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.description-text {
    line-height: 1.8;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
    text-align: justify;
}



.published-date {
    font-style: italic;
    color: #555;
    font-size: 0.9rem;
    margin-top: 2px;
    text-align: right;
}

.heading-primary {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    margin: 10px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 0;
}

.heading-secondary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    text-align: left;
    margin: 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.description-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgb(45, 97, 97);
    text-align: justify;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    word-spacing: 0.03em;
    overflow-wrap: break-word;
    hyphens: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.tile-icon {
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto 10px;
    object-fit: contain;
}

.value-card i.tile-icon {
    font-size: 48px;
    line-height: 48px;
}

.tile-heading-primary {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 5px 0;
    text-align: center;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tile-description-text {
    font-size: 1.2rem;
    color: rgb(45, 97, 97);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: justify;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    hyphens: auto;
    overflow-wrap: break-word;
}

@media (max-width: 1024px) {
    .heading-primary {
        font-size: 1.8rem;
    }

    .heading-secondary {
        font-size: 1.3rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .published-date {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section-content {
        text-align: center;
    }

    .heading-primary {
        font-size: 1.6rem;
    }

    .heading-secondary {
        font-size: 1.2rem;
    }

    .description-text {
        font-size: 0.95rem;
    }

    .published-date {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .heading-primary {
        font-size: 1.4rem;
    }

    .heading-secondary {
        font-size: 1.1rem;
    }

    .description-text {
        font-size: 0.9rem;
    }

    .published-date {
        font-size: 0.8rem;
    }
}

.values-section {
    background: linear-gradient(120deg, #f9f9f9, #e6f7ff);
    padding: 5px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.value-card {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    /* test 2 */
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 10px;
}

.services-section {
    padding: 10px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-card {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 10px;
}


.short-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(45, 97, 97);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.full-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(45, 97, 97);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    /* Consistent 3D effect */
    display: none;
    /* Initially hidden */
}



@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}