::selection{

    background:var(--primary);

    color:white;

}


/* ===========================
   GOOGLE FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ===========================
   COLOR PALETTE
=========================== */

:root{
    --bg:#F7F3EF;
    --primary:#4B1528;
    --secondary:#72243E;
    --accent:#D9A9A0;
    --pink:#F4C0D1;
    --text:#1A2228;
    --white:#ffffff;
}

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Poppins',sans-serif;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 10%;

    background:transparent;

    transition:.35s;

    position:fixed;

    top:0;

    left:0;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    z-index:1000;

}

.logo{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    color:var(--primary);

    font-weight:700;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    position:relative;

    text-decoration:none;

    color:var(--text);

    font-weight:500;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

nav a:hover{

    color:var(--secondary);

}

/* ===========================
   HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:120px 10%;

    gap:60px;

}

.hero-text{

    width:100%;

}

.hero-text h1{

    font-size:4rem;

    font-family:'Cormorant Garamond',serif;

    color:var(--primary);

    line-height:1.1;

}


.hero-text h2{

    margin-top:20px;

    color:var(--secondary);

    font-weight:500;

}

.hero-text p{

    margin-top:25px;

    line-height:1.8;

    max-width:550px;

}

.hero-text button{

    margin-top:35px;

    background:var(--primary);

    color:white;

    border:none;

    padding:16px 34px;

    border-radius:50px;

    cursor:pointer;

    font-size:1rem;

    transition:.3s;

}

.hero-text button:hover{

    background:var(--secondary);

}

.hero-image{

    flex:1;

    display:flex;

    flex-direction:column;

    align-items:center;

}




/* ================= HERO TAG ================= */

.hero-tag{

    display:inline-block;

    background:#ffffff;

    color:var(--secondary);

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:25px;

    font-size:.9rem;

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

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}

.primary-btn,
.secondary-btn{

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    transition:.35s;

    font-weight:500;

}

.primary-btn{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(75,21,40,.25);

}

.secondary-btn{

    border:2px solid var(--primary);

    color:var(--primary);

}

.secondary-btn:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-4px);

}
.image-frame{

    width:420px;

    height:520px;

    background:white;

    border-radius:35px;

    overflow:hidden;

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

    position:relative;

    transition:.4s;

    border:2px solid rgba(217,169,160,.25);

}

.image-frame:hover{

    transform:translateY(-8px);

}


.image-frame img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* ================= ABOUT ================= */

.about{

    background:white;

    padding:120px 10%;

}

.about-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;

}

.about-header h2{

    font-family:'Cormorant Garamond', serif;

    font-size:3rem;

    color:var(--primary);

    line-height:1.2;

    margin-top:20px;

}

