.hero {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #3f5744 0%,
        #5F7A65 50%,
        #718c77 100%
    );
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212,163,115,0.15);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    filter: blur(80px);
}

.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    filter: blur(80px);
}

.hero-content {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 2;
}

.hero-left {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero h1 span {
    color: #D4A373;
}

.hero h2 {
    color: #F7F4ED;
    min-height: 40px;
    margin-bottom: 20px;
}

.hero-description {
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #D4A373;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    background: white;
    color: #5F7A65;
}

.btn-secondary:hover {
    transform: translateY(-4px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #5F7A65;
}

.hero-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(
        135deg,
        #D4A373,
        white
    );
    animation: float 4s ease-in-out infinite;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes float {
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-12px);
    }
}

@media(max-width:900px){

    .hero-content{
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
    }

    .hero h1{
        font-size: 2.8rem;
    }

    .image-wrapper{
        width: 250px;
        height: 250px;
    }

    .hero-buttons{
        justify-content: center;
    }
}



body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    background: #F7F4ED;
    color: #2F2F2F;
}

header {
    background: #5F7A65;
    color: white;
    padding: 60px 80px; 
    display: flex; 
    align-items: center;       
    justify-content: space-between; 
    gap: 40px;                 
}

header h1 {
    font-size: 45px;
    margin: 0 0 10px 0; 
    text-align: left;
}

header p {
    font-size: 18px;
    margin: 0;
    text-align: left;
    opacity: 0.9; 
}

.profile-img {
    width: 320px; 
    height: 320px;
    border-radius: 50%;       
    object-fit: cover;        
    object-position: center;  
    border: 4px solid #D4A373; 
    flex-shrink: 0; 
}
    

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    border-left: 4px solid #D4A373;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.navbar{
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 25px;

    background: rgba(95,122,101,0.9);
    backdrop-filter: blur(15px);

    border-radius: 16px;

    z-index: 1000;

    transition: all 0.3s ease;
}

.navbar.scrolled{
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-links a{
    color: black;
}

/*.navbar.scrolled .logo span{
    color: #5F7A65;
}*/

.navbar.scrolled .theme-toggle{
    color: #2F2F2F;
}

/*.logo span{
    color: #D4A373;
    font-size: 1.4rem;
    font-weight: 700;
}*/

.nav-links{
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #D4A373;
    transition: 0.3s;
}

.nav-links a:hover::after{
    width: 100%;
}

.resume-btn{
    background: #D4A373;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.resume-btn:hover{
    transform: translateY(-3px);
    background: #be8c5c;
}

.menu-btn{
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links a.active{
    color: #D4A373;
}

#education{
    padding: 100px 8%;
    background: #fcfaf5;
}

.timeline{
    position: relative;
    max-width: 900px;
    margin: 60px auto;
}

.timeline::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #D4A373;
    transform: translateX(-50%);
}

.timeline-item{
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd){
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even){
    left: 50%;
}

.timeline-dot{
    position: absolute;
    top: 35px;
    width: 18px;
    height: 18px;
    background: #5F7A65;
    border: 4px solid #D4A373;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot{
    right: -13px;
}

.timeline-item:nth-child(even) .timeline-dot{
    left: -13px;
}

.timeline-content{
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.timeline-content:hover{
    transform: translateY(-8px);
}

.timeline-year{
    display: inline-block;
    margin-bottom: 10px;
    color: #D4A373;
    font-weight: 700;
}

.timeline-content h3{
    color: #5F7A65;
    margin-bottom: 10px;
}

.timeline-content h4{
    color: #777;
    font-weight: 500;
    margin-bottom: 15px;
}

.timeline-content p{
    line-height: 1.7;
}

.timeline-badge{
    display: inline-block;
    margin-top: 15px;
    background: #5F7A65;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
}

@media(max-width:768px){

    .timeline::before{
        left: 20px;
    }

    .timeline-item{
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
        padding-right: 15px;
    }

    .timeline-dot{
        left: 11px !important;
    }
}

@media (max-width: 900px){

    .nav-links{
        position: absolute;
        top: 80px;
        left: 0;

        width: 100%;

        background: #5F7A65;

        flex-direction: column;
        align-items: center;

        padding: 20px 0;

        display: none;
    }

    .nav-links.active{
        display: flex;
    }

    .menu-btn{
        display: block;
    }

    .resume-btn{
        display: none;
    }
}


#about-me{
    padding: 100px 8%;
}

