@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Prompt", sans-serif;
}

html,
body {
    background-color: #070707;
    overflow-x: hidden;
}

body {
    /* padding-top: 80px; */
}

/********************************************************************************** navbar and hero section ************************************************************************/

.navbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    padding-left: 0.5%;
    position: fixed;
    width: 100%;
    height: 9%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.151);
    backdrop-filter: blur(20px);
    border-bottom-right-radius: 1vw;
    border-bottom-left-radius: 1vw;
}


.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
}


.navbar a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    color: #282727;
    position: relative;
}

.navbar a:before {
    content: "";
    width: 0;
    height: 5px;
    background-color: #07f7f3;
    position: absolute;
    top: 120%;
    left: 0;
    transition: all 0.5s;
}

.navbar a:after {
    content: "";
    width: 0;
    height: 5px;
    background-color: #35f756;
    position: absolute;
    top: 120%;
    right: 0;
    transition: all 0.5s;
}

.navbar a:hover:before {
    width: 50%;
    transform: translateX(100%);
}

.navbar a:hover:after {
    width: 50%;
    transform: translateX(-100%);
}


.logo-wrapper {
    display: flex;
    justify-content: left;
    padding-top: 0;
    width: 5%;
    height: 100%;
}

.logo {
    padding: 6%;
    padding-left: 9%;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.logo img {
    height: 90%;
    width: auto;
    max-width: unset;
    object-fit: cover;
}

.vertical-line {
    margin-left: 15px;
    height: auto;
    /* Full height of navbar */
    width: 2px;
    background: linear-gradient(to bottom, #FFFFFF, #dedede00);
    align-self: stretch;
    /* Make it stretch full height */
}

/* Adjust nav links to have their own padding */
.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    height: 100%;
    gap: 30px;
    padding-right: 0.9%;
}

.nav-links a {
    color: #282727;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a.active {
    color: #05924e !important;
    font-weight: 800;
}

.nav-links a:hover {
    color: #15bce6;
}

.nav-button {
    background-color: #01ba60;
    color: white !important;
    padding: 8px 10px;
    border-radius: 12px;
    transition: all 0.3s;
}

.button-arrow {
    transform: rotate(50deg);
}

.nav-button:hover {
    color: #fefefe;
}

/* Mobile Menu Toggle Button - Hidden by default */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 3.5%;
    box-shadow: unset !important;
}


@media (max-width: 991px) {

    .navbar {
        padding: 0;
        /* Ensure no padding */
    }

    /* Show mobile menu button */
    .mobile-menu-toggle {
        display: block;

    }

    .logo {
        width: 75%;
    }

    /* Hide regular nav links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        /* max-width: 300px; */
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        gap: 25px;
        transition: right 0.3s ease;
        z-index: 1000;
        width: 100%;
        background: #FFFFFF;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin-right: 0;
        font-size: 18px;
    }

    .nav-links a.active {
        color: #01ba60;
    }

    .nav-links a:hover {
        color: #01ba60;
    }

    .logo-wrapper {
        min-width: 100px;
    }

}