.about-content{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:30px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.about-right{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-right p{

    line-height:2;

}


/* ================= QUICK FACTS ================= */

.quick-facts{

    margin-top:35px;

    display:grid;

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

    gap:18px;

}

.fact{

    background:white;

    padding:18px;

    border-radius:18px;

    box-shadow:0 15px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.fact:hover{

    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 50px rgba(75,21,40,.12);

}


/* ================= SERVICES ================= */

.services{

    padding:120px 10%;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    color:var(--primary);

    font-size:3rem;

    margin:20px 0;

}

.section-heading p{

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-card{

    background:white;

    padding:35px;

    border-radius:25px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    border:2px solid transparent;

}

.service-card:hover{

    transform:translateY(-12px) scale(1.02);

    border-color:var(--accent);

    box-shadow:0 25px 50px rgba(75,21,40,.12);

}

.service-icon{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:20px;

}

.service-card h3{

    color:var(--primary);

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

    font-size:1.8rem;

}

.service-card p{

    line-height:1.8;

}


/* ================= TOOLS ================= */

.tools{

    background:white;

    padding:120px 10%;

    text-align:center;

}

.tool-container{

    margin-top:50px;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.tool{

    background:white;

    color:var(--primary);

    padding:14px 28px;

    border-radius:50px;

    font-weight:500;

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

    transition:.3s;

}

.tool:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-5px);

}


section{
    position:relative;
}

section::after{

    content:"";

    width:120px;

    height:4px;

    background:var(--accent);

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    border-radius:50px;

    opacity:.35;

}


/* ================= PORTFOLIO ================= */

.portfolio{
    padding:120px 10%;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.portfolio-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    padding:0;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

    border:1px solid rgba(75,21,40,.08);

}

.portfolio-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 50px rgba(75,21,40,.12);
}

.portfolio-card h3{
    color:var(--primary);
    font-family:'Cormorant Garamond', serif;
    font-size:2rem;
    margin-bottom:15px;
}

.portfolio-card p{
    line-height:1.8;
    margin-bottom:25px;
}

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

.portfolio-tags span{
    background:var(--bg);
    color:var(--secondary);
    padding:8px 14px;
    border-radius:50px;
    font-size:.9rem;
}




/* ================= CONTACT ================= */

.contact{

    background:var(--primary);

    color:white;

    padding:120px 10%;

}

.contact .section-heading h2{

    color:white;

}

.contact .section-heading p{

    color:#f7f3ef;

}

.contact-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:60px;

}

.contact-card{

padding:24px;

min-height:180px;

display:flex;

flex-direction:column;

justify-content:flex-start;

}

.contact-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.contact-card h3{

font-size:1.8rem;

margin-bottom:10px;

}


.image-frame::before{

    content:"";

    width:180px;

    height:180px;

    background:var(--accent);

    opacity:.18;

    position:absolute;

    border-radius:50%;

    top:-60px;

    right:-60px;

}

.image-frame::after{

    content:"";

    width:120px;

    height:120px;

    background:var(--pink);

    opacity:.25;

    position:absolute;

    border-radius:50%;

    bottom:-40px;

    left:-40px;

}


.sticky{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

/* ================= STATS ================= */

.stats{

    padding:100px 10%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    background:white;

}
.stat-card{

    background:var(--bg);
    padding:28px 20px;
    min-height:160px;

    border-radius:22px;

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

    text-align:center;

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

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 50px rgba(75,21,40,.12);

}

.stat-card h2{

font-size:2.6rem;

line-height:1.2;

margin-bottom:8px;

word-break:break-word;

}

.stat-card p{

font-size:.95rem;

margin:0;

}


/* ================= FOOTER ================= */

footer{
    background:#1A2228;
    color:white;
    text-align:center;
    padding:45px 10% 25px;
}

footer h2{
    font-family:'Cormorant Garamond',serif;
    font-size:2.1rem;
    margin-bottom:10px;
}

footer p{
    max-width:520px;
    margin:12px auto;
    line-height:1.6;
    font-size:.95rem;
    opacity:.9;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:14px;
    margin:22px 0;
}

.footer-social a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    transition:.3s;
    font-size:17px;
}

.footer-social a:hover{
    background:var(--accent);
    transform:translateY(-4px);
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:20px 0;
}

.footer-links a{
    text-decoration:none;
    color:#fff;
    font-size:.95rem;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--accent);
}

.copyright{
    margin-top:18px;
    font-size:.85rem;
    opacity:.65;
}

.footer-line{
    border:none;
    height:1px;
    background:rgba(255,255,255,.12);
    margin:25px auto 15px;
    width:100%;
}




/* Back To Top */

#topBtn{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--primary);

color:white;

font-size:22px;

cursor:pointer;

display:none;

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

transition:.3s;

}

#topBtn:hover{

background:var(--secondary);

}

.social-bar{

    display:flex;

    gap:18px;

    margin-top:25px;

    justify-content:center;

}

.social-bar a{

    text-decoration:none;

    color:var(--primary);

    font-weight:500;

    transition:.3s;

    background:white;

    padding:10px 20px;

    border-radius:30px;

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

}

.social-bar a:hover{

    background:var(--primary);

    color:white;

}


.image-frame:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 70px rgba(75,21,40,.18);

}


.availability{

    position:absolute;

    bottom:20px;

    left:20px;

    background:white;

    padding:12px 20px;

    border-radius:50px;

    font-size:.9rem;

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

    color:var(--primary);

    font-weight:600;

}



.portfolio-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.4s;

}

.portfolio-card:hover img{

    transform:scale(1.05);

}

.portfolio-content{

    padding:30px;

}

.project-btn{

    display:inline-block;

    margin-top:25px;

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

}

.project-btn:hover{

    color:var(--secondary);

}


