/* Reset */
*{
     margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body */
body{
    font-family: Arial, sans-serif;
    background: #0a0f1c;
    color: white;
}
/* sidebar */
.sidebar{
    width: 250px;
    height: 100vh;
    background: #0d1326;

    position: fixed;
    left: 0;
    top: 0;

    padding: 30px 20px;

    display: flex;
    flex-direction: column;
}
/* logo */
.logo h2 {
    font-size: 28px;
}

.logo span {
    color: #2f6bff;
}
/* Menu */
.menu {
    margin-top: 40px;

    display: flex;
    flex-direction: column;
}

.menu a {
    color: #aab3c5;
    text-decoration: none;

    margin: 10px 0;
    padding: 10px;
      border-radius: 6px;
}
.menu a:hover {
    background: #1c2541;
    color: white;
}

/* CV Button */

.cv-btn {
    margin-top: auto;

    padding: 12px;
    background: transparent;

    border: 1px solid #2f6bff;
    color: white;

    cursor: pointer;
}
.cv-btn {
    margin-top: auto;
}
/* Main Content */

.main-content {
    margin-left: 250px;
}

/* Hero Section */

.hero {
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 60px;
}
/* Hero Text */

.hero-text h1 {
    font-size: 60px;
}

.hero-text span {
    color: #2f6bff;
}

.hero-buttons {
    margin-top: 20px;
}

.primary-btn {
    padding: 12px 24px;
    background: #2f6bff;
    border: none;
    color: white;
    margin-right: 10px;
}
.secondary-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #2f6bff;
    color: white;
}
/* Image */

.hero-image img {
    width: 350px;
    height: 350px;

    object-fit: cover;

    border-radius: 20px; /* soft corners */

    position: relative;
    z-index: 2;
}
/* Glow Circle */

.hero-image::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    width:40vw;
    height: 40vw;
    max-width: 650px;
    max-height: 650px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(47,107,255,0.5) 0%,
        rgba(47,107,255,0.3) 30%,
        rgba(47,107,255,0.1) 60%,
        transparent 80%
    );
    border-radius: 50%;

    z-index: 1;
}
/* About Section */
.about {
    padding: 80px 60px;
    background: #070b17;
}
/* container */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
/* Text Side */
.section-title {
    color: #2f6bff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;

    transition: all 0.3s ease;
}
.section-title:hover {
    text-shadow: 0 0 5px #2f6bff,
                 0 0 10px #2f6bff,
                 0 0 20px #2f6bff;

    transform: translateY(-2px);
}
.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about-description{
    color: #aab3c5;
    margin-bottom: 20px;
}
/* Button */
.about-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #2f6bff;
    color: white;
    cursor: pointer;
}
/* Stats */

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
/* Stat Card */

.stat-card {
    background: #0d1326;
    padding: 25px;
    border-radius: 10px;

    text-align: center;

    transition: 0.3s;
}
.stat-card i {
    font-size: 24px;
    color: #2f6bff;
    margin-bottom: 10px;
}
.stat-card h3 {
    font-size: 28px;
}

.stat-card p {
    color: #aab3c5;
}

/* Hover Effect */

.stat-card:hover {
    transform: translateY(-5px);
}
/* Skills Section*/
.skills{
    padding: 80px 60px;
    background: #0a0f1c;
}
/* Grid Layout */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
/* Skill Item */

.skill-item {
    width: 100%;
}
/* Skill Header */

/* Skills Title */

.skills-title {
    margin-bottom: 40px;
}

/* The Line */

.title-line {
    width: 60px;
    height: 3px;
    background: #2f6bff;
    margin-top: 8px;
    border-radius: 5px;
    box-shadow: 0 0 8px #2f6bff;
}
/*Skill header layout */
.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 8px;
}
/* Icon + Name */

.skill-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-name i {
    color: #2f6bff;
    font-size: 18px;
}
/* Percentage */

.skill-percent {
    font-size: 14px;
    color: #aab3c5;
}

/* Progress Bar Background */

.skill-bar {
    width: 100%;
    height: 8px;

    background: #1c2541;

    border-radius: 10px;

    overflow: hidden;
}
/* Progress Fill */

