@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&display=swap');

:root {
    --bg-black-900: #f2f2fc;
    --bg-black-100: #fdf9ff;
    --bg-black-50: #e8dfec;
    --text-black-900: #302e4d;
    --text-black-700: #504e70;
    --transition-speed: 0.5s;
}

body {
    /* background-color: var(--bg-black-900); */
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

::before,
::after {
    box-sizing: border-box;
}

ul {
    list-style: none;
}

.section {
    background: var(--bg-black-900);
    min-height: 100vh;
    display: block;
    padding: 0 30px;
    opacity: 1;
}

.hidden {
    display: none !important;
}

.main-content {
    padding-left: 270px;
}

.padd-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

.section .container {
    padding-top: 60px;
    padding-bottom: 70px;
}

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--text-black-900);
    font-weight: 700;
    position: relative;
}

.section-title h2::before {
    content: '';
    height: 4px;
    width: 80px;
    background-color: var(--skin-color);
    position: absolute;
    top: 55px;
    left: 0;
}

.section-title h2::after {
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 60px;
    left: 0;
    margin-top: 8px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

.btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background: var(--skin-color);
    transition: all 0.3 ease;
}

.btn:hover {
    transform: scale(1.05);
}

.shadow-dark {
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}



.home {
    min-height: 100vh;
    display: flex;
    color: var(--text-black-900);
}

.home .home-info {
    flex: 0 0 60%;
    max-width: 60%;

}

h3.hello {
    font-size: 28px;
    margin: 15px 0;
}

h3.hello {
    font-size: 28px;
    margin: 15px 0;
}

h3.hello span {
    font-family: 'Clicker Script', cursive;
    font-size: 30px;
    font-weight: 700;
    color: var(--skin-color);
}

h3.my-profession {
    font-size: 30px;
    margin: 15px 0;
}

.typing {
    color: var(--skin-color);
}

.home-info p {
    margin-bottom: 70px;
    font-size: 20px;
    color: var(--text-black-700)
}

.home .home-img {
    flex: 0 0 40%;
    max-width: 40%;
    text-align: center;
    position: relative;
}

.home-img::after {
    content: '';
    position: absolute;
    height: 80px;
    width: 80px;
    border-bottom: 10px solid var(--skin-color);
    border-right: 10px solid var(--skin-color);
    right: 8px;
    bottom: -40px;
}

.home-img::before {
    content: '';
    position: absolute;
    height: 80px;
    width: 80px;
    border-top: 10px solid var(--skin-color);
    border-left: 10px solid var(--skin-color);
    left: 8px;
    top: -40px;
}

.home .home-img img {
    margin: auto;
    border-radius: 5px;
    height: 350px;
    width: 380px;
}

/*About*/
.about .about-content {
    flex: 0 0 100%;
    max-width: 100%;
}

.about .about-content .about-text {
    flex: 0 0 100%;
    max-width: 100%;

}

.about .about-content .about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-black-900);
}

.about .about-content .about-text h3 span {
    color: var(--skin-color);
}

.about .about-content .about-text p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
}

.about .about-content .personal-info {
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;
}

.about .about-content .personal-info .info-item {
    flex: 0 0 50%;
    max-width: 50%;
}

.about .about-content .personal-info .info-item p {
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-black-900);
    border-bottom: 1px solid var(--bg-black-50);
}

.about .about-content .personal-info .info-item p span {
    font-weight: 400;
    color: var(--text-black-700);
    margin-left: 4px;
    display: inline-block;
}

.about .about-content .personal-info .buttons {
    margin-top: 30px;
}

.about .about-content .personal-info .buttons.btn {
    margin-right: 15px;
    margin-top: 10px;

}

.about .about-content .skills {
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 40px;
}

.about .about-content .skills .skill-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.about .about-content .skills .skill-item h5 {
    line-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-black-900);
    text-transform: capitalize;
}

.about .about-content .education,
.about .about-content .experience {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30px;
}

.about .about-content h3.title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-black-900);
}

.about .about-content .timeline-box {
    flex: 0 0 100%;
    max-width: 100%;
}

.about .about-content .timeline {
    background-color: var(--bg-black-100);
    padding: 30px 15px;
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    width: 100%;
    position: relative;
}

.about .about-content .timeline .timeline-item {}

.resume .resume-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #050d18;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #1f5297;
    position: relative;
}

.resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #050d18;
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 16px;
    background: #e4edf9;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.resume .resume-item ul {
    padding-left: 20px;
}

.resume .resume-item ul li {
    padding-bottom: 10px;
}

.resume .resume-item:last-child {
    padding-bottom: 0;
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #1f5297;
}

.professional-info {
    margin-top: 20px;
    font-family: Arial, sans-serif;
    background-color: #f5f8fd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0;
}

.professional-info h2 {
    text-align: center;
    font-size: 26px;
    /* Adjusted font size */
    margin-bottom: 20px;
    font-weight: 700;
    color: #173b6c;
}

.professional-info ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.professional-info ul li {
    width: calc(50% - 10px);
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 15px;
    background-color: #f5f8fd;
    /* Light sky blue color */
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.facts {
    padding-bottom: 30px;
}

.facts .count-box {
    padding: 30px;
    width: 100%;
}

.facts .count-box i {
    display: block;
    font-size: 44px;
    color: #149ddd;
    float: left;
    line-height: 0;
}

.facts .count-box span {
    font-size: 48px;
    line-height: 40px;
    display: block;
    font-weight: 700;
    color: #050d18;
    margin-left: 60px;
}

.facts .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 60px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #122f57;
}

.facts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #122f57;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
    color: #1f5297;
}

.achievements {
    padding: 40px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.professional-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    overflow: hidden;
}

.professional-info h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.professional-info ul {
    list-style: none;
    padding: 0;
}

.professional-info li {
    margin-bottom: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.professional-info li:last-child {
    border-bottom: none;
}

.professional-info li strong {
    color: #007bff;
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Hover effect for list items */
.professional-info li:hover {
    background-color: #f5f5f5;
    transform: scale(1.02);
    transition: background-color 0.3s ease, transform 0.3s ease;
}


/* Style for skills section */
/* Updated style for education and certification sections */
.education,
.certification {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.education-item,
.certification-item {
    width: 48%;
    /* Adjust as needed */
    padding: 15px;
    border: 2px solid red;
    /* Outline color */
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    /* Ensures the border is included in the box size */
    text-align: center;
    /* Center the content */
}

.education-item:hover,
.certification-item:hover {
    transform: scale(1.05);
}

.education-item h5,
.certification-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.education-item p,
.certification-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Add some spacing between items */
.education-item+.education-item,
.certification-item+.certification-item {
    margin-left: 10px;
}

/* Style for Academics section */
.academics {
    text-align: center;
    /* Center the content */
}

.academics-box {
    background-color: #f8f8f8;
    /* Box background color */
    padding: 30px;
    padding-top: 50px;
    /* Add padding to the box */
    border-radius: 10px;
    /* Add rounded corners to the box */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    /* Add a subtle box shadow */
    display: inline-block;
    /* Display as inline-block to center it */
}

.resume-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f5297;
    transition: color 0.3s ease;
    /* Add transition effect for color change */
}

.resume-item {
    margin-bottom: 20px;
    border-left: 2px solid transparent;
    /* Add a transparent border for hover effect */
    transition: transform 0.3s ease, border-color 0.3s ease;
    /* Add transition effect for transform and border color change */
    position: relative;
    /* Position relative for pseudo-element */
}

.resume-item:hover {
    transform: scale(1.05);
    /* Scale up on hover */
    border-color: #1f5297;
    /* Change border color on hover */
}

.resume-item h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.resume-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f5297;
}

.resume-item p {
    font-size: 16px;
    color: #555;
    width: 90%;
    margin: auto;
}

.resume-item::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1f5297;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    /* Initially hidden */
}

.resume-item:hover::before {
    opacity: 1;
    /* Visible on hover */
}