.positoin-flxed {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: 60%;
    background: transparent;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    /* background-color: #ffffff; */
    background: linear-gradient(to right, #11BAD2 0%, #1398e8 50%, #11BAD2 100%);
    backdrop-filter: blur(20px);
    margin-top: 3vw;
    z-index: 99;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

@media screen and (max-width: 991px) {
    .positoin-flxed {
        /* z-index: 999; */
        margin-top: 10%;
    }
}

.positoin-flxed.active {
    opacity: 1;
    top: 0;
    visibility: visible;
    height: unset;
    min-height: 50vh;
}

.positoin-flxed .wave-img {
    position: absolute;
    bottom: 0;
    left: 0;

}

.product-nav-content {
    padding: 1.5%;
    height: auto;
    width: 100%;
    z-index: 9;
    position: relative;
}

.product-nav-top-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5%;
}

.top-button {
    border: 1.5px solid white;
    border-radius: 16px;
    background-color: #4d4d4d1e;
    color: #000000e1;
    font-size: 1.5rem;
    flex: 1;
    padding: 1%;
    cursor: pointer;
    box-shadow: unset !important;
    text-transform: unset;
}


.top-button.active {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.product-link-img-container {
    display: flex;
    width: 100%;
    min-height: 10vh;
    margin-top: 1.5%;
    gap: 5%;
}

.link-grid {
    width: 75%;
    display: flex;
    gap: 5%;
}


.grid-inner-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22.22%;
    max-width: 22.22%;
    gap:15%;
}


.grid-inner-list .grid-item-card {
    color: #01060D;
    font-size: 1.11vw;
    border-bottom: 1.5px solid #3a3a3a85;
    padding-bottom: 2%;
    display: flex;
    align-items: center;
    text-transform: unset;
    width: 100%;
}

.grid-item-card p {
    flex: 1;
}

.grid-item-card img {
    height: auto;
    width: 100%;
    object-fit: contain;
    max-width: 75px;
}

.grid-inner-list a {
    text-decoration: none;
}

.grid-item-card.active {
    color: #ffffff;
    border-bottom: none;
}

.grid-item-card:hover {
    color: #ffffff;
    border-bottom: none;
}

.product-img-container {
    flex: 1;
}


.product-img-container img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .product-nav-content {
        padding: 2%;
    }

    .product-nav-top-buttons {
        gap: 3%;
    }

    .top-button {
        font-size: 1.3rem;
        padding: 0.8% 0.5%;
    }

    .product-link-img-container {
        flex-direction: column;
        gap: 0px;
    }

    .link-grid {
        flex: unset;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .grid-inner-list {
        justify-content: flex-start;
    }

    .grid-inner-list .grid-item-card {
        font-size: 1.1rem;
        padding: 5px 0;
    }

    .product-img-container {
        flex: unset;
        width: 100%;
        max-height: 300px;
        overflow: hidden;
    }

    .product-img-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .positoin-flxed {
        padding: 2%;
    }

    .product-nav-top-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .top-button {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .product-link-img-container {
        gap: 0px;
    }

    .link-grid {
        grid-template-columns: 1fr;
    }

    .grid-inner-list {
        margin-bottom: 10px;
    }

    .grid-inner-list .grid-item-card {
        font-size: 1rem;

    }

    .product-img-container {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .product-nav-content {
        padding: 1.5%;
    }

    .top-button {
        font-size: 1rem;
        padding: 6px 0;
    }

    .grid-inner-list .grid-item-card {
        font-size: 0.9rem;
    }

    .product-img-container {
        max-height: 200px;
    }
}


/* **************************************************************************** Footer ************************************************************************ */

.footer-main {
    width: 100%;
    padding: 3% 3% 0 3%;
    overflow: hidden;
    background-color: #0e0e0e;
}

.footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: transparent;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    position: relative;
    z-index: 1;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 50px;
    width: 10%;
    height: auto;
}

.footer-sec {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    max-width: 95%;
    height: auto;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-size: 18px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: none;
    color: #fff;
}

.footer-right nav a {
    text-transform: none;
}

.footer-links h3 {
    margin: 0;
    font-size: 1.15vw;
    color: #fff;
    width: fit-content;
    margin-bottom: 22px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.footer-links nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 18px;
    justify-content: flex-end;
    margin-top: 3%;
}

@media screen and (max-width: 1160px) {
    .footer-links nav {
        gap: 20px;
    }
}

.footer-links a {
    text-decoration: none;
    color: #fff;
}

.social-icons a img {
    transition: all .3s ease-in-out !important;
}

.social-icons a:hover img,
.social-icons a img:hover {
    scale: 1.15;
}


.footer-links a,
.footer-contact a {
    position: relative;
    text-decoration: none;
    /* remove default underline */
    transition: all .2s ease-in-out;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #01ba60;
}


.footer-contact a:hover img {
    filter: invert(48%) sepia(71%) saturate(467%) hue-rotate(104deg) brightness(95%) contrast(91%);
}


.footer-links a::after,
.footer-contact a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* space between text and underline */
    width: 0;
    height: 2px;
    background-color: currentColor;
    /* or a specific color */
    transition: width 0.6s ease;
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-overlay-text-container {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 40px;
    z-index: 0;
}

.footer-overlay-text-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 991px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        justify-content: flex-start;
    }

    .footer-links nav {
        justify-content: flex-start;
    }

    .footer-links h3 {
        margin-left: 0;
        font-size: 3vw;
    }

    .footer-left,
    .footer-right {
        flex: 1 1 100%;
    }

    .footer-right {
        align-items: flex-start;
    }
}