@media (max-width:768px){

.hero{

    flex-direction:column-reverse;

    text-align:center;

    padding:120px 8% 70px;

}

.hero-text h1{

    font-size:2.6rem;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

}

.hero-highlights{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

}

.image-frame{

    width:100%;

    max-width:320px;

    height:auto;

}

.about{

    padding:90px 8%;

}

.about-content{

    grid-template-columns:1fr;

    gap:40px;

}

.about-header{

    margin-bottom:40px;

}

.about-image{

    justify-content:center;

}

.about-image img{

    max-width:300px;

    margin:auto;

}

.about-right{

    text-align:left;

}

.quick-facts{

    grid-template-columns:1fr;

}

.service-grid,

.portfolio-grid,

.contact-container{

    grid-template-columns:1fr;

}

.stats{

    grid-template-columns:1fr;

}

.navbar{

    flex-direction:column;

    gap:15px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

}

}

/* ================= HERO HIGHLIGHTS ================= */

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:30px;

}

.hero-highlights span{

    display:flex;

    align-items:center;

    gap:8px;

    background:white;

    padding:12px 18px;

    border-radius:30px;

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

    color:var(--primary);

    font-size:.95rem;

}

.hero-highlights i{

    color:var(--accent);

}


.about-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-image img{

    width:100%;

    max-width:420px;

    border-radius:30px;

    object-fit:cover;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.about-image img:hover{

    transform:translateY(-8px);

}



/* ================= MOBILE FIX ================= */

*{

    box-sizing:border-box;

}

img{

    max-width:100%;

    display:block;

}

body{

    overflow-x:hidden;

}



/* ================= CONTACT FORM ================= */

.contact-form{

    margin-top:60px;

    display:flex;

    flex-direction:column;

    gap:20px;

    max-width:700px;

    margin-left:auto;

    margin-right:auto;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border:none;

    border-radius:18px;

    font-size:1rem;

    font-family:'Poppins',sans-serif;

    outline:none;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    background:linear-gradient(

        135deg,

        var(--accent),

        var(--pink)

    );

    color:var(--primary);

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:1rem;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-4px);

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

}


#progressBar{

position:fixed;

top:0;

left:0;

width:0%;

height:4px;

background:linear-gradient(
90deg,
var(--accent),
var(--secondary)
);

z-index:99999;

}


nav a.active{

color:var(--primary);

}

nav a.active::after{

width:100%;

}

.portfolio-card{

position:relative;

overflow:hidden;

}

.portfolio-card::before{

content:"View Project";

position:absolute;

inset:0;

background:rgba(75,21,40,.82);

color:white;

display:flex;

justify-content:center;

align-items:center;

font-size:1.3rem;

opacity:0;

transition:.35s;

}

.portfolio-card:hover::before{

opacity:1;

}


.blob{

position:absolute;

border-radius:50%;

filter:blur(60px);

opacity:.18;

animation:float 10s ease-in-out infinite;

pointer-events:none;

}

.blob1{

width:280px;

height:280px;

background:var(--pink);

top:120px;

right:5%;

}

.blob2{

width:220px;

height:220px;

background:var(--accent);

bottom:80px;

left:5%;

animation-delay:3s;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-30px);

}

}


/* ================= SKILLS ================= */

.skills{

    padding:120px 10%;

    background:#fff;

}

.skills-container{

    max-width:800px;

    margin:60px auto 0;

}

.skill{

    margin-bottom:35px;

}

.skill-title{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

    font-weight:600;

    color:var(--primary);

}

.skill-bar{

    width:100%;

    height:14px;

    background:#ece8e5;

    border-radius:30px;

    overflow:hidden;

}

.skill-fill{

    height:100%;

    width:0;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        var(--accent),
        var(--secondary)
    );

    transition:2s;

}

/* EXPERIENCE */

.experience{

padding:120px 10%;

background:var(--bg);

}

.timeline{

max-width:800px;

margin:auto;

position:relative;

}

.timeline::before{

content:"";

position:absolute;

left:18px;

top:0;

width:3px;

height:100%;

background:var(--accent);

}

.timeline-item{

display:flex;

gap:30px;

margin-bottom:45px;

position:relative;

}

.timeline-dot{

width:38px;

height:38px;

background:var(--primary);

border-radius:50%;

flex-shrink:0;

border:5px solid white;

box-shadow:0 0 20px rgba(0,0,0,.08);

}

.timeline-content{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 15px 30px rgba(0,0,0,.05);

}

.timeline-content h3{

color:var(--primary);

margin-bottom:12px;

}

.certificates{

padding:120px 10%;

background:white;

}

.certificate-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:60px;

}

.certificate{

padding:35px;

text-align:center;

background:var(--bg);

border-radius:25px;

transition:.3s;

}

.certificate:hover{

transform:translateY(-8px);

}

.certificate i{

font-size:45px;

color:var(--accent);

margin-bottom:20px;

}

