/* MAIN LAYOUT: TWO COLUMNS */
.layout {
    display: flex;
    height: 100vh;
}

/* LEFT COLUMN = DARK MENU */
.sidebar {
    width: 240px;
    background: #1e1e2f;
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    position: sticky;
    top: 0;
}

/* LOGO */
.icon-logo {
    font-size: 2.4rem;
    padding: 18px;
    background: #4f46e5;
    color: white;
    border-radius: 12px;
    font-weight: 900;
    margin-bottom: 40px;
}

/* MENU */
.nav-links {
    list-style: none;
    padding: 0;
    width: 100%;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 8px 5px;
    text-align: left;
}
/* MAIN LAYOUT: TWO COLUMNS */
.layout {
    display: flex;
    height: 100vh;
}

/* LEFT COLUMN = YELLOW MENU */
.sidebar {
    width: 260px;
    background: #FFFA00;
    color: black;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    position: sticky;
    top: 0;
}

/* LOGO */
.icon-logo {
    font-size: 2.4rem;
    padding: 18px;
    background: #4f46e5; /* PURPLE */
    color: white;
    border-radius: 12px;
    font-weight: 900;
    margin-bottom: 20px;
}

/* BRAND TITLE */
.brand-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    color: black;
}

/* MENU */
.nav-links {
    list-style: none;
    padding: 0;
    width: 100%;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 8px 5px;
    text-align: left;
}

.nav-links a:hover {
    background: rgba(0,0,0,0.1);
    border-radius: 6px;
}

/* RIGHT COLUMN = BLUE BACKGROUND */
.content-area {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
    background:#00A8FF;
}
/* Features Section */
.features {
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}



/* CONTENT BOXES ALSO BLUE */
.hero,
.features,
.contact {
    background: #5BC0F8; /* SAME BLUE AS BACKGROUND */
    color: black;
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: none; /* remove white card look */
}

/* HERO HEADING = WHITE TEXT ON PURPLE */
.hero {
    background: #4f46e5; /* PURPLE */
    color: white;
}

.hero h1 {
    color: white;
}

.hero p {
    color: white;
}
/* BEAUTIFUL BIG HEADING */
.hero-heading {
    font-family: "Poppins", sans-serif; /* or "Montserrat" */
    font-size: 3.2rem;                  /* BIG heading */
    font-weight: 700;                   /* Bold, premium */
    color: white;                       /* White text */
    text-align: center;                 /* Centered */
    margin-bottom: 20px;
    letter-spacing: 1px;                /* Elegant spacing */
}
