*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background:#FFE1AF;
}

/* NAVBAR */
nav{
    background:#B77466;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    color:#FFE1AF;
    font-size:22px;
    font-weight:bold;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links li a {
    text-decoration: none;
    color: #FFE1AF;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s;
}

.nav-links li a:hover{
    color:white;
}

/* Underline animation */
.nav-links li a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0%;
    height:2px;
    background:white;
    transition:0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after{
    width:100%;
}


/* HAMBURGER */
.menu-btn{
    display:none;
    font-size:26px;
    color:#FFE1AF;
    cursor:pointer;
}

/* MOBILE VIEW */
@media(max-width:768px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        right:-100%;
        width:250px;
        height:100vh;
        background:#B77466;
        flex-direction:column;
        align-items:center;
        padding-top:40px;
        gap:25px;
        transition:0.4s ease-in-out;
    }

    .nav-links.active{
        right:0;
    }
}
/* HERO SECTION */
.hero{
    display:flex;
    justify-content:space-between;
    gap: 90px;
    align-items:center;
    padding:100px 10%;
    min-height:90vh;
    background:linear-gradient(135deg,#FFE1AF,#f8d9a8);
    position:relative;
    overflow:hidden;
    margin-top: -50px;
}

/* Glass Effect */
.glass{
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(10px);
    padding:40px;
    border-radius:20px;
    box-shadow:0 8px 32px rgba(0,0,0,0.1);
    animation:fadeInLeft 1.2s ease;
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero-content h1 span{
    color:#B77466;
}

.hero-content h2{
    font-size:22px;
    margin-bottom:20px;
    color:black;
    min-height:30px;
}

.hero-content p{
    font-size:16px;
    margin-bottom:30px;
    line-height:1.6;
    max-width:500px;
}

.hero-btn{
    display:inline-block;
    padding:12px 28px;
    background:#B77466;
    color:#FFE1AF;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s;
}

.hero-btn:hover{
    background:#9e5f52;
    transform:scale(1.05);
}

/* IMAGE */
.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    animation:fadeInRight 1.2s ease;
}

.hero-image img{
    width:320px;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    border:8px solid #B77466;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeInRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* MOBILE */
@media(max-width:768px){
    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-image{
        margin-top:40px;
    }

    .hero-content p{
        margin:auto;
        margin-bottom:25px;
    }
}
/* SECTION TITLE */
.section-title{
    text-align:center;
    font-size:36px;
    margin-bottom:60px;
    color:#B77466;
}

/* ABOUT SECTION */
.about-section{
    padding:100px 10%;
    background:#fff8ef;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* IMAGE STYLING */
.about-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.about-image img{
    width:350px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

.about-image img:hover{
    transform:scale(1.05);
}

/* CONTENT */
.about-content{
    flex:1;
}

.about-content h3{
    font-size:26px;
    margin-bottom:20px;
    color:black;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:20px;
    color:black;
}

/* INFO CARDS */
.info-card {
    background:#FFE1AF;
    padding:20px;
    border-radius:15px;
    width:150px;
    text-align:center;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:0.6s ease;

    opacity:0;
    transform: translateY(40px) scale(0.9);
}

.info-card.show {
    opacity:1;
    transform: translateY(0) scale(1);
}

.about-cards{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.info-card{
    background:#FFE1AF;
    padding:20px;
    border-radius:15px;
    width:150px;
    text-align:center;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.info-card:hover{
    background:#B77466;
    color:#FFE1AF;
    transform:translateY(-5px);
}

.info-card h4{
    margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-cards{
        justify-content:center;
    }
}
/*------------------ EDUCATION SECTION--------------- */
.education-section{
    padding:100px 10%;
    background:#FFE1AF;
}

.timeline{
    position:relative;
    max-width:800px;
    margin:50px auto;
}

/* Vertical Line */
.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#B77466;
    transform:translateX(-50%);
}

/* Timeline Item */
.timeline-item{
    position:relative;
    width:50%;
    padding:20px 40px;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

/* Dot */
.timeline-dot{
    position:absolute;
    top:25px;
    right:-10px;
    width:20px;
    height:20px;
    background:#B77466;
    border-radius:50%;
    border:4px solid #fff;
}

.timeline-item:nth-child(even) .timeline-dot{
    left:-10px;
}

/* Content Box */
.timeline-content{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.timeline-content:hover{
    transform:translateY(-5px);
}

.timeline-content h3{
    margin-bottom:5px;
    color:#B77466;
}

.timeline-content h4{
    margin-bottom:5px;
    color:black;
}

.timeline-content span{
    font-size:14px;
    color:black;
}

.timeline-content p{
    margin-top:10px;
    font-size:14px;
    color:black;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){

    .timeline::before{
        left:8px;
    }

    .timeline-item{
        width:100%;
        padding-left:40px;
        padding-right:20px;
        margin-bottom:40px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even){
        left:0;
        text-align:left;
    }

    .timeline-dot{
        left:-2px;
        right:auto;
    }
}
/* SKILLS SECTION */
.skills-section{
    padding:100px 10%;
    background:#fff8ef;
}

.skills-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.skill-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.skill-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#B77466;
}

.skill-card:hover{
    transform:translateY(-8px);
}

.skill-card h3{
    margin-bottom:20px;
    color:#B77466;
    font-size:20px;
}

.skill-card ul{
    list-style:none;
}

.skill-card ul li{
    margin-bottom:10px;
    font-size:15px;
    color:black;
    padding-left:15px;
    position:relative;
}

/* Custom bullet */
.skill-card ul li::before{
    content:"•";
    color:#B77466;
    position:absolute;
    left:0;
}
/* ============================= */
/* EXPERIENCE SECTION */
/* ============================= */

.experience-section{
    padding:100px 10%;
    background:#FFE1AF;
}

/* Main Layout */
.experience-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT CONTENT */
.experience-left{
    flex:1;
}

.experience-left h3{
    color:#B77466;
    font-size:26px;
    margin-bottom:5px;
}

.experience-left h4{
    font-size:18px;
    margin-bottom:5px;
    color:black;
}

.experience-left span{
    font-size:14px;
    color:black;
}

.experience-left ul{
    margin-top:20px;
    padding-left:20px;
}

.experience-left ul li{
    margin-bottom:12px;
    line-height:1.6;
    color:black;
    font-size:15px;
}

/* TOOLS SECTION */
.tools-used{
    margin-top:25px;
}

.tools-used h5{
    margin-bottom:10px;
    color:#B77466;
    font-size:16px;
}

.tools-icons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.tools-icons img{
    width:40px;
    height:40px;
    object-fit:contain;
    transition:0.3s ease;
}

.tools-icons img:hover{
    transform:scale(1.2);
}

/* BUTTON */
.project-btn{
    margin-top:25px;
    padding:12px 28px;
    border:none;
    background:#B77466;
    color:#FFE1AF;
    border-radius:30px;
    cursor:pointer;
    font-size:14px;
    transition:0.3s ease;
}

.project-btn:hover{
    background:#9e5f52;
    transform:scale(1.05);
}

/* RIGHT SIDE IMAGE */
.experience-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.experience-right img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.3s ease;
}

.experience-right img:hover{
    transform:scale(1.03);
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

@media(max-width:900px){
    .experience-container{
        flex-direction:column;
        text-align:center;
    }

    .experience-left ul{
        text-align:left;
    }

    .tools-icons{
        justify-content:center;
    }
}

/* ============================= */
/* POPUP MODAL */
/* ============================= */

.modal{
    display:none;
    position:fixed;
    z-index:1000;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
}

.modal-content{
    background:white;
    padding:30px;
    border-radius:20px;
    width:90%;
    max-width:800px;
    position:relative;
    animation:fadeIn 0.4s ease;
}

.close-btn{
    position:absolute;
    right:20px;
    top:15px;
    font-size:28px;
    cursor:pointer;
}

.modal-content h3{
    color:#B77466;
}

/* Screenshot Grid */
.modal-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:20px;
    
}

.modal-grid img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
    
}

.modal-grid img:hover{
    transform:scale(1.05);
}

/* Modal Animation */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:scale(0.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@media(max-width:768px){
    .modal-grid{
        grid-template-columns:1fr;
    }
}
/* ============================= */
/* GLASS BACKGROUND EXPERIENCE */
/* ============================= */

.experience-section{
    padding:100px 10%;
    background: linear-gradient(
        135deg,
        #FFE1AF 0%,
        #f9d9c8 100%
    );
}

/* Glass Container */
.experience-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-radius:25px;
    padding:50px;

    border:1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
/* ================================================= */
/* PERSONAL INFO SECTION - COMPLETE MODERN VERSION */
/* ================================================= */

.personal-section{
    padding:100px 10%;
    background: linear-gradient(135deg, #FFE1AF, #f8d6c4);
}

/* Section Title */
.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:60px;
    color:#B77466;
}

/* Main Container */
.personal-container{
    display:flex;
    gap:50px;
    justify-content:space-between;
    flex-wrap:wrap;
}

/* Glass Cards */
.personal-card{
    flex:1;
    min-width:320px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding:40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,0.4);
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
    transition:0.4s ease;
}

/* Card Hover */
.personal-card:hover{
    transform:translateY(-10px);
}

/* ================= CONTACT CARD ================= */

/* ===== Modal Background ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ===== Modal Box ===== */
.modal-content {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;

    max-height: 80vh;   /* IMPORTANT */
    overflow-y: auto;   /* SCROLL INSIDE POPUP */

    position: relative;
}

/* Hide scrollbar but still scroll */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* ===== Close Button ===== */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* ===== Grid ===== */
.modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* ===== Images ===== */
.modal-grid img {
    width: 100%;
    height: auto;
      /* PREVENT OVERSIZE */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.modal-grid img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width:768px){
    .modal-grid{
        grid-template-columns: 1fr;
    }
}


/* Animated Icon */
.icon{
    font-size:20px;
    animation: bounceIcon 2s infinite;
}

/* Icon Animation */
@keyframes bounceIcon{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
}

.contact-item p{
    font-size:14px;
    color:black;
    line-height:1.6;
}

/* ================= SOCIAL BUTTONS ================= */

.social-buttons{
    margin-top:30px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* Common Button Style */
.social-btn{
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* LinkedIn Button */
.linkedin{
    background:#B77466;
    color:#FFE1AF;
}

/* GitHub Button */
.github{
    background:#222;
    color:white;
}

/* Glow Hover Effect */
.social-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(183,116,102,0.6);
}

/* Stronger Glow for GitHub */
.github:hover{
    box-shadow:0 0 20px rgba(0,0,0,0.6);
}

/* Shimmer Animation */
.social-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition:0.6s;
}

.social-btn:hover::before{
    left:100%;
}

/* ================= DETAILS GRID ================= */

.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.info-item h4{
    color:#B77466;
    font-size:14px;
    margin-bottom:5px;
}

.info-item p{
    font-size:14px;
    color:black;
}

/* ================= RESPONSIVE DESIGN ================= */

@media(max-width:900px){

    .personal-container{
        flex-direction:column;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

}
/* ================================================= */
/* ACHIEVEMENTS SECTION */
/* ================================================= */

.achievements{
    padding:80px 10%;
    background:#0f0f0f;
    color:#fff;
}

.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:60px;
}

/* Container in one line */
.achievement-container{
    display:flex;
    justify-content:space-between;
    gap:25px;
}

/* Card Base */
.achievement-card{
    position:relative;
    flex:1;
    padding:40px 25px;
    background:#1a1a1a;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s ease;
}

/* Left Color Line */
.achievement-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    transition:0.5s ease;
    z-index:0;
}

/* Different colors for each card */
.achievement-card:nth-child(1)::before{
    background:linear-gradient(180deg,#ff416c,#ff4b2b);
}

.achievement-card:nth-child(2)::before{
    background:linear-gradient(180deg,#4776E6,#8E54E9);
}

.achievement-card:nth-child(3)::before{
    background:linear-gradient(180deg,#00c6ff,#0072ff);
}

/* Hover effect - expand color */
.achievement-card:hover::before{
    width:100%;
}

/* Keep content above color */
.achievement-card *{
    position:relative;
    z-index:2;
}

/* Smooth text color change */
.achievement-card:hover{
    color:white;
    transform:translateY(-8px);
}

/* Heading */
.achievement-content h3{
    margin-bottom:15px;
    font-size:20px;
}

/* Paragraph */
.achievement-content p{
    font-size:14px;
    line-height:1.6;
}

/* Vertical Text */
.vertical-text{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%) rotate(180deg);
    writing-mode:vertical-rl;
    font-weight:bold;
    letter-spacing:2px;
    opacity:0.15;
    font-size:18px;
    transition:0.4s;
}

/* Hide vertical text on hover */
.achievement-card:hover .vertical-text{
    opacity:0;
}

/* Responsive */
@media(max-width:900px){
    .achievement-container{
        flex-direction:column;
    }
}

/* ================= CERTIFICATE SECTION ================= */

.certificates{
    padding:100px 10%;
    background:#f3afa2;
    text-align:center;
    color:white;
}

/* Container */
.certificate-container{
    display:flex;
    gap:15px;
    margin-top:60px;
    height:400px;
    overflow:hidden;
}

/* Images */
.certificate-item{
    flex:1 1 0%;        /* IMPORTANT FIX */
    min-width:0;        /* VERY IMPORTANT */
    height:100%;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:all 0.6s ease;
    filter:brightness(60%);
}

/* Expanded Image */
.certificate-item.active{
    flex:5 1 0%;        /* Expands properly */
    filter:brightness(100%);
}

/* Hover Effect */
.certificate-item:hover{
    transform:scale(1.02);
}
/* ================= MOBILE RESPONSIVE  for certificates ================= */

@media(max-width:768px){

    .certificate-container{
        flex-direction:column;   /* Stack vertically */
        height:auto;             /* Remove fixed height */
    }

    .certificate-item{
        width:100%;
        height:200px;            /* Small preview height */
        flex:none;               /* Disable flex expand */
        filter:brightness(80%);
    }

    .certificate-item.active{
        height:400px;            /* Expand vertically */
        flex:none;
    }

}


/* ================================================= */
/* MODAL */
/* ================================================= */

.cert-modal{
    display:none;
    position:fixed;
    z-index:999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
}

.cert-modal img{
    max-width:80%;
    max-height:80%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
    animation:zoomIn 0.3s ease;
}

@keyframes zoomIn{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-modal{
    position:absolute;
    top:30px;
    right:40px;
    font-size:35px;
    color:white;
    cursor:pointer;
}

/* Responsive */
@media(max-width:1000px){
    .achievements-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .achievements-container{
        grid-template-columns:1fr;
    }
}
/* ================= PROJECTS ================= */

.projects-section{
    padding:100px 10%;
    background:linear-gradient(135deg,#FFE1AF,#f9d9c8);
}

.projects-container{
    display:flex;
    flex-direction:column;
    gap:60px;
}

/* Card */
.project-card{
    display:flex;
    gap:40px;
    align-items:center;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(15px);
    padding:30px;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
    transition:0.4s ease;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-img img{
    width:300px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.project-content h3{
    color:#B77466;
    margin-bottom:15px;
}

.project-content p{
    font-size:14px;
    color:black;
    margin-bottom:20px;
}

.project-buttons{
    display:flex;
    gap:15px;
}

.project-btn{
    padding:10px 20px;
    border-radius:20px;
    background:#B77466;
    color:#FFE1AF;
    text-decoration:none;
    transition:0.3s ease;
}

.project-btn.outline{
    background:transparent;
    border:2px solid #B77466;
    color:#B77466;
}

.project-btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 15px rgba(183,116,102,0.5);
}

/* Responsive */
@media(max-width:900px){
    .project-card{
        flex-direction:column;
        text-align:center;
    }

    .project-img img{
        width:100%;
    }

    .project-buttons{
        justify-content:center;
    }
}
/* ================= FOOTER ================= */

.footer{
    background:#B77466;
    color:#FFE1AF;
    padding:60px 10% 30px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-col{
    flex:1;
    min-width:250px;
}

.footer-col h3{
    margin-bottom:15px;
}

.footer-col h4{
    margin-bottom:15px;
}

.footer-col p{
    font-size:14px;
    line-height:1.6;
}

/* Quick Links */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#FFE1AF;
    transition:0.3s ease;
}

.footer-col ul li a:hover{
    color:white;
    padding-left:5px;
}

/* Social Links */
.footer-social{
    margin-top:15px;
    display:flex;
    gap:15px;
}

.footer-social a{
    background:#FFE1AF;
    color:#B77466;
    padding:8px 15px;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
    transition:0.3s ease;
}

.footer-social a:hover{
    background:white;
    transform:scale(1.05);
}

/* Bottom */
.footer-bottom{
    margin-top:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,0.3);
    padding-top:20px;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    font-size:13px;
}

/* Back to Top Button */
.top-btn{
    background:#FFE1AF;
    color:#B77466;
    border:none;
    padding:8px 15px;
    border-radius:20px;
    cursor:pointer;
    transition:0.3s ease;
}

.top-btn:hover{
    transform:scale(1.1);
    background:white;
}

/* Responsive */
@media(max-width:800px){

    .footer-container{
        flex-direction:column;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}
