/* FOR LAPTOP SCREEN CODE -------------- */

/* NAVBAR */
.Laptop-navBarMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.Laptop-brandLogo {
    width: 200px;
    height: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 0 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.Laptop-menuList {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.Laptop-menuList a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.Laptop-menuList a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* BUTTON */
.Laptop-ctaButton {
    background: white;
    color: #2d3748;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.Laptop-ctaButton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.Laptop-ctaButton:hover::before {
    left: 100%;
}

.Laptop-ctaButton:hover {
    transform: translateY(-0.3px) scale(1.12);
    background: rgba(2, 41, 3, 0.85);
    color: white;
}

.Laptop-iconCircle {
    width: 40px;
    height: 40px;
    background: #122107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Laptop-arrowIcon {
    color: white;
    transform: rotate(90deg);
}

/* HIDE/SHOW NAV ANIMATION */
.Laptop-navBarMain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: transform 0.35s ease-in-out;
}

/* when hidden */
.Laptop-navBarMain.Laptop-hideNav {
    transform: translateY(-100%);
}


@media (max-width: 950px) {
    .Laptop-ctaButton {
        font-size: 10px;
        padding: 5px 10px;
        gap: 2px;
    }

    .Laptop-navBarMain {
        padding: 20px 25px;
    }
}

@media (max-width: 868px) {
    .Laptop-navBarMain {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .Laptop-navBarMain {
        display: none;
    }
}


/* FOR MOBILE SCREEN CODE -------------- */

/* Logo Section */
.new-logo-area {
    display: none;
    position: fixed;
    z-index: 999;
    top: 20px;
    left: 40px;
    padding: 18px 18px;
    border-radius: 25px;
    background-color: rgba(7, 7, 7, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.single-logo-img {
    width: 200px;
    display: block;
}


.new-logo-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.new-logo-symbol {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.new-logo-symbol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.new-logo-symbol:hover img {
    transform: scale(1.1);
}

.new-logo-title {
    color: white;
}

.new-logo-title .new-brand-name {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 5px;
}

.new-logo-title .new-brand-tag {
    font-size: 11px;
    opacity: 0.9;
    letter-spacing: 3px;
}

/* Demo Content */
.new-center-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

.new-center-display h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.new-center-display p {
    font-size: 20px;
    opacity: 0.9;
}

/* Menu Button Container */
.new-nav-box {
    display: none;
    position: fixed;
    top: 40px;
    right: 60px;
    z-index: 999998;
    width: 140px;
    height: 50px;
    background: #123233;
    border-radius: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform-origin: top right;
    transition: all 0.6s ease-out;
    overflow: hidden;
    cursor: pointer;
}

.new-nav-box.new-active {
    cursor: default;
    width: 85vw;
    max-width: 1400px;
    height: 70vh;
    min-height: 500px;
    border-radius: 16px;
    background: rgba(18, 50, 51, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.new-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 23px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.new-nav-box.new-active .new-nav-header {
    opacity: 0;
    pointer-events: none;
}

.new-burger-icon {
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: #123233;
    transition: transform 0.3s ease;
}

.new-nav-box:not(.new-active):hover .new-burger-icon {
    transform: rotate(90deg);
}

.new-nav-box:not(.new-active):hover {
    transform: scale(1.05);
}

/* Overlay */
.new-nav-overlay {
    position: absolute;
    inset: 0;
    padding: 60px 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.new-nav-box.new-active .new-nav-overlay {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.3s;
}

/* Close Button */
.new-nav-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s ease;
}

.new-nav-box.new-active .new-nav-close-btn {
    transform: scale(1) rotate(0deg);
    transition-delay: 0.4s;
}

.new-nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(360deg) !important;
}

.new-close-mark {
    font-size: 20px;
    color: white;
    font-weight: 300;
    line-height: 1;
}

/* Menu Grid */
.new-nav-content {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.new-nav-links-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.5s ease;
}

.new-nav-box.new-active .new-nav-links-left {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

.new-nav-links-left a {
    font-size: 48px;
    font-weight: 800;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.new-nav-links-left a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: #FF991C;
    transition: width 0.3s ease;
}

.new-nav-links-left a:hover::after {
    width: 100%;
}

.new-nav-links-left a:hover {
    color: #FF991C;
    transform: translateX(10px);
}

.new-nav-links-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: right;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
}

.new-nav-box.new-active .new-nav-links-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.new-nav-links-right a {
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
    margin-left: auto;
}

.new-nav-links-right a:hover {
    color: #FF991C;
    letter-spacing: 2px;
    transform: translateX(-5px);
}



/* Dropdown ------------------------------ */
/* Dropdown for laptop */
.Laptop-dropdown {
    position: relative;
}

.Laptop-dropdownMenu {
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    list-style: none;
    padding: 12px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 180px;

    display: none;
    z-index: 99999;
}

.Laptop-dropdownMenu li a {
    display: block;
    padding: 10px 18px;
    color: black !important;
    text-decoration: none;
    transition: 0.25s;
}

.Laptop-dropdownMenu li a:hover {
    background: #efefef;
}

/* Dropdown ------------------------------ */






/* MOBILE NAV HIDE ANIMATION ------------------------------------ */
/* .new-logo-area,
.new-nav-box {
    transition: transform 0.35s ease-in-out;
} */

/* hidden state */
/* .new-logo-area.Mobile-hideNav,
.new-nav-box.Mobile-hideNav {
    transform: translateY(-200px);  
    opacity: 0;                     
} */
/* end MOBILE NAV HIDE ANIMATION ------------------------------------ */

/* Responsive */
@media (max-width: 1200px) {
    .Laptop-menuList a {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .Laptop-menuList a {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .new-logo-title .new-brand-name {
        font-weight: 600;
        font-size: 15px;
    }

    .new-logo-title .new-brand-tag {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .new-logo-box {
        gap: 7px;
    }

    .new-logo-area {
        display: block;
        top: 20.5px;
        left: 15px;
        padding: 9px 10px;
        border-radius: 50px;
    }

    .new-logo-symbol {
        width: 50px;
        height: 50px;
    }

    .new-brand-name {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .new-brand-tag {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .new-nav-box {
        display: block;
        top: 25px;
        right: 15px;
        width: 120px;
        height: 48px;
    }

    .new-nav-header {
        padding: 10px 19px;
        font-size: 14px;
    }

    .new-burger-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .new-nav-box.new-active {
        width: 92vw;
        height: 85vh;
        min-height: 500px;
    }

    .new-nav-overlay {
        padding: 40px 25px;
    }

    .new-nav-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .new-nav-close-btn {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .new-close-mark {
        font-size: 16px;
    }

    .new-nav-links-left a {
        font-size: 32px;
    }

    .new-nav-links-right {
        text-align: -webkit-right;
    }

    .new-nav-links-right a {
        font-size: 16px;
        margin-left: 0;
    }

    .new-center-display h1 {
        font-size: 32px;
    }

    .new-center-display p {
        font-size: 16px;
        padding: 0 20px;
    }

    .single-logo-img {
        width: 150px;
    }
}

/* ✅ Glass Effect ONLY for Laptop Menu Links */
.Laptop-menuList.glass-active {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    border-radius: 60px;
    padding: 5px 30px;
    transition: 0.4s ease;
}