.skill-progress {
    height: 100%;
    background: #2f6bff;

    border-radius: 10px;

    transition: width 1.5s ease;
}
/* Individual Progress Widths */

.skill-progress.leadership {
    width: 90%;
}

.skill-progress.communication {
    width: 85%;
}

.skill-progress.teamwork {
    width: 80%;
}

.skill-progress.problemsolving {
    width: 88%;
}
.skill-progress.conflictresolution{
    width: 90%;
}
.skill-progress.strategicplanning{
    width: 75%;
}
.skill-progress.publicspeaking{
    width: 70%;
}
/* Services Section */

.services {
    padding: 80px 60px;
    background: #070b17;
}
/* Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
/* Card */

.service-card {
    background: #0d1326;
    padding: 30px;
    border-radius: 10px;

    transition: 0.3s;
}
/* Service Image */

.service-img {
    width: 50px;
    height: 50px;

    object-fit: cover;

    border-radius: 10px;

    margin-bottom: 15px;

    border: 2px solid #2f6bff;
}
/* Title */

.service-card h3 {
    margin-bottom: 10px;
}
/* Text */

.service-card p {
    color: #aab3c5;
    font-size: 14px;
}
/* Hover Effect */

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px rgba(47, 107, 255, 0.4);
}
/* Projects Section */

.projects {
    padding: 80px 60px;
    background: #0a0f1c;
}
/* Grid */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
/* Card */

.project-card {
    background: #0d1326;
    border-radius: 10px;
    overflow: hidden;

    transition: 0.3s;
}
/* Image */

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/* Content */

.project-content {
    padding: 20px;
}

.project-content h3 {
    margin-bottom: 10px;
}
.project-content p {
    color: #aab3c5;
    font-size: 14px;
}

/* Hover */

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px rgba(47, 107, 255, 0.4);
}
/* Tabs Section */

.tab-section {
    padding: 80px 60px;
    background: #0a0f1c;
}
/* Tabs */

.tabs {
    margin: 30px 0;
}

.tab-btn {
    padding: 10px 20px;
    margin-right: 10px;

    background: transparent;
    border: 1px solid #2f6bff;
    color: white;

    cursor: pointer;
    transition: 0.3s;
}
/* Active Tab */

.tab-btn.active {
    background: #2f6bff;
}

/* Tab Content */

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}
/* Contact Section */

.contact {
    padding: 80px 60px;
    background: #070b17;
}

/* Layout */

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}
/* Left Side */

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info p {
    color: #aab3c5;
    margin-bottom: 20px;
}
/* Info Items */

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    color: #2f6bff;
    margin-right: 10px;
}
/* Form */

.contact-form {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    background: #0d1326;
    border: 1px solid #1c2541;
    color: white;
}
.contact-form button {
    padding: 12px 20px;
    background: #2f6bff;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hover */

.contact-form button:hover {
    box-shadow: 0 0 10px #2f6bff;
}
html {
    scroll-behavior: smooth;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px #2f6bff;
}
.service-card,
.project-card {
    transition: all 0.3s ease;
}

.service-card:hover,
.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3),
                0 0 15px rgba(47,107,255,0.3);
}
.project-card img {
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}
.menu a.active {
    background: #1c2541;
    color: white;
}
.sidebar {
    width: 250px;
    height: 100vh;
    background: #0d1326;

    position: fixed;
    left: 0;
    top: 0;

    padding: 30px 20px;

    display: flex;
    flex-direction: column;
}
/* Socials */

.socials {
    display: flex;
    justify-content: space-between;

    margin-top: 20px;
}

.socials a {
    color: #aab3c5;
    font-size: 16px;

    transition: 0.3s;
}

.socials a:hover {
    color: #2f6bff;
    transform: translateY(-3px);
}
/* Sidebar Footer */

.sidebar-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #aab3c5;
    text-align: center;
}
.socials {
    justify-content: center;
    gap: 15px;
}
.credit a {
    color: #6c748a;
    text-decoration: none;
}

.credit a:hover {
    color: #2f6bff;
    text-shadow: 0 0 5px #2f6bff;
}