/* Reset defaults */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #0d1117;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    min-height: 100vh;
}

/* Navigation Bar */
.menu-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 120px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-bar h3 {
    color: #c3d0e5;
    font-size: 20px;
    font-weight: 600;
}

.menu-bar a {
    cursor: pointer;
    color: #9ba3b4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white;
}

/* Left menu group */
.menu-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-left img {
    cursor: pointer;
}

/* Right menu group - THIS WAS MISSING */
.menu-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-right img,
.menu-right button {
    cursor: pointer;
}

/* Search input container - FIXED CLASS NAME */
.menu-right--input-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: black;
}

.menu-right--input-container img {
    position: absolute;
    left: 8px;
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* Search input - ADDED PROPER STYLING */
.menu-right--input {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px 6px 32px;
    color: white;
    font-size: 14px;
    width: 200px;
    transition: all 0.2s ease;
}

.menu-right--input:focus {
    outline: none;
    border-color: #0078d4;
    background-color: rgba(255, 255, 255, 0.08);
}

.menu-right--input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Download button - MOVED TO RIGHT MENU */
.menu-right button {
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    transition: background-color 0.2s ease;
}

.menu-right button:hover {
    background-color: #005ba4;
}

/* Banner section */
.banner {
    background: linear-gradient(
        135deg,
        #0D1117 0%,
        rgba(0, 32, 80, 0.25) 15%,
        rgba(0, 32, 80, 0.25) 75%,
        #0D1117 100%
    );
    padding: 12px;
    text-align: center;
}

.banner a {
    color: #4daafc;
    text-decoration: none;
}

.banner a:hover {
    text-decoration: underline;
}

.banner--content {
    color: #9ba3b4;
    font-size: 14px;
    font-weight: 400;
}

/* Header section */
.header--section {
    margin-top: 80px;
    padding: 0 20px;
    text-align: center;
}

.header--section__heading {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #c3d0e5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FIXED: Added proper centering */
.header--section__links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header--section__glassy-section {
    background: rgba(30, 38, 48, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.header--section__download-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 14px 24px;
    width: 100%;
    max-width: 280px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header--section__download-section:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header--section__download-section a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
}

.header--section__download-section img {
    width: 20px;
    height: 20px;
}

.header--section__links-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* FIXED: Links should be blue */
.header--section__links-sub a {
    color: #4daafc;
    text-decoration: none;
}

.header--section__links-sub a:hover {
    text-decoration: underline;
}

.header--section__links-sub-02 {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.4;
}

/* FIXED: Links should be blue */
.header--section__links-sub-02 a {
    color: white;
    text-decoration: none;
}

.header--section__links-sub-02 a:hover {
    text-decoration: underline;
}
.header--section__video-section{
    margin-top: 30px;
}
.header--section button {
    padding: 10px 16px;
    margin-top: 16px;
    font-size: 20px;
    cursor: pointer;
    color: #9ba3b4;
    background-color: transparent;
    border: 1px solid transparent;  /* Invisible border to prevent shift */
    transition: all 0.2s ease;
    border-radius: 6px;
}

.header--section button:hover {
    border-color: white;
}
        .features {
            margin-top: 80px;
        }

        .features-inital {
            display: flex;
            justify-content: space-evenly;
            gap: 20px;
           
            padding: 0 50px;
        }

        .features__modal {
            color: #c3d0e5;
            display: flex;
            flex-direction: column;
            border-radius: 12px;
            padding: 32px;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.04);
            border: 2px solid rgba(255, 255, 255, 0.12);
            overflow: hidden;
          width: 400px;
        }

        .features__modal h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: white;
        }

        .features__modal p {
            font-size: 16px;
            line-height: 1.5;
            color: #c3d0e5;
            margin-bottom: 32px;
        }

        .features__modal-image {
            margin-top: auto;
        }

        .features__modal-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        .features-cta {
            margin-top: 80px;
            display: flex;
            align-items: center;
            gap: 40px;
              width:100%;
            padding: 0 100px;
        }

        .features-cta__image {
           background: url('https://code.visualstudio.com/assets/home/copilot-free-banner-bg-dark.webp');
            flex:1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px;
          
            height: auto;
            border-radius: 12px;
        }

       

        .features-cta__content {
           
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 10px; 
        }

        .features-cta h2 {
            font-size: 32px;
            font-weight: 600;
            color: white;
        }

        .features-cta p {
            font-size: 16px;
            color: #c3d0e5;
            /* margin-bottom: 5px; */
        }

        .features-cta button {
            background: rgb(43, 42, 42);
            color: #c3d0e5;
            border: none;
            border-radius: 6px;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
            align-self: flex-start;
            border: 0.5px solid white;
       
        }

        .features-cta button:hover {
            background-color: #005ba4;
        }

        .code-editor{
            margin-top: 100px;
            display: flex;
            flex-direction: column;
            gap:100px;
        }
        .code-editor a{
            color:#0078d4;
        }
        .code-editor--modal__image-icons{
            display: grid;
        width: 3000px;
            grid-template-rows: 1fr 1fr 1fr 1fr;
            grid-template-columns:1fr 1fr 1fr;
            grid-gap: 10px;
            color: #9ba3b4;
            font-size: 16px;
            margin-top: 30px;
        }

        
       .code-editor--modal{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        padding:0 100px;
       }
       .code-editor--modal__content{

        display: flex;
        flex-direction: column;
        gap:20px;
        overflow: hidden;
       
       }
        .code-editor--modal__content p{
           color: #9FB1D1;
           flex:1;
           font-weight: 600;
           line-height: 1.8;
          align-self: flex-start;
        }

        .code-editor--modal__content h2{
            color:#c3d0e5;
            font-size: 30px;
            font-weight: 600;

        }
        .code-editor--modal__image{
            width: 100%;
            height: auto;
            border-radius: 16px;
        }
        .icons{
            display: flex;
            justify-content: start;
            align-items: center;
            gap:20px;
        }
        .footer-section{
            margin-top: 60px;
        
            padding:50px 100px;
        }
        .inline__icons{
            display: flex;
           
            justify-content: space-between;
        }
        
        .inline__icons-1 ul{
            list-style-type: none;
             display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .inline__links{
            margin-top: 15px;
        }
        .inline__links ul{
            list-style: none;
            display: flex;
           gap: 30px;
           font-size: 12px;
           text-decoration: none;
        }
        .inline__links a{
                text-decoration: none;
                color: #9FB1D1;
                font-weight: 600;
        }