* {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

body {
    background-color: black;
    font-family: "Montserrat Alternates", sans-serif;
}

#nav_main {
    position: fixed;
    width: 100%;
    z-index: 11111;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 30px;
    background: white;
    padding: 19px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    backdrop-filter: saturate(180%);
}

#nav_links a {
    color: black;
    font-weight: 500;
    margin-right: 40px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

#nav_links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #0F9F3A;
    transition: width 0.3s ease;
}

#nav_links a:hover {
    color: #0F9F3A;
}

#nav_links a:hover::after {
    width: 100%;
}

.only_icon_logo {
    margin-top: 4px;
    height: 30px;
}

#logo img {
    height: 3rem;

}

@media (max-width:753px) {
    #nav_links a {
        display: none;
    }

    #nav_sidebar {
        display: flex;
    }

    .only_text_logo {
        height: 20px;
    }
}

@media (max-width:800px) {
     #nav_links a {
        margin-right: 20px;
    }
}

#nav_sidebar button {
    color: black;
    border: 1px solid #25dd5a;
    background: transparent;
    font-size: 19px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 6px 7px;
    transition: color 0.3s ease;
}


#nav_sidebar button::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #25dd5a;
    z-index: -1;
    transition: height 0.3s ease;
}

#nav_sidebar button:hover {
    color: black;
}

#nav_sidebar button:hover::before {
    height: 100%;
}

@media (min-width:753px) {
    #nav_sidebar {
        display: none;
    }
}

.introImage img {
    height: 350px;
}

#mainIntro {
    padding-top: 50px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainBoldText_p_tag,
.mainBoldText_p_tag2 {
    color: white;
    /* font-family: "Ultra", serif; */
    font-family: "Syncopate", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
}

.mainBoldText_p_tag2 {
    font-family: 'Orbitron', sans-serif !important;
}

.mainBoldText_p_tag2:hover {
    color: rgb(10 228 72);
    transition: 0.2s ease-in-out;
}

.subIntro {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.serviceButton,
.aboutUstext_instabtn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    width: 140px;
    padding: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 18px;
}

.serviceButton::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgb(10 228 72);
    z-index: -1;
    transition: height 0.3s ease;
}

.serviceButton:hover {
    color: black;
    font-weight: 600;
    border: 1px solid rgb(10 228 72);
}

.serviceButton:hover::before {
    height: 100%;
}

@media (max-width:910px) {
    .introImage {
        display: none;
    }
}

@media (max-width:648px) {

    .mainBoldText_p_tag,
    .mainBoldText_p_tag2 {
        font-size: 8vw;
    }
}

@media (max-width:980px) {
    .footer_content {
        flex-direction: column;

    }
}

#main_about_us {
    color: white;
}

.aboutUsHeadingText {
    margin-left: 22px;
    font-family: "Syncopate", sans-serif;
    font-weight: 600;
    font-size: 30px;
}

.aboutUsinfotext {
    padding: 25px;
    line-height: 26px;
    margin: 20px 20px;
    border-radius: 9px;
    border: 1px solid rgb(44, 236, 99);
}

.typing-text i {
    font-size: 22px;
}

.link_above_text {
    margin-top: 30px;
    font-size: small;
}

.aboutUstext_instabtn {
    font-size: 14px !important;
}

.aboutUstext_instabtn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgb(10 228 72);
    z-index: -1;
    transition: height 0.3s ease;
}

.aboutUstext_instabtn:hover {
    color: black;
    font-weight: 600;
    border: 1px solid rgb(10 228 72);
}

.aboutUstext_instabtn:hover::before {
    height: 100%;
}

#services {
    padding: 40px 20px;
}

.main_services_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.main_services_container a{
    text-decoration: none;
    color: black;
}

.service_card {
    border: 1px solid black;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform .4s ease, box-shadow .4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.service_icon {
    font-size: 55px;
    color: black;
    margin-bottom: 20px;
}

.service_card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.show_more {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: .3s;
    font-size: 13px;
    border: 1px solid #25dd5a;
    padding: 6px 12px;
    position: relative;
    display: inline-block;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.show_more::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgb(10, 228, 72);
    z-index: -1;
    transition: height 0.3s ease;
}

.show_more:hover {
    color: black;
    font-weight: 600;
    border: 1px solid rgb(10, 228, 72);
}

.show_more:hover::before {
    height: 100%;
}

.another_services_container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

.anotherText {
    margin-bottom: 30px;
    font-family: Syncopate, sans-serif;
    font-weight: 600;
}

@media (max-width: 474px) {

    .anotherText,
    .aboutUsHeadingText {
        font-size: 17px;
        text-align: left;
    }

    .service_icon {
        font-size: 45px;
    }

    .service_card h3 {
        font-size: 15px;
    }

    .main_services_container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 350px) {
    .service_card {
        padding: 15px;
    }

    .service_icon {
        font-size: 40px;
    }

    .service_card h3 {
        font-size: 14px;
    }

    .show_more {
        font-size: 12px;
        padding: 5px 10px;
    }
}

#full_sidebar {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.45s ease;
    display: flex;
    flex-direction: column;
}

#full_sidebar.active {
    transform: translateX(0);
}

.full_sidebar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

.sidebar_logo {
    height: 40px;
}

#close_full_sidebar {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.full_sidebar_links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

.full_sidebar_links a {
    position: relative;
    font-size: 19px;
    margin-left: 29px;
    margin-right: 29px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif !important;
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

/* Background fill */
.full_sidebar_links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: black;
    z-index: -1;
    transition: width 0.4s ease;
}

.full_sidebar_links a:hover::before {
    width: 100%;
}

.full_sidebar_links a:hover {
    color: white;
}

/* .full_sidebar_links a:hover {
    color: #0F9F3A;
} */

@media (min-width: 753px) {
    #full_sidebar {
        display: none;
    }
}

/* CONTAINER */
.tab-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    padding-top: 20px;
}

.tab-bar {
    background: #111;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #00ff88 #1a1a1a;
}

.tab-scroll {
    display: flex;
    min-width: max-content;
    gap: 10px;
    padding: 10px;
}

.tab {
    padding: 14px 20px;
    font-family: 'Orbitron', sans-serif;
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab.active {
    color: #00ff9d;
    border-bottom: 3px solid #00ff9d;
}

.tab-content-wrapper {
    position: relative;
    padding: 20px;
}

.tab-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: 0.4s ease;
    pointer-events: none;
}

.tab-content.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.card-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.card {
    width: 273px;
    background: #111;
    border: 1px solid #ffffff20;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 16px;
    color: white;
}

.card-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 12px;
}

.card-body button {
    padding: 8px 14px;
    font-family: "Montserrat Alternates", sans-serif;
    border: none;
    width: 100%;
    background: #00ff88;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.card-body button:hover {
    background: #00cc6e;
}

@media (max-width: 480px) {
    .card-img {
        height: 150px;
    }
}

.home-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #00ff88;
    overflow: hidden;
    z-index: 1;
    margin: 20px;
    transition: color 0.3s ease;
}

.home-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #00ff88, #00cc6e);
    z-index: -1;
    transition: height 0.35s ease;
}

.home-btn:hover::before {
    height: 100%;
}

.home-btn:hover {
    color: #000;
}

.home-btn i {
    font-size: 1.1rem;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

#page-loader p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #475569;
}

.spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #079233cd;
    border-top-color: #07923333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.footer_logo img {
    margin-top: 4px;
    height: 40px;
}