/* -------------------- */
/* FONT & RESET */
/* -------------------- */
@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Regular.ttf');
}

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

body {
    margin: 0;
    background: #f5f7fb; /* first CSS priority */
    color: #222;
    line-height: 1.6;
}

/* -------------------- */
/* NAVBAR / HEADER */
/* -------------------- */
.nav {
    background: linear-gradient(90deg, #0052DE, #2a6cff);
    padding: 16px 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: normal;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 5px;
    transition: 0.2s;
}

.nav-menu a:hover {
    opacity: 0.9;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    min-width: 180px;
    flex-direction: column;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-menu li a {
    color: #0052DE;
    font-weight: 500;
    display: block;
    padding: 8px 20px;
}

.dropdown-menu li a:hover {
    background: #f0f4ff;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

/* MOBILE ADAPTATION */
@media (max-width: 900px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        background: #0052DE;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
        padding: 10px;
        border-radius: 8px;
    }

    .nav-menu li {
        width: 100%;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        background: #f5f7fb;
        border-radius: 6px;
        padding: 5px 0;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* -------------------- */
/* HERO / PRODUCT HERO */
/* -------------------- */
#productContainer,
.hero {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.product-hero,
.hero-inner {
    text-align: center;
}

.product-hero p,
.hero p {
    color: #666;
    margin-bottom: 10px;
    font-size: 18px;
}

.product-hero h1,
.hero h1 {
    font-size: 44px;
    margin: 0 0 20px 0;
}

/* -------------------- */
/* PRODUCT LAYOUT / LEFT + RIGHT */
/* -------------------- */
.product-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: start;
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-right img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* -------------------- */
/* FEATURE CARDS */
/* -------------------- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-card summary {
    font-weight: 700;
    font-size: 20px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card summary::-webkit-details-marker {
    display: none;
}

.feature-card p {
    margin-top: 10px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.feature-card[open] p {
    max-height: 200px;
    opacity: 1;
}

/* -------------------- */
/* SMALL TEXT + BUTTONS + TECH SPECS */
/* -------------------- */
.product-smalltext {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.buttons {
    margin-top: 15px;
}

.buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #0052DE;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: 0.2s;
}

.buttons .secondary {
    background: #444;
}

.buttons button:hover {
    opacity: 0.9;
}

.tech-specs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.spec-box {
    background: #e9f0ff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #0052DE;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* -------------------- */
/* TESTIMONIALS */
.testimonials {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
}

.testimonial-card span {
    font-weight: 700;
    display: block;
    margin-top: 10px;
    color: #0052DE;
}

/* -------------------- */
/* HERO BUTTONS */
.hero-buttons button {
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
}

.primary {
    background: #111;
    color: white;
}

.secondary {
    background: #eee;
}

/* -------------------- */
/* PROJECTS / TEAM / FOOTER / DOCS / ANIMATIONS */
/* -------------------- */
.project {
    background: #f7f7f7;
    padding: 80px 20px;
}

.project-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-text h2 {
    margin-bottom: 10px;
}

.project-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.project-text p {
    color: #555;
    margin-bottom: 20px;
}

.project-text button {
    padding: 10px 18px;
    background: #111;
    color: white;
    border: none;
    border-radius: 5px;
}

.project-image img {
    width: 100%;
    border-radius: 10px;
}

.team {
    max-width: 900px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-grid img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-grid p {
    color: #666;
    font-size: 14px;
}

.footer {
    border-top: 1px solid #eee;
    padding: 60px 20px;
}

.footer-inner {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer a {
    display: block;
    text-decoration: none;
    color: white;
    margin-top: 5px;
    font-size: 14px;
}

.footer a:hover {
    color: #000;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: white;
}

/* DOCS LAYOUT */
.docs-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    max-width: 1100px;
    margin: auto;
}

/* DOCS SIDEBAR */
.sidebar {
    border-right: 1px solid #eee;
    padding: 30px 20px;
    height: calc(100vh - 125px);
    position: sticky;
    top: 80px;
}

.sidebar h3 {
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 8px;
}

.sidebar a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.sidebar a:hover {
    color: black;
}

.section {
    margin-top: 20px;
    font-weight: 600;
    color: #999;
}

/* DOCS CONTENT */
.content {
    padding: 40px;
    max-width: 800px;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content h2 {
    margin-top: 40px;
    margin-bottom: 10px;
}

.content p {
    margin-bottom: 15px;
    color: #444;
}

.content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

pre {
    background: #111;
    color: #eee;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 15px 0;
}

code {
    font-family: monospace;
}

.footer-links p {
    text-align: center;
}

.footer-links a {
    display: inline;
    color: white;
    font-size: 13px;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #0052DE;
}

.animated-text {
    color: #0052DE;
    font-weight: 700;
    display: inline-block;
    transition: opacity 0.5s ease-in-out;
    min-width: 120px;
}

.new-footer div {
    background-color: #242630;
    border-top: 1px solid #eee;
    padding: 10px 20px;
}
.textarea{
max-width:1100px;
margin:auto;
padding:60px 20px;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}


.textarea p{
color:#666;
}
    /* Announcement */
.announcement-bar {
    background: #ffe84a;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
}
/* ===================== */
/* HEADER / NAVBAR STYLES */
/* ===================== */

/* Base navbar */
.nav {
    background: linear-gradient(90deg, #0052DE, #2a6cff);
    padding: 16px 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: sticky; /* makes it stick at top */
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee; /* subtle separation */
}

/* Inner container for logo + menu */
.nav-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    color: white;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
}

/* Main navigation menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative; /* for dropdown positioning */
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 5px;
    transition: 0.2s;
}

.nav-menu a:hover {
    opacity: 0.9;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%; /* aligns directly below parent */
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none; /* hidden by default */
    min-width: 180px;
    flex-direction: column;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-menu li a {
    color: #0052DE;
    font-weight: 500;
    display: block;
    padding: 8px 20px;
}

.dropdown-menu li a:hover {
    background: #f0f4ff;
    border-radius: 5px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

/* -------------------- */
/* MOBILE HEADER ADAPTATION */
@media (max-width: 900px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        background: #0052DE;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
        padding: 10px;
        border-radius: 8px;
    }

    .nav-menu li {
        width: 100%;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        background: #f5f7fb;
        border-radius: 6px;
        padding: 5px 0;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}
/* FEATURES */

.features{
max-width:1100px;
margin:auto;
padding:60px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.feature h3{
margin-bottom:10px;
}

.feature p{
color:#666;
}


/* FEATURES */

.textarea{
max-width:1100px;
margin:auto;
padding:60px 20px;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}


.textarea p{
color:#666;
}

/* -------------------- */
/* MOBILE ADAPTATION */
@media (max-width: 900px){
    .product-layout {
        grid-template-columns: 1fr;
    }
    .feature-card summary {
        font-size: 18px;
    }
    .testimonials {
        grid-template-columns: 1fr;
    }
    .tech-specs {
        flex-direction: column;
        gap: 10px;
    }
}