.footer-social{

display:flex;

justify-content:center;

gap:18px;

margin:35px 0;

}

.footer-social a{

width:50px;

height:50px;

border-radius:50%;

background:rgba(255,255,255,.08);

display:flex;

justify-content:center;

align-items:center;

color:white;

transition:.3s;

font-size:20px;

}

.footer-social a:hover{

background:var(--accent);

transform:translateY(-6px);

}

#loader{

position:fixed;

inset:0;

background:white;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

}

.spinner{

width:70px;

height:70px;

border:8px solid #eee;

border-top:8px solid var(--primary);

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

.logo{

animation:fadeLogo 1.5s ease;

}

@keyframes fadeLogo{

from{

opacity:0;

transform:translateY(-20px);

}

to{

opacity:1;

transform:none;

}

}

.image-frame{

animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

.primary-btn,

.secondary-btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

background:rgba(255,255,255,.5);

border-radius:50%;

width:20px;

height:20px;

animation:ripple .6s linear;

}

@keyframes ripple{

to{

transform:scale(18);

opacity:0;

}
}


.contact-hook{

max-width:700px;

margin:70px auto 50px;

text-align:center;

}

.contact-hook h2{

font-family:'Cormorant Garamond',serif;

font-size:2.4rem;

margin-bottom:15px;

color:white;

}

.contact-hook p{

line-height:1.8;

color:#eee;

}

/* ================= WHY CHOOSE ME ================= */

.why-me{

padding:120px 10%;

background:white;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:60px;

}

.why-card{

background:var(--bg);

padding:40px;

border-radius:25px;

text-align:center;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(75,21,40,.12);

}

.why-card i{

font-size:42px;

color:var(--primary);

margin-bottom:20px;

}

.why-card h3{

font-family:'Cormorant Garamond',serif;

font-size:2rem;

color:var(--primary);

margin-bottom:15px;

}

.why-card p{

line-height:1.8;

}

.availability-banner{

background:linear-gradient(
135deg,
var(--accent),
var(--pink)
);

padding:18px;

text-align:center;

border-radius:18px;

font-weight:600;

color:var(--primary);

margin-bottom:60px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.visitor-counter{

margin-top:40px;

text-align:center;

}

.visitor-counter h3{

margin-bottom:15px;

font-size:18px;

color:white;

}

.discovery-card{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

gap:15px;

}

.discovery-card i{

font-size:45px;

margin-bottom:20px;

color:var(--accent);

}

.discovery-card .primary-btn{

margin-top:20px;

}




.cursor-glow{

position:fixed;

width:250px;

height:250px;

border-radius:50%;

pointer-events:none;

background:radial-gradient(circle,
rgba(217,169,160,.25),
transparent 70%);

transform:translate(-50%,-50%);

z-index:0;

transition:.08s;

}


#scrollPercent{

position:fixed;

left:20px;

bottom:25px;

width:60px;

height:60px;

border-radius:50%;

background:#4B1528;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-weight:600;

z-index:999;

box-shadow:0 10px 20px rgba(0,0,0,.15);

}




/* ================= CHATBOT ================= */

#chat-toggle{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

border:none;

border-radius:50%;

background:#4B1528;

color:white;

font-size:28px;

cursor:pointer;

z-index:99999;

box-shadow:0 15px 35px rgba(0,0,0,.18);

transition:.3s;

}

#chat-toggle:hover{

transform:scale(1.08);

}

#chat-box{

position:fixed;

bottom:100px;

right:25px;

width:340px;

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.18);

display:none;

z-index:99999;

}

#chat-box.show{

display:block;

animation:fadeChat .25s ease;

}

@keyframes fadeChat{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:none;

}

}

.chat-header{

background:#4B1528;

color:white;

padding:18px;

display:flex;

justify-content:space-between;

align-items:center;

}

.chat-header p{

font-size:.75rem;

opacity:.7;

margin-top:4px;

}

#chat-close{

cursor:pointer;

font-size:22px;

}

.chat-content{

padding:18px;

}

#chat-message{

background:#f6f6f6;

padding:15px;

border-radius:14px;

line-height:1.6;

margin-bottom:15px;

}

.chat-buttons{

display:grid;

gap:10px;

}

.chat-buttons button{

padding:12px;

border:none;

border-radius:10px;

cursor:pointer;

background:#F7F3EF;

transition:.3s;

font-weight:500;

}

.chat-buttons button:hover{

background:#4B1528;

color:white;

}