@media screen and (max-width:1200px) {

    .footer,
    .footer-left,
    .footer-right,
    .footer-contact {
        align-items: center;
        justify-content: center;
    }

    .footer-contact {
        gap: 25px;
        flex-direction: column;
    }

    .footer-links {
        margin-top: 15px;
    }

    .footer-links h3 {
        margin: 0 auto;
    }

    .footer-links nav {
        flex-direction: column;
        align-items: center;
        margin-top: 10%;
    }

    .footer-left {
        position: relative;
        z-index: 1;
        flex: 1 1 300px;
        display: flex;
        flex-direction: column;
        /* align-items: flex-start; */
    }

    .footer-logo {
        margin-bottom: 50px;
        width: 40%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .footer-sec {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }

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

}

@media screen and (max-width: 480px) {
    .footer-logo {
        max-width: 90px;
    }

    .social-icons img {
        max-width: 80%;
    }

    .footer-contact a img {
        max-width: 25px;
    }

    .footer-contact {
        font-size: 16px;
    }

    .footer-links h3 {
        font-size: 20px;
    }

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

}

/* footer animations */

.social-icons a img {
    transition: all .5s ease-in-out;
}

.social-icons a:hover img,
.social-icons a img:hover {
    filter: invert(54%) sepia(81%) saturate(448%) hue-rotate(89deg) brightness(97%) contrast(93%);

}

.select-icon {
    width: 20% !important;
    height: auto;
}

@media screen and (max-width:1200px) {
    .grid-inner-list {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .product-img-container {
        display: none;
    }

    .product-link-img-container {
        margin-top: 2%;
    }

    .link-grid {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width:700px) {
    .product-link-img-container {
        margin-top: 8%;
    }

}


/* new footer */
.footer-logo2 {
    margin-bottom: 50px;
    width: 50%;
    height: auto;

}

.footer-new {
    width: 95%;
    display: block;
    margin: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #ffffff;
}

.grid-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: wheat;
}

.grid-item ul  {
    display: flex;
    flex-direction: column;
}

/* List Reset */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item Alignment */
.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    gap: 0.2rem;
}

.contact-list li:last-child {
    align-items: flex-start;
}
/* Icon Styling */
.contact-list i {
    color: #00a651; /* Your OODA Green */
    width: 25px; /* Fixed width so text aligns vertically */
    margin-top: 3px;
    font-size: 1.1rem;
}

/* Link Styling */
.contact-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #00a651;
}

/* Span/Text Styling */
.contact-list span {
    color: #cccccc;
}

.useful_links li {
     a {
        margin-left: 5px;
     }
}

.useful_links a, .contact-list a {
    text-transform: none;
}

/* Tablet View (2 Columns) */
@media (max-width: 992px) {
    .footer-new {
        width: 100%;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Make the logo column span full width to look centered/balanced */
    .grid-item:first-child {
        grid-column: span 2;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }

    .contact-list li, .useful_links li {
        align-items: center;
        gap: 2%
    }

    .contact-list li:last-child {
        align-items: flex-start;
    }
    
    .social-icons {
        justify-content: center;
    }
    .footer-logo2 {

    margin-right: auto;
    margin-left: auto;
}
}

/* Mobile View (1 Column) */
@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr; /* Stack everything */
        gap: 30px;
    }

    .grid-item:first-child {
        grid-column: span 1;
    }

    .grid-item {
        text-align: center; /* Center text for mobile legibility */
        width: 90%;
    }

    .contact-list li, .useful_links li {
        justify-content: center; /* Centers the flex items */
        align-items: center;
        gap: 2%;
    }
    
    .grid-title {
        font-size: 1.3rem;
    }

    .contact-list li > *, .useful_links li > * {
        font-size: 1rem !important;
    }

    .contact-list a {
        color: #fff;
    }
    /* new footer */
.footer-logo2 {

    margin-right: auto;
    margin-left: auto;
}
}

.grid-item-card {
   
           /* ADD THIS — critical for flex children */
}

.grid-item-card p {
    flex: 1;
    min-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;          /* ADD THIS — p needs block display for ellipsis */
}

/* Developer Credit Section */
.developer-credit {
    text-align: center;
    padding: 20px 0;
    /* margin-top: 20px; */
    border-top: 1px solid #333;
    font-size: 0.62rem;
    color: #777;
}

.developer-credit a {
    color: #ffffff;
    font-size: 0.62rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #999;
}


@media screen and (max-width: 1700px) {
    
    .index-smooth-wrapper .footer-main {
        padding-bottom: 15.5% !important;
    }
}
@media screen and (max-width: 1400px) {
    
    .index-smooth-wrapper .footer-main {
        padding-bottom: 14% !important;
    }
}
@media screen and (max-width: 991px) {
    
    .index-smooth-wrapper .footer-main {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .developer-credit {font-size: 0.6rem}
    .developer-credit a {font-size: 0.6rem}
}