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

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: radial-gradient(circle, #000000 30%, #014940 100%);
    height: 100%;
}

.gap {
    padding: 20px;
}

.mobile-screen-show {
    display: none;
}

nav {
    transition: opacity 0.4s ease, transform 0.3s ease;
}


.mobile-screen-show {
    opacity: 0;
    display: none;
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 999;
    transition: opacity 0.4s ease;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Button Style */
.dropdown-btn {
    background: transparent;
    border: none;
    font-size: 16px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown list */
.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    list-style: none;
    padding: 12px 0;
    border-radius: 8px;
    width: 180px;
    display: none;
    /* default hidden */
    flex-direction: column;
    gap: 4px;
}

.dropdown-menu li a {
    padding: 8px 15px;
    color: white;
    display: block;
    text-decoration: none;
    transition: .2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* OPEN CLASS */
.dropdown.open .dropdown-menu {
    display: flex;
}

.fa-chevron-down {
    font-size: 15px;
}


/* HERO SECTION */
.hero {
    border-radius: 25px;
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("/assets/images/Hero BG.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 999;
    position: fixed;
    top: 5;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.4s ease;
}

/* Scroll down pe navbar hide karne ke liye class */
nav.hide-nav {
    transform: translateY(-100%);
}


.logo img {
    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;
}


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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.book-btn {
    background: white;
    color: #2d3748;
    padding: 10px 22px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    transition:
        transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Glow trail element */
.book-btn::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;
}

.book-btn:hover::before {
    left: 100%;
}

/* Main hover effect */
.book-btn:hover {
    transform: translateY(-6px) scale(1.12);
    background: rgba(2, 41, 3, 0.85);
    color: white;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(2, 255, 90, 0.45),
        0 0 40px rgba(2, 255, 90, 0.2);
}


.circle {
    width: 40px;
    height: 40px;
    background-color: #122107;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.airo {
    color: white;
    font-size: 18px;
    transform: rotate(90deg);
}



/* book appointment button ----------------------- */
.book-appointment {
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    background: rgba(10, 9, 9, 0.392);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);

    /* Fixed Position Add kiya */
    position: fixed;
    bottom: 30px;
    right: 35px;
    z-index: 1100;
    /* Menu button se upar dikhe */
}

.book-appointment:hover {
    background: rgba(12, 0, 0, 0.879);
    border-color: white;
    transform: scale(1.05);
}

/* book appointment button end here -------------- */


/* CONTENT SECTION */
.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 5;
    flex-wrap: wrap;
}

.left-content {
    flex: 1;
    /* min-width: 300px; */
    max-width: 600px;
}

.main-heading {
    margin-top: 20vh;
    font-size: 55px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10rem;
}

.info-text {
    font-size: 34px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    min-height: 160px;
    transition: opacity 0.5s, transform 0.5s;
    margin-bottom: 9rem;
}

.highlight {
    color: #FF991C;
    font-weight: 700;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.right-content img {
    width: 150%;
    max-width: none;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: 100px;

}

.right-content img:hover {
    transform: scale(1.05);
}

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-out {
    animation: fadeOut 0.6s ease forwards;
}


.right-side,
.oxs-textbox {
    overflow-wrap: break-word;
}




/* Second Sction */

.section {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
}


.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


.left-side,
.right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
}


/* LEFT SIDE */
.left-side {
    background: linear-gradient(135deg, #b8a89a 0%, #9a8978 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* RIGHT SIDE */
.right-side {
    background: #0d3d3d;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* HEADINGS & CONTENT */
.main-title {
    font-size: 55px !important;
    font-weight: 700 !important;
    color: #FF991C;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center
}

.title-underline {
    width: 100%;
    height: 3px;
    background: #FF991C;
    margin-bottom: 80px;
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 20px;
}

.content-item {
    color: white;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 300;
}

/* BUTTON */
.learn-more-btn {
    align-self: center;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.learn-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-text-small {
    font-size: 16px;
    font-weight: 300;
}

.btn-text-large {
    font-size: 24px;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .section {
        flex-direction: column-reverse;
        height: auto;
    }

    .left-side,
    .right-side {
        width: 100%;
        height: auto;
    }

    .left-side {
        min-height: 20vh;
    }

    .right-side {
        padding: 60px 50px;
    }

    .main-title {
        font-size: 50px;
    }

    .content-item {
        font-size: 15px;
    }
}



/* Layout */
.oxs-container {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
}


.oxs-textbox,
.oxs-image-box {
    width: 50%;
    /* equal half */
    display: flex;
    flex-direction: column;
    /* inside elements vertical */
}

/* TEXT AREA (LEFT) */
.oxs-textbox {
    width: 50%;
    background: #0d3d3d;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.oxs-title {
    font-size: 50px;
    font-weight: 800;
    color: #FF991C;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
}

.oxs-divider {
    width: 100%;
    height: 3px;
    background: #FF991C;
    margin-bottom: 80px;
}

.oxs-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 20px;
}

.oxs-item {
    color: white;
    font-size: 25px;
    line-height: 1.4;
    font-weight: 300;
}

/* IMAGE AREA (RIGHT) */
.oxs-image-box {
    width: 50%;
    background: linear-gradient(135deg, #b8a89a 0%, #9a8978 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.oxs-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BUTTON */
.oxs-button {
    align-self: center;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.oxs-button:hover {
    background: rgba(255, 255, 255, 0.227);
    transform: translateY(-1px);
}

.oxs-btn-small {
    font-size: 16px;
    font-weight: 300;
}

.oxs-btn-large {
    font-size: 24px;
    font-weight: 700;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .nav-links a {
        font-size: 13px;
    }

    .oxs-container {
        flex-direction: column;
        /* ✅ Text upar, image niche */
        height: auto;
    }

    .oxs-textbox,
    .oxs-image-box {
        width: 100%;
        height: auto;
    }

    .oxs-image-box {
        min-height: 20vh;
    }

    .oxs-textbox {
        padding: 60px 50px;
    }

    .oxs-title {
        font-size: 50px;
    }

    .oxs-item {
        font-size: 15px;
    }
}

.video-section {
    position: relative;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 70%;
    height: 100%;
    overflow: hidden; /* yeh rehne do */
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 🔥 yahin fix hai */
    border-radius: 50px;
    margin-top: 50px;
}

.video-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 20;
}

.video-btn {
    background: rgba(2, 0, 0, 0.12);
    color: white;
    border: none;
    padding: 12px 12px;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: 0.25s ease;
}

.video-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.1);
}




.video-text-one {
    width: 100%;
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: clamp(14px, 2vw, 22px);
    letter-spacing: 1px;
    font-weight: 500;
    color: white;
    margin-top: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.video-text-one:hover {
    color: #FF991C;
    letter-spacing: 1.5px;
}

.highlight:hover {
    color: white;
    transition: color 0.35s ease;
}



/*  Text Sectioin -------------------------- */
.text-box {
    margin: 0;
    padding: 0;
    height: 27vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #000000 30%, #014940 100%);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Text styling */
.center-text h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 auto;
    word-wrap: break-word;
}

/* Responsive font sizes */
@media (max-width: 768px) {
    .center-text h1 {
        font-size: 2.5rem;
    }

    .gap {
        padding: 10px;
    }

    .video-text-one {
        padding: 20px;
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .center-text h1 {
        font-size: 1.3rem;
    }

    .text-box {
        height: 12vh;
    }

    .video-section {
        margin-top: 10px;
        width: 90%;
        height: 100%;
    }
    .video-section video {
        margin-top: 10px;
    }

    .video-btn {
        font-size: 12px;
    }
}

.space {
    width: 100%;
    height: 4rem;
}

.ui-wrapper {
    width: 100%;
    background: #8a9ba1;
    border-radius: 40px;
    padding: 12px;
    position: relative;
}

.main-brand-title {
    font-size: 140px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 5px;
}

.card-container {
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    height: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease;
}

.card-image-section {
    flex: 1;
    background: #c5b5ad;
    position: relative;
    overflow: hidden;
}

.item-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.card-text-section {
    flex: 1;
    background: rgba(70, 55, 45, 0.95);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-text-section img {
    width: 50%;

}

.item-heading-text {
    font-size: 90px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.item-small-text {
    font-size: 30px;
    color: #fff;
    margin-bottom: 80px;
    font-weight: 400;
}

.item-main-text {
    font-size: 30px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
}

#itemTitle {
    filter: brightness(0) invert(1);
}

.info-btn {
    background: #fff;
    color: #333;
    border: none;
    padding: 10px 50px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.arrow-btn {
    display: none;
    background: #ffffff7a;
    border: none;
    padding: 12px 12px;
    border-radius: 30px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.arrow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.control-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 22px;
    margin-bottom: 10px;
}

.indicator-dots {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.dot-unit {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: .3s;
}

.dot-unit:hover {
    opacity: 0.7;
}

.active-dot {
    opacity: 1;
}

.fadeElement {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.fadeElement.fade-out {
    opacity: 0;
}

.fadeElement.fade-in {
    opacity: 1;
}

/* ✅ Mobile Responsive Fix for Slider */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        /* Image Upar, Text Neeche */
        height: auto;
        /* Fixed 550px Height Remove */
    }

    .card-image-section {
        width: 100%;
        height: 300px;
        /* Adjust kar sakte ho */
    }

    .item-photo {
        height: 100%;
        object-fit: cover;
    }

    .card-text-section {
        padding: 16px 5px;
        /* Smaller padding for mobile */
        text-align: center;
    }

    .item-heading-text {
        font-size: 40px;
    }

    .item-main-text {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .main-brand-title {
        margin-bottom: 10px;
        font-size: 60px;
        text-align: center;
        letter-spacing: 0px;
    }

    .ui-wrapper {
        padding: 10px
    }

    .item-small-text {
        font-size: 25px;
        margin-bottom: 23px;
    }

    .info-btn {
        padding: 12px 23px;
        font-size: 16px;
        margin-bottom: 10px;
    }
}





@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Breakpoints */

@media (max-width: 1200px) {
    .brand-heading {
        font-size: 100px;
    }

    .product-heading {
        font-size: 70px;
    }

    .main-tagline {
        font-size: 32px;
    }

    .small-subtitle {
        font-size: 26px;
    }
}

@media (max-width: 968px) {
    .info-card {
        flex-direction: column;
        height: auto;
    }

    .image-side {
        min-height: auto;
    }

    .text-side {
        padding: 60px 40px;
    }

    .brand-heading {
        font-size: 80px;
    }

    .product-heading {
        font-size: 60px;
    }

    .main-tagline {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .right-content {
        justify-content: center;
    }

    .right-content img {
        width: 120%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .layout-wrapper {
        padding: 40px 30px;
    }

    .brand-heading {
        font-size: 30px;
    }

    .product-heading {
        font-size: 38px;
    }

    .small-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .main-tagline {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .action-btn {
        padding: 15px 40px;
        font-size: 18px;
    }

    .mobile-screen-show {
        display: block !important;
        opacity: 1 !important;
        position: static;
    }

}

/* Responsive Styles */
@media (max-width: 900px) {

    .btn-explore1 {
        max-width: 144px;
        gap: 20px;
        font-size: 12px;
    }

    .book-appointment {
        display: flex;
        padding: 13px 20px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 30px;
        background: rgba(10, 9, 9, 0.392);
        color: white;
        font-size: 10px;
        right: 15px;
    }
}

@media (max-width: 500px) {
    .hero1 h1 {
        font-size: 28px !important;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}


/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        text-align: center;
        padding: 40px 31px;
        gap: 0px;
    }

    .main-heading {
        font-size: 60px;
        margin-bottom: 2rem;
        margin-top: 10vh;
    }

    .info-text {
        font-size: 28px;
        margin-bottom: -20px;
    }

    .hero-heading {
        font-size: 8rem !important;
        text-align: center !important;
    }

    .nav-links {
        gap: 10px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 9px 4px;
    }

    .nav-links {
        display: none;
    }

    .main-heading {
        font-size: 45px;
    }

    .info-text {
        font-size: 22px;
    }

    .hero1 p {
        top: 53%;
        left: 4%;
        font-size: 11px;
    }

    .hero-heading {
        font-size: 5rem !important;
        text-align: center !important;
    }

    .logo img {
        margin-left: 15px;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 95vh;
    }

    .book-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .main-heading {
        font-size: 45px;
    }

    .info-text {
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 0rem;
    }

    .hero-heading {
        font-size: 3rem !important;
        text-align: center !important;
        color: white !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-tagline {
        font-size: 19px !important;
        color: white !important;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7) !important;
    }

    .hero-frame {
        height: 54% !important;
    }

    .logo img {
        margin-left: 15px;
        width: 150px;
    }

    .ui-wrapper {
        margin-top: -250px;
    }
}



/*   hero scroll --------------------------------------------------------------- */


/* Scroll Container */
.scroll-wrapper {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom,
            #000000 0%,
            #014940 70%,
            #001f1c 100%);

}

/* Hero Section Wrapper */
.hero-panel {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Stacking padding for each section */
.hero-panel:nth-child(1) {
    padding: 30px;
}

.hero-panel:nth-child(2) {
    padding-top: 90px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.hero-panel:nth-child(3) {
    padding-top: 160px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

/* Hero Card */
.hero-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* Gradient Overlay */
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 51, 65, 0.3) 0%, transparent 50%, transparent 100%);
    z-index: 1;
}

/* Content Container */
.hero-body {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px;
}

/* Hero Title */
.hero-heading {
    font-size: 10rem;
    font-weight: 700;
    color: #011e07;
    line-height: 1.15;
    max-width: 900px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.18));
}

/* Bottom Section */
.hero-footer {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Subtitle */
.hero-tagline {
    font-size: 40px;
    font-weight: 600;
    color: #000f03;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    opacity: 0.9;
    line-height: 1.2;
    margin-bottom: 50px;
}

/* Button */
.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    width: fit-content;
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background-color: #fafafa;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-action:hover {
    background-color: #f88901;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-action svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Content Sections */
.info-panel {
    width: 100%;
    min-height: 100vh;
    background-color: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
}

.info-panel h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fafafa;
    text-align: center;
}

.info-panel-alternate {
    width: 100%;
    min-height: 100vh;
    background-color: #0c3b49;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
}

.info-panel-alternate h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}


/* ✅ Glass effect ONLY for nav links (not full nav) */
.nav-links.glass-active {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    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;
}

@media (max-width: 900px) {
    .nav-links.glass-active {
        padding: 5px 0px;
    }
}