.section-heading{
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span{
    color: #D4A373;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-heading h2{
    font-size: 2.8rem;
    color: #5F7A65;
    margin-top: 10px;
}

.about-container{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-card-main{
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #D4A373;
}

.about-card-main h3{
    color: #5F7A65;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-card-main p{
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.info-card{
    background: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-card:hover{
    transform: translateY(-8px);
}

.info-card i{
    font-size: 2rem;
    color: #D4A373;
    margin-bottom: 15px;
}

.info-card h4{
    color: #5F7A65;
    margin-bottom: 10px;
}

.info-card p{
    font-size: 0.95rem;
    line-height: 1.5;
}

@media(max-width:900px){

    .about-container{
        grid-template-columns: 1fr;
    }

    .about-right{
        grid-template-columns: 1fr;
    }

    .section-heading h2{
        font-size: 2.2rem;
    }
} 


form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

form button{
    color: black;
    font-weight: 600;
    background-color: #D4A373;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 4px;
    margin-right: 20px;
}

input,
textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #D4A373;
    border-radius: 5px;
    background: #FFFFFF;
    color: #2F2F2F;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #5F7A65;
    box-shadow: 0 0 5px rgba(95, 122, 101, 0.3);
}

.footer{
    background: #5F7A65;
    color: white;
    margin-top: 100px;
}

.footer-container{
    max-width: 1200px;
    margin: auto;

    padding: 60px 8%;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3{
    color: #D4A373;
    margin-bottom: 15px;
}

.footer-brand p{
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-social h4{
    margin-bottom: 15px;
    color: #D4A373;
}

.footer-links a{
    color: white;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover{
    color: #D4A373;
    padding-left: 5px;
}

.footer-social .social-icons{
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a{
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: rgba(255,255,255,0.1);
    color: white;

    border-radius: 12px;
    transition: .3s;
}

.footer-social .social-icons a:hover{
    background: #D4A373;
    transform: translateY(-5px);
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px;
}

.footer-bottom p{
    margin: 0;
    opacity: 0.8;
}

@media(max-width:768px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social .social-icons{
        justify-content: center;
    }
}

#backToTop{
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: #D4A373;
    color: white;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;

    transition: .3s;
}

#backToTop:hover{
    background: #5F7A65;
}

.tabs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-btn {
  background: #5F7A65;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.tab-btn:hover {
  background: #D4A373;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


#skills{
    padding: 100px 8%;
}

.skills-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 60px;
}

.skill-card{
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.skill-card:hover{
    transform: translateY(-8px);
}

.skill-icon{
    width: 60px;
    height: 60px;
    background: #5F7A65;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.skill-card h3{
    color: #5F7A65;
    margin-bottom: 25px;
}

.skill-item{
    margin-bottom: 20px;
}

.skill-item span{
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.progress{
    width: 100%;
    height: 10px;
    background: #e9e9e9;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar{
    height: 100%;
    background: linear-gradient(
        90deg,
        #D4A373,
        #5F7A65
    );
    border-radius: 20px;
}

.skill-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags span{
    background: #F7F4ED;
    color: #5F7A65;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid #D4A373;
    transition: 0.3s;
}

.skill-tags span:hover{
    background: #D4A373;
    color: white;
}

@media(max-width:768px){

    .skills-grid{
        grid-template-columns: 1fr;
    }
}

#projects{
    padding: 100px 8%;
    background: #fcfaf5;
}

.featured-project{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;

    margin-top: 60px;
    margin-bottom: 80px;

    background: white;
    padding: 35px;
    border-radius: 25px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.featured-image img{
    width: 100%;
    border-radius: 18px;
    display: block;
}

.featured-tag{
    background: #D4A373;
    color: white;

    padding: 8px 15px;
    border-radius: 25px;

    font-size: 0.85rem;
    font-weight: 600;
}

.featured-content h3{
    color: #5F7A65;
    margin: 20px 0;
    font-size: 2rem;
}

.featured-content p{
    line-height: 1.8;
}

.tech-stack{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-stack span{
    background: #F7F4ED;
    color: #5F7A65;

    padding: 8px 14px;
    border-radius: 25px;

    border: 1px solid #D4A373;
    font-size: 0.9rem;
}

.project-buttons{
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.project-buttons a{
    text-decoration: none;
    padding: 12px 20px;

    background: #5F7A65;
    color: white;

    border-radius: 10px;
    transition: .3s;
}

.project-buttons a:hover{
    background: #D4A373;
}

.projects-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.project-card{
    background: white;

    padding: 25px;
    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: .3s;
}

.project-card:hover{
    transform: translateY(-10px);
}

.project-top{
    width: 60px;
    height: 60px;

    background: #5F7A65;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;
    font-size: 1.4rem;

    margin-bottom: 20px;
}

.project-card h3{
    color: #5F7A65;
    margin-bottom: 15px;
}

.project-card p{
    line-height: 1.7;
}

.project-links{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.project-links a{
    text-decoration: none;
    color: white;

    background: #D4A373;

    padding: 10px 15px;
    border-radius: 10px;

    transition: .3s;
}

.project-links a:hover{
    background: #5F7A65;
}

@media(max-width:900px){

    .featured-project{
        grid-template-columns: 1fr;
    }

    .projects-grid{
        grid-template-columns: 1fr;
    }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


.contact-flex-container {
  display: flex;
  gap: 40px;          
  align-items: flex-start; 
  margin-top: 30px;
}


.contact-form-side {
  flex: 1.5; 
}


.contact-links-side {
  flex: 1;
}

.contact-links-side h3 {
  margin-top: 0;
  color: #2F2F2F;
}


.social-links-card {
  display: flex;
  flex-direction: column;
  gap: 15px; 
}


.contact-section-title {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section-title h1 {
  margin-bottom: 5px;
}

.contact-section-title h2 {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  margin-top: 0;
}

.contact-form-side h2,
h3{
  text-align: center;
}

.social-links-card a{
text-decoration: none;
}


#contact-form input[type="submit"] {
  background-color: #D4A373;
}

#contact-form input[type="submit"]:hover {
  background-color: #5F7A65; 
}


@media (max-width: 768px) {
  .contact-flex-container {
    flex-direction: column; 
    gap: 30px;
  }
  .contact-form-side, .contact-links-side {
    width: 100%; 
  }
}


#achievements{
    padding: 100px 8%;
}

.stats-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin: 60px 0;
}

.stat-card{
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .3s;
}

.stat-card:hover{
    transform: translateY(-8px);
}

.stat-card h3{
    font-size: 2.5rem;
    color: #D4A373;
    margin-bottom: 10px;
}

.stat-card p{
    color: #5F7A65;
    font-weight: 600;
}

.achievement-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.achievement-card{
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .3s;
}

.achievement-card:hover{
    transform: translateY(-10px);
}

.achievement-card i{
    font-size: 2rem;
    color: #D4A373;
    margin-bottom: 20px;
}

.achievement-card h3{
    color: #5F7A65;
    margin-bottom: 15px;
}

.achievement-card p{
    line-height: 1.7;
}

@media(max-width:900px){

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

    .achievement-grid{
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px){

    .stats-container{
        grid-template-columns: 1fr;
    }
}

#contact{
    padding: 100px 8%;
    background: #fcfaf5;
}

.contact-container{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 60px;
}

.contact-info{
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-info h3{
    color: #5F7A65;
    margin-bottom: 20px;
}

.contact-info p{
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i{
    color: #D4A373;
    font-size: 1.2rem;
}

.social-icons{
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a{
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: #5F7A65;
    color: white;

    border-radius: 12px;

    transition: .3s;
}

.social-icons a:hover{
    background: #D4A373;
    transform: translateY(-5px);
}

.contact-form-card{
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-card form{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-card input,
.contact-form-card textarea{
    width: 100%;
    padding: 15px;

    border: 1px solid #ddd;
    border-radius: 12px;

    font-family: inherit;
    font-size: 1rem;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
    outline: none;
    border-color: #D4A373;
}

.contact-form-card button{
    background: #5F7A65;
    color: white;

    border: none;
    padding: 15px;

    border-radius: 12px;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;
    transition: .3s;
}

.contact-form-card button:hover{
    background: #D4A373;
}

#success-message{
    display: none;
    text-align: center;
    color: #5F7A65;
    font-weight: 600;
}

@media(max-width:900px){

    .contact-container{
        grid-template-columns: 1fr;
    }
}

.theme-toggle{
    width: 45px;
    height: 45px;

    border: none;
    border-radius: 12px;

    background: rgba(255,255,255,0.15);
    color: white;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;

    transition: .3s;
}

.theme-toggle:hover{
    background: #D4A373;
}


body.dark-mode{
    background: #121212;
    color: #f5f5f5;
}

body.dark-mode section{
    background: #121212;
}

body.dark-mode .card,
body.dark-mode .skill-card,
body.dark-mode .project-card,
body.dark-mode .achievement-card,
body.dark-mode .stat-card,
body.dark-mode .contact-info,
body.dark-mode .contact-form-card,
body.dark-mode .timeline-content,
body.dark-mode .about-card-main,
body.dark-mode .featured-project,
body.dark-mode .info-card{
    background: #1e1e1e;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4{
    color: white;
}

body.dark-mode p,
body.dark-mode span{
    color: #dcdcdc;
}

body.dark-mode .skill-tags span,
body.dark-mode .tech-stack span{
    background: #2b2b2b;
    color: white;
    border-color: #D4A373;
}

body.dark-mode input,
body.dark-mode textarea{
    background: #2b2b2b;
    color: white;
    border-color: #444;
}

body.dark-mode footer{
    background: #1a1a1a;
}

body.dark-mode .navbar{
    background: rgba(20,20,20,0.7);
}

/*body.dark-mode .logo span{
    color: #D4A373;
}*/

body.dark-mode .section-heading span{
    color: #D4A373;
}

body.dark-mode .section-heading h2{
    color: #D4A373;
}

body.dark-mode .navbar.scrolled .nav-links a{
    color: white;
}

body.dark-mode #education{
    background: #121212;
}

body.dark-mode #projects{
    background: #121212;
}

body.dark-mode #contact{
    background: #121212;
}
.footer-logo{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img{
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 50px;
}

.footer-logo h3{
    margin: 0;
    color: #D4A373;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 50px;
}

.filter-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin:40px 0;
}

.filter-btn{
    padding:12px 20px;
    border:none;
    border-radius:30px;
    background:#F7F4ED;
    color:#5F7A65;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.filter-btn.active,
.filter-btn:hover{
    background:#D4A373;
    color:white;
}

.highlights-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.highlight-card{
    background:white;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.highlight-card:hover{
    transform:translateY(-8px);
}

.highlight-card i{
    font-size:2rem;
    color:#D4A373;
    margin-bottom:15px;
}

body.dark-mode #highlights{
    background: #121212;
}

body.dark-mode .highlight-card{
    background: #1e1e1e;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

body.dark-mode .highlight-card h3{
    color: #ffffff;
}

body.dark-mode .highlight-card p{
    color: #dcdcdc;
}

body.dark-mode .highlight-card i{
    color: #D4A373;
}

body.dark-mode .filter-btn{
    background: #2b2b2b;
    color: #ffffff;
    border: 1px solid #444;
}

body.dark-mode .filter-btn:hover,
body.dark-mode .filter-btn.active{
    background: #D4A373;
    color: white;
    border-color: #D4A373;
}

.project-filter{

    display:flex;
    justify-content:center;
    gap:15px;

    flex-wrap:wrap;

    margin:50px 0;
}

.filter-btn{

    border:none;

    background:white;

    color:#5F7A65;

    padding:12px 25px;

    border-radius:30px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.filter-btn i{

    margin-right:8px;
}

.filter-btn:hover{

    background:#5F7A65;
    color:white;

    transform:translateY(-3px);
}

.filter-btn.active{

    background:#5F7A65;
    color:white;
}

.project-image{
    width:180px;
    height:180px;
    object-fit:contain;
    display:block;
    margin:0 auto 20px;
    transition:.4s;
}

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