body {
    background: #262525;
}

* {
    font-family: "Poppins", sans-serif;
}

.left_container {
    background: #262525;
}


.content .intro {
    font-size: 1.5rem;
    color: white;
}

.content .intro span {
    color: #ffcd38;
}

.content h1 {
    font-size: 4rem;
    color: #ffcd38;
}

.content .details {
    font-size: 1.1rem;
    color: aliceblue;
    max-width: 38rem;
    margin: 1.1rem auto;
    line-height: 1.8rem;
}

.HEADLINE,
.HEADLINE1 {
    color: rgb(13, 24, 33);
    background: #ffcd38;
    border-radius: 100%;
    padding: 10px;
    display: inline-block;
    margin-bottom: 1rem;
}

.about {
    color: aliceblue;
}

footer .social-icons a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #386dff;
}

/* For skill cards */
.skill-card {
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(255, 205, 56, 0.5);
    background-color: #2c2c2c;
}

/* For project cards */
.card:hover {
    background-color: #2c2c2c;
    box-shadow: 0 0 20px rgba(255, 205, 56, 0.4);
}

/* For work experience items */
.work .list-group-item {
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.work .list-group-item:hover {
    background-color: #444;
    transform: translateX(5px);
}

/* For Education */
.education-card {
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(255, 205, 56, 0.4);
    background-color: #2c2c2c;
}

.certificate-card {
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(255, 205, 56, 0.4);
    background-color: #2c2c2c;
}

/* For contact form */
.contact a {
    transition: all 0.3s ease;
}

.contact a:hover {
    color: #42b6e3 !important;
    transform: scale(1.1);
    text-decoration: none;
}

::placeholder {
    color: #6652c0;
}

:-ms-input-placeholder {
    /* IE 10-11 */
    color: #6652c0;
}

::-ms-input-placeholder {
    /* Edge */
    color: #6652c0;
}

.hover-text {
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hover-text:hover {
    color: #ffc107;
    transform: scale(1.05);
}

/* Form inside cards with hover effects similar to demo style */
form {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 15px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    max-width: 900px;
    margin: 40px auto;
}

/* Hover effect: lift and scale, glow shadow */
form:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 20px rgba(255, 205, 56, 0.4);
    background-color: #222;
}

/* Style for the "Get in Touch" header */
h2 {
    transition: color 0.3s, transform 0.3s;
}

/* Hover effect for the header */
h2:hover {
    color: #5293d3;
    transform: translateY(-2px);
    cursor: pointer;
}

/* Labels, inputs, textarea, buttons - white text for consistency */
label,
input,
textarea,
button {
    color: #fff;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

/* Inputs and textarea styles for dark theme */
input[type="text"],
input[type="email"],
textarea {
    background-color: #1c1c1c;
    border: 1px solid #555;
    border-radius: 8px;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

/* Focus effect for inputs and textarea */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #ffc107;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
}

/* Style for submit button, hover adds glow effect and lift */
button {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}

button:hover {
    box-shadow: 0 0 15px rgba(255, 205, 56, 0.8);
    transform: translateY(-2px);
}

.equal-height .col-md-4 {
    display: flex;
}

.equal-height .card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equal-height .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}