/* STYLING */
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    background-image: url(images/section_dot_bg.png);  
    overflow-x: hidden;
    min-height: 100vh;
}
.hero-head{
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
.nav-bar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
    background-color: #EDEBF1;
    text-align: center;
}

.nav-bar > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-bar > div:first-child img {
    max-width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

nav ul{
    list-style:none;
    font-weight: bold;
    display: flex;
}
nav ul li a{
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}
nav ul li a:hover {
  color: #674CAE;
}
nav ul li a[aria-current="page"] {
    color: #674CAE;
}
.nav-list{
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 20px;
    margin: 0;
    padding: 0; 
}
.side-bar{
    position:fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box
}
.side-bar li{
    width: 100%;
    list-style: none;
}
.side-bar li a {
    display: flex;
    width: 100%;
    padding: 12px 10px;
    box-sizing: border-box;
    text-decoration: none;
    color: #000000;
}
.side-bar .close-button {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.side-bar .close-button a {
    width: auto;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.side-bar .close-button svg {
    width: 28px;
    height: 28px;
}
.list-content .menu-button{
    display: none;
}
@media(max-width:800px){
    .hideOnMobile,
    .contact-container{
        display: none;
    }
    .list-content .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media(max-width: 400px) {
    .side-bar{
        width: 100%;
    }
}
.list-content{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-me-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #27194C;
    color: #ffffff;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 7px;
    width: 163px;
    height: 55px;
    padding: 0px;
}

.contact-me-button:hover {
    background-color: #674cae;
}
.contact-container a{
    text-decoration: none;
}
.contact-container {
    text-decoration: none;
}
.menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-button a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    margin-top: 125px;
}
.image-container{
    position: relative;
    width: 500px;
    max-width: 100%;
    padding: 18px;
}
.floating-background{
    background: #27194C;
    position: absolute;
    height: 100%;
    width: 100%;
    top: -35px;
    left: 35px;
    z-index: 0;
    border-radius: 10px;
}
.image-frame {
    position: relative;
    background-color: #E3E6E9;
    padding: 18px;
    border-radius: 10px;
    overflow: hidden;
    height: 520px;
    z-index: 1;
}
.image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    left: 0;
    bottom: 0;
    object-fit: contain;
}
.hero-text h3{
    font-family: Georgia, "Times New Roman", serif;
}
.hero-text{
    max-width: 600px;
    font-family: Arial, Helvetica, sans-serif;
}
.welcome-text {
    color: #27194C;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.hero-title {
    color: #27194C;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}
.hero-title span {
    color: #674CAE;
}
.job-title {
    color: #27194C;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-description {
    color: #555555;
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 30px;
}
.hero-button {
    display: flex;
    gap: 20px;
    align-items: center;
}
.hero-button a,
.about-content a {
    text-decoration: none;
}

.hire-button {
    background-color: #27194C;
    color: white;
    border: none;
    border-radius: 7px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.learn-button {
    background-color: #674CAE;
    color: white;
    border: none;
    border-radius: 7px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.hire-button:hover {
    background-color: #674CAE;
}
.learn-button:hover {
    background-color: #27194C;
}
.hire-button, .learn-button {
    transition: 0.3s ease;
}

.hire-button:hover, .learn-button:hover {
    transform: translateY(-3px);
}
.about-section{
    min-height: calc(100vh - 90px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}
.about-image-container{
    position: relative;
    width: 50%;
    max-width: 500px;
    padding: 18px;
}
.about-floating-background{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -25px;
    left: -25px;
    background-color: #27194C;
    border-radius: 5px;
    z-index: 0;
}
.about-image {
    position: relative;
    background-color: #E3E6E9;
    padding: 18px;
    border-radius: 5px;
    overflow: hidden;
    height: 520px;
    z-index: 1;
}
.about-image img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    object-position: center;
    
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.about-details {
    width: 50%;
    max-width: 550px;
    font-family: Arial, Helvetica, sans-serif;
}
.about-title {
    color: #27194C;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}
.about-text {
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.help-title {
    color: #27194C;
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.about-hire-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    margin-top: 10px;
    background-color: #27194C;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}
.about-hire-button:hover {
    background-color: #674CAE;
    transform: translateY(-2px);
}
.services-section {
    min-height: calc(100vh - 90px);
    padding: 70px 40px 80px;
    background: linear-gradient(to right, #27194C, #674CAE);
    font-family: Arial, Helvetica, sans-serif;
}
.home-services {
    min-height: auto;
    padding: 60px 40px;
}
.service-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}
.service-heading h1 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 15px;
    font-family: Georgia, "Times New Roman", serif;
}
.service-heading p {
    color: #EDEBF1;
    font-size: 16px;
    line-height: 1.6;
}
.services-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.service-card {
    min-height: 220px;
    padding: 30px;
    background-color: #674CAE;
    border-radius: 6px;
    color: white;
    transition: 0.3s ease;
}
.service-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 15px;
    line-height: 1.6;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 18px;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-card:hover {
    background-color: #27194C;
}
.service-card:hover h2,
.service-card:hover p {
    color: #ffffff;
}
.service-card:hover .service-icon {
    background-color: #ffffff;
}
.view-more-container {
    margin-top: 45px;
    text-align: center;
}
.view-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 14px 28px;
    background-color: #674CAE;
    color: #ffffff;
    border-radius: 6px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}
.view-more-button:hover {
    background-color:#27194C ;
    transform: translateY(-3px);
}
.projects-section {
    min-height: calc(100vh - 90px);
    padding: 60px 40px 70px;
}
.projects-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 35px;
}

.projects-heading h1 {
    color: #27194C;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.projects-heading p {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.projects-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.project-link {
    width: calc((100% - 30px) / 3);
    text-decoration: none;
}
.project-card {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #EDEBF1;
    box-shadow: 0 8px 20px rgba(39, 25, 76, 0.12);
}
.project-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover img {
    transform: scale(1.05);
}
.project-card {
    transition: 0.3s ease;
}
.project-card:hover {
    transform: translateY(-4px);
}
.project-card p {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(39, 25, 76, 0.92));
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
}
.projects-view-more {
    margin-top: 40px;
    text-align: center;
}
.projects-view-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 14px 28px;
    background-color: #27194C;
    color: #ffffff;
    border-radius: 6px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
}
.projects-view-more-button:hover {
    background-color: #674CAE;
    transform: translateY(-3px);
}
.testimonial-section {
    min-height: calc(100vh - 90px);
    padding: 70px 40px 40px;
    font-family: Arial, Helvetica, sans-serif;
}
.testimonial-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 15px;
}
.testimonial-heading h1 {
    color: #27194C;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
}
.testimonial-heading p {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.testimonial-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background-color: #F4F2F7;
    padding: 25px;
    border-radius: 5px;
    min-height: 220px;
    transition: 0.3s ease;
    border: 1px solid #EDEBF1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(39, 25, 76, 0.12);
}
.person-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.person-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.person-details h2 {
    color: #27194C;
    font-size: 16px;
    margin: 0 0 5px;
}
.person-details p {
    color: #777777;
    font-size: 13px;
    margin: 0;
}
.testimonial-text {
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.contact-section {
    min-height: calc(100vh - 90px);
    padding-top: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:#27194C;
    padding: 100px 90px;
    border-radius: 9px;
}
.contact-content h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-content p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 30px;
}
.contact-section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #372761;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 3px;
    transition: 0.3s ease;
    border: none;
}
.contact-section-button:hover {
    background-color: #674CAE;
    color: #ffffff;
    transform: translateY(-3px);
}

.articles-section {
    width: 100%;
    padding: 70px 40px 80px;
    font-family: Arial, Helvetica, sans-serif;
}

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

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-heading h1 {
    color: #27194C;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Georgia, "Times New Roman", serif;
}

.heading-description {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    padding: 0 10px;
}

.article-link {
    text-decoration: none;
    color: inherit;
}

.article-card {
    background-color: #ffffff;
    border: 1px solid #EDEBF1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(39, 25, 76, 0.12);
    background-color: #27194C;
}

.article-card:hover .article-category,
.article-card:hover .article-content h2,
.article-card:hover .article-text {
    color: #ffffff;
}

.article-card:hover .article-number {
    background-color: #ffffff;
    color: #27194C;
}

.article-image {
    width: 100%;
    height: 230px;
    position: relative;
    overflow: hidden;
    background-color: #F4F2F7;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #27194C;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.article-content {
    padding: 25px;
}

.article-category {
    color: #674CAE;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.article-content h2 {
    color: #27194C;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
}

.article-text {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.footer {
    width: 100%;
    background-color: #27194C;
    color: white;
    padding-top: 65px;
}

.footer-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 55px;
}

.footer-brand,
.footer-column {
    align-self: start;
}

.footer-brand {
    max-width: 400px;
    width: 100%;
    align-self: start;
}

.footer-logo-link {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-logo {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
}

.footer-description {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.75);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 28px;
}

.footer-column h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 25px;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin-top: 0;
}

.footer-column {
    width: 100%;
    align-self: start;
}

.footer-column p {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12.5px;
    line-height: 1.8;
    margin: 0 0 16px;
    font-weight: 400;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #ffffff;
    flex-shrink: 0;
}

.footer-icon svg,
.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12.5px;
    transition: 0.3s ease;
    font-weight: 400;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    /* flex-wrap: wrap; */
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: 0.3s ease;
}

.social-icon:hover {
    color: #d7c8ff;
    transform: translateY(-2px);
    background: transparent;
}

.footer-bottom {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}



/* about page */
body {
    font-family: Arial, Helvetica, sans-serif;
}
.about-image-box {
    width: 100%;
    max-width: 500px;
    margin: auto;
}
.about-image-border {
    width: 100%;
    padding: 15px 15px 15px 15px;
    border-top: 8px solid #5d48c9;
    border-left: 8px solid #5d48c9;
    border-radius: 3px;
}
.about-image {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
}
.skills-section {
    min-height: 800px;
    padding: 70px 0 80px;
    background-color: #27194C;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(115deg, #27194C 0%, #674CAE 100%);
    background-position: 62% 18%, center;
    background-size: 10px 10px, cover;
}

.skills-container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    grid-template-rows: auto 1fr;
    gap: 55px 70px;
    align-items: start;
}

.skills-intro {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
}

.skills-intro h1 {
    font-size: 52px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: -0.03em;
}

.skills-description {
    max-width: 600px;
    font-size: 17px;
    line-height: 1.7;
}

.skills-list {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 30px;
    max-width: none;
    margin: 0;
}

.skill-item {
    padding: 22px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.08);
}

.skill-info {
    margin-bottom: 16px;
    font-size: 18px;
}

.progress-bar {
    height: 18px;
    background-color: #27194C;
    border-radius: 3px;
}

.progress {
    background-color: #F4F2F7;
    border-radius: 0;
}

.html-progress { width: 95%; }
.css-progress { width: 90%; }
.react-progress { width: 75%; }
.python-progress { width: 75%; }
.flutter-progress { width: 70%; }
.javascript-progress { width: 80%; }
.sketch-progress { width: 50%; }
.tailwind-progress { width: 60%; }

.technology-icons {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(2, 92px);
    justify-content: center;
    align-content: center;
    gap: 28px;
    min-height: 520px;
    margin: 0;
}

.tech-icon {
    position: static;
    width: 92px;
    height: 92px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background-color: rgba(39, 25, 76, 0.78);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.03);
}

.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-icon:hover {
    background-color: #ffffff;
    transform: translateY(-6px);
}
.logo-container {
    display: inline-flex;
    align-items: center;
}

.logo-container img {
    display: block;
    width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.skills-section {
    background: linear-gradient(135deg, #5C48C5, #7864DC);
    font-family: Arial, Helvetica, sans-serif;
}

.about-title,
.help-title {
    font-family: Georgia, "Times New Roman", serif;
}

.section-label {
    margin-bottom: 10px;
    color: #EDEBF1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.skills-container {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 36px 70px;
    align-items: start;
}

.skills-intro {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
}

.skills-intro h1 {
    font-family: Georgia, "Times New Roman", serif;
}

.skills-list {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin: 0;
}

.technology-icons {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-content: center;
    gap: 18px;
    margin-top: 0;
}

.tech-icon {
    background-color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.tech-icon img {
    display: block;
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.tech-icon:hover {
    background-color: #EDEBF1;
}
.articles-view-more {
    margin-top: 20px;
    text-align: center;
}
.articles-view-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 50px;
    background-color: #27194C;
    color: #ffffff;
    border-radius: 6px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}
.articles-view-more-button:hover {
    background-color: #674CAE;
    transform: translateY(-3px);
}

/* RESPONSIVENESS */

@media (max-width: 900px) {
    .nav-bar {
        padding: 20px 30px;
    }

    .nav-bar > div:first-child img {
        max-width: 100px;
        max-height: 50px;
    }

    .list-content {
        gap: 20px;
        padding: 0;
    }

    .nav-list {
        gap: 18px;
        font-size: 18px;
    }

    .hero-content {
        padding: 50px 30px;
        gap: 25px;
    }
}


@media (max-width: 650px){

    
    .nav-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }

    .nav-bar > div:first-child {
        display: flex;
        align-items: center;
    }

    .nav-bar > div:first-child img {
        max-width: 90px;
        max-height: 45px;
    }

    .list-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        gap: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 18px;
        text-align: center;
        width: 100%;
    }
    .nav-list li {
        width: auto;
    }

    .contact-me-button {
        width: 163px;
        height: 50px;
    }
    .hero-section {
        padding-top: 20px;
        
    }    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .image-container {
        order: 1;
        position: relative;
        width: 90%;
        max-width: 400px;
        height: 360px;
        margin: 0 auto;
        margin-top: 0 !important;
    }

    .floating-background {
        display: none;
    }

    
    .image-frame {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #e9ecef;
        border-radius: 8px;
        overflow: hidden;
        z-index: 2;
    }

    .image-frame img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: bottom center;
    }

    .hero-text {
        order: 2;
        position: relative;
        width: 100%;
        max-width: 100%;
        text-align: center;
        z-index: 3;
    }

    .welcome-text {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .job-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-button {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 900px) {

    .about-content {
        gap: 40px;
    }

    .about-title {
        font-size: 34px;
    }

    .about-image img {
        height: 450px;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 650px) {

    .about-section {
        padding-top: 20px;
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
    }


    .about-image-container {
        width: 90%;

        max-width: 450px;
    }

    .about-image {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .about-floating-background{
        display: none;
    }
    .about-image img {
        width: 100%;
        height: 100%;
        bottom: 0;
        display: block;
        object-fit: contain;
        object-position: center bottom;
    }


    .about-details {
        width: 100%;
        max-width: 550px;
    }


    .about-title {
        font-size: 32px;
    }


    .help-title {
        font-size: 23px;
    }


    .about-hire-button {
        margin-left: auto;
        margin-right: auto;
    }

    .services-section {
        padding: 60px 20px;
    }

    .service-heading h1 {
        font-size: 32px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

}
@media (max-width: 900px) {

    .projects-section {

        padding: 50px 30px;
    }


    .projects-heading h1 {

        font-size: 35px;
    }


    .projects-grid {

        gap: 15px;
    }


    .project-link {

        width: calc((100% - 15px) / 2);
    }

}
@media (max-width: 650px) {

    .projects-section {

        padding: 45px 20px 60px;
    }


    .projects-heading {

        margin-bottom: 30px;
    }


    .projects-heading h1 {

        font-size: 30px;
    }


    .projects-heading p {

        font-size: 14px;
    }


    .projects-grid {

        flex-direction: column;

        align-items: center;

        gap: 20px;
    }


    .project-link {

        width: 100%;

        max-width: 450px;
    }

    .projects-view-more {
        margin-top: 30px;
    }

    .projects-view-more-button {
        width: 100%;
        max-width: 450px;
    }

}
@media (max-width: 900px) {

    .testimonial-section {

        padding: 50px 30px;
    }


    .testimonial-heading h1 {

        font-size: 35px;
    }


    .testimonial-container {

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

    .testimonial-card:nth-child(3) {
        grid-column: 1 / -1;
        width: calc((100% - 18px) / 2);
        justify-self: center;
    }

}

@media (max-width: 650px) {

    .testimonial-section {

        padding: 45px 20px 60px;
    }


    .testimonial-heading {

        margin-bottom: 15px;
    }


    .testimonial-heading h1 {

        font-size: 30px;

        line-height: 1.3;
    }


    .testimonial-heading p {

        font-size: 14px;
    }


    .testimonial-container {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .testimonial-card {

        padding: 22px;
    }

.testimonial-card:nth-child(3) {
        grid-column: auto;
        width: auto;
    }

}

@media (max-width: 900px) {

    .contact-section {
        padding: 50px 30px;
    }

    .contact-content {
        padding: 80px 60px;
        max-width: 800px;
    }

}

@media (max-width: 650px) {

    .contact-content {
        padding: 60px 30px;
        max-width: 100%;
    }

    .contact-content h1 {

        font-size: 32px;

        line-height: 1.3;
    }


    .contact-content p {

        font-size: 14px;

        max-width: 350px;

        margin-bottom: 25px;
    }


    .contact-section-button {

        padding: 12px 25px;

        font-size: 14px;
    }


    .social-links {

        margin-top: 25px;

        gap: 12px;
    }


    .social-link {

        width: 36px;

        height: 36px;
    }


    .social-link img {

        width: 16px;

        height: 16px;
    }
}

@media (max-width: 900px) {

    .contact-section {
        padding: 50px 30px;
    }

    .contact-content {
        padding: 80px 60px;
        max-width: 800px;
    }

    .articles-section {
        padding: 60px 30px;
    }

    .section-heading h1 {
        font-size: 35px;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media (max-width: 650px) {

    .articles-section {
        padding: 45px 20px 60px;
    }

    .section-heading h1 {
        font-size: 30px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-image {
        height: 200px;
    }

    .article-content {
        padding: 20px;
    }

    .article-content h2 {
        font-size: 16px;
    }

    .article-category {
        font-size: 10px;
    }

    .article-text {
        font-size: 13px;
    }
    .articles-view-more {
    margin-top: 30px;
}
    .articles-view-more-button {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 650px) {

    .contact-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .contact-content {
        padding: 60px 30px;
        max-width: 100%;
    }

    .contact-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .contact-content p {
        font-size: 14px;
        max-width: 350px;
        margin-bottom: 25px;
    }

    .contact-section-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .social-links {
        margin-top: 25px;
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link img {
        width: 16px;
        height: 16px;
    }

}
@media screen and (max-width: 768px) {

    .footer {
        padding-top: 55px;
    }

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 500px;
    }

}
@media screen and (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: auto;

        max-width: 100%;
    }


    .footer-logo {
        font-size: 27px;
    }


    .footer-description {
        max-width: 100%;

        font-size: 12px;
    }


    .footer-column h3 {
        font-size: 14px;

        margin-bottom: 17px;
    }


    .footer-column p {
        font-size: 11px;
    }


    .footer-links {
        grid-template-columns: 1fr 1fr;

        gap: 12px 20px;
    }


    .footer-links li a {
        font-size: 11px;
    }


    .footer-bottom {
        width: 88%;
    }

    .footer-bottom p {
        font-size: 10px;

        line-height: 1.6;
    }

}
@media screen and (max-width: 400px) {

    .footer-container {
        width: 90%;
    }


    .footer-logo {
        font-size: 25px;
    }


    .footer-description {
        font-size: 11px;
    }


    .footer-links {
        gap: 10px;
    }


    .footer-links li a {
        font-size: 10px;
    }


    .social-icon {
        width: 29px;
        height: 29px;

        font-size: 10px;
    }


    .footer-bottom {
        width: 90%;
    }

}

@media (max-width: 900px) {
    .skills-section {
        min-height: auto;
    }

    .skills-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 40px;
    }

    .skills-intro,
    .skills-list,
    .technology-icons {
        grid-column: auto;
        grid-row: auto;
    }

    .technology-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        min-height: auto;
        gap: 20px;
    }

    .tech-icon {
        position: static;
        width: 76px;
        height: 76px;
    }
}

@media (max-width: 650px) {
    .skills-section {
        padding: 55px 0 65px;
        background-position: 75% 14%, center;
    }

    .skills-intro {
        text-align: left;
    }

    .skills-intro h1 {
        font-size: 38px;
    }

    .skills-description {
        font-size: 15px;
    }

    .skills-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-info {
        font-size: 16px;
    }

    .progress-bar {
        height: 14px;
    }

    .technology-icons {
        gap: 14px;
    }

    .tech-icon {
        width: 62px;
        height: 62px;
        padding: 12px;
    }
}

@media (max-width: 900px) {
    .skills-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skills-intro,
    .skills-list,
    .technology-icons {
        grid-column: auto;
        grid-row: auto;
    }

    .technology-icons {
        margin-top: 0;
    }
}

@media (max-width: 650px) {
    .logo-container img {
        width: 100px;
    }

    .skills-section {
        min-height: auto;
        padding: 55px 0;
    }

    .skills-container {
        width: 88%;
    }

    .skills-intro {
        text-align: center;
    }

    .skills-intro h1 {
        font-size: 32px;
    }

    .skills-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .technology-icons {
        gap: 14px;
    }

    .tech-icon {
        width: 54px;
        height: 54px;
    }
}

.skills-section {
    min-height: 800px;
    padding: 70px 0 80px;
    background-color: #27194C;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(115deg, #27194C 0%, #674CAE 100%);
    background-position: 62% 18%, center;
    background-size: 10px 10px, cover;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.skills-container {
    width: 85%;
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 45px;
    align-items: stretch;
}

.skills-intro {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    text-align: left;
}

.skills-intro h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 52px;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
}

.skills-description {
    max-width: 600px;
    font-size: 17px;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
}

.skills-list {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.skill-item {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.skill-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.progress-bar {
    width: 100%;
    height: 18px;
    background-color: #27194C;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #F4F2F7;
    border-radius: 0;
}

.technology-icons {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, 65px);
    gap: 18px;
    justify-content: center;
    align-content: center;
    align-self: stretch;
    min-height: 0;
}

.tech-icon {
    position: static;
    width: 65px;
    height: 65px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tech-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.skill-item:hover,
.tech-icon:hover {
    background-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .skills-section { min-height: auto; }
    .skills-container { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        gap: 40px; 
    }
    .skills-intro, .skills-list, .technology-icons { 
        grid-column: auto; 
        grid-row: auto; 
    }
    .technology-icons { 
        display: grid; 
        grid-template-columns: repeat(2, 76px); 
        min-height: auto; 
        gap: 20px; 
    }
    .tech-icon { 
        position: static; 
        width: 76px; 
        height: 76px; 
    }
}

@media (max-width: 650px) {
    .skills-section { padding: 55px 0 65px; background-position: 75% 14%, center; }
    .skills-container { width: 88%; }
    .skills-intro h1 { font-size: 38px; }
    .skills-description { font-size: 15px; }
    .skills-list { grid-template-columns: 1fr; gap: 16px; }
    .skill-info { font-size: 16px; }
    .progress-bar { height: 14px; }
    .technology-icons { grid-template-columns: repeat(2, 62px); gap: 14px; }
    .tech-icon { width: 62px; height: 62px; padding: 12px; }
}
/* SERVICE PAGE */
.service-page .services-section{
    background: #ffffff ;
    background-image: none ;
}
.service-page .nav-bar {
    background-color: #f1f1f1 !important;
}
.service-page .service-heading h1 {
    color: #27194C;
}

.service-page .service-heading p {
    color: #555555;
}
.service-page .contact-section {
    background: #ffffff !important;
    background-image: none !important;
}
.project-page, .blog-page, .contact-page{
    background: #ffffff ;
}
.contact-page-section {
    width: 100%;
    padding: 70px 40px 60px;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
.contact-page-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}
.contact-page-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}
.contact-page-heading h1 {
    color: #27194C;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    margin-bottom: 12px;
}
.contact-page-heading p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.contact-page-content {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 45px;
    align-items: stretch;
}
.contact-form-container {
    width: 100%;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #555555;
    font-size: 13px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #EDEBF1;
    background-color: #F8F7FA;
    border-radius: 4px;
    padding: 13px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    outline: none;
    color: #27194C;
}

.form-group input {
    height: 45px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #674CAE;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}
.contact-form-container {
    width: 100%;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #555555;
    font-size: 13px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #EDEBF1;
    background-color: #F8F7FA;
    border-radius: 4px;
    padding: 13px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    outline: none;
    color: #27194C;
}

.form-group input {
    height: 45px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #674CAE;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}
.contact-details-container {
    background-color: #F8F7FA;
    border: 1px solid #EDEBF1;
    border-radius: 5px;
    padding: 30px;
}

.contact-details-container h2 {
    color: #27194C;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-details-description {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #27194C;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-detail h3 {
    color: #27194C;
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-detail p {
    color: #666666;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}
.contact-map-section {
    width: 100%;
    padding: 0 40px 70px;
    background-color: #ffffff;
}

.contact-map-container {
    width: 100%;
    max-width: 1050px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 900px) {

    .contact-page-section {
        padding: 60px 30px 50px;
    }

    .contact-page-heading h1 {
        font-size: 35px;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-details-container {
        max-width: 100%;
    }

    .contact-map-section {
        padding: 0 30px 60px;
    }

    .contact-map-container {
        height: 280px;
    }
}


@media (max-width: 650px) {

    .contact-page-section {
        padding: 45px 20px 40px;
    }

    .contact-page-heading {
        margin-bottom: 35px;
    }

    .contact-page-heading h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .contact-page-heading p {
        font-size: 13px;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-details-container {
        padding: 25px;
    }

    .contact-details-container h2 {
        font-size: 25px;
    }

    .contact-map-section {
        padding: 0 20px 50px;
    }

    .contact-map-container {
        height: 230px;
    }
}
.send-message-button {
    width: 140px;
    height: 45px;
    border: none;
    border-radius: 4px;
    background-color: #27194C;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-message-button:hover {
    background-color: #674CAE;
    transform: translateY(-2px);
}