*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

/* BODY */

body{
background:#f9f6f8;
color:#333;
line-height:1.6;
}

/* HEADER */

.main-header{
text-align:center;
padding:25px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.main-header h1{
color:#e75480;
}

.main-header p{
color:#666;
font-size:14px;
}

/* NAVBAR */

.main-nav{
display:flex;
justify-content:center;
gap:30px;
padding:15px;
background:#f3edf2;
}

.main-nav a{
text-decoration:none;
color:#2c2c54;
font-weight:500;
}

.main-nav a:hover{
color:#e75480;
}

/* HERO SECTION */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:60px 8%;
gap:30px;
}

.hero-left{
max-width:500px;
}

.hero-left h1{
font-size:36px;
margin-bottom:15px;
color:#e75480;
}

.hero-left p{
margin-bottom:20px;
color:#444;
}

.hero-right img{
width:220px;
}

/* BUTTON */

button{
background:#e75480;
border:none;
padding:12px 25px;
color:white;
border-radius:10px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:#d63d6c;
transform:scale(1.05);
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:40px 8%;
}

.feature-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-8px);
}

.feature-card h3{
color:#e75480;
margin-bottom:10px;
}

.feature-card a{
display:inline-block;
margin-top:10px;
text-decoration:none;
color:white;
background:#e75480;
padding:8px 18px;
border-radius:8px;
}

/* CONTAINER */

.container{
max-width:500px;
margin:auto;
padding:20px;
}

/* CARD */

.card{
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
}

/* FORM ELEMENTS */

input,
select,
textarea{
width:100%;
padding:12px;
margin:10px 0;
border-radius:8px;
border:1px solid #ddd;
}

/* FOOTER */

.main-footer{
text-align:center;
padding:20px;
background:#f0e8ee;
margin-top:40px;
color:#555;
}

/* ===== CAREER PAGE ===== */

.career-section{
display:flex;
justify-content:center;
align-items:center;
min-height:70vh;
padding:40px;
}



/* ===== FREELANCE PAGE ===== */

.freelance-wrapper{
display:flex;
justify-content:center;
padding:60px 15px;
}

.freelance-card{
background:white;
max-width:800px;
width:100%;
padding:50px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
line-height:1.8;
}

.freelance-card h1{
text-align:center;
margin-bottom:20px;
color:#e75480;
}

.freelance-card h2{
margin-top:35px;
color:#e75480;
}

.freelance-card p{
margin:15px 0;
color:#444;
}

.freelance-card img{
display:block;
margin:20px auto;
width:90px;
}

.start-btn{
display:block;
margin:20px auto;
padding:14px 25px;
background:#e75480;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
}

.start-btn:hover{
background:#d63d6c;
}

/* PLATFORM LINKS */

.platform-links{
display:none;
text-align:center;
margin-top:15px;
}

.platform-links a{
display:inline-block;
margin:8px;
padding:10px 18px;
background:#f3edf2;
text-decoration:none;
color:#2c2c54;
border-radius:8px;
}

.platform-links a:hover{
background:#e75480;
color:white;
}

.back-btn{
display:inline-block;
margin-top:30px;
padding:10px 18px;
background:#f3edf2;
text-decoration:none;
color:#2c2c54;
border-radius:8px;
}

.back-btn:hover{
background:#e75480;
color:white;
}

/* ===== HEALTH PAGE ===== */

.detail-page {
  background: #f9f6f8;
  min-height: 80vh;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.detail-page h1 {
  color: #e75480;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.detail-page p {
  color: #444;
  font-size: 16px;
  text-align: center;
  max-width: 700px;
}

/* CHAT BOX */
.chat-box {
  width: 100%;
  max-width: 700px;
  height: 300px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bot-message, .user-message {
  padding: 12px 18px;
  border-radius: 12px;
  max-width: 80%;
  line-height: 1.5;
}

.bot-message {
  background: #ffe6f0;
  color: #2c2c54;
  align-self: flex-start;
}

.user-message {
  background: #e75480;
  color: white;
  align-self: flex-end;
}

/* CHAT INPUT AREA */
.chat-input-area {
  width: 100%;
  max-width: 700px;
  display: flex;
  gap: 10px;
}

.chat-input-area input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.chat-input-area button {
  padding: 12px 25px;
  border-radius: 12px;
  border: none;
  background: #e75480;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.chat-input-area button:hover {
  background: #d63d6c;
  transform: scale(1.05);
}

/* EMERGENCY BUTTON */

.emergency-btn{
background:#ff4d4d;
padding:14px 25px;
border:none;
border-radius:12px;
color:white;
font-weight:700;
cursor:pointer;
}

.emergency-btn:hover{
background:#e63939;
}

/* DISCLAIMER */

.disclaimer{
font-size:13px;
color:#666;
max-width:700px;
text-align:center;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-right img{
width:180px;
}

.features{
grid-template-columns:1fr;
}

}





.resume-section{
display:flex;
justify-content:center;
align-items:center;
height:70vh;

}

.resume-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
text-align:center;
width:350px;

}

.resume-btn{
background:linear-gradient(45deg,#ff7eb3,#ff4d94);
border:none;
padding:12px 20px;
margin:10px;
border-radius:10px;
color:white;
font-size:16px;
cursor:pointer;

}




/* Support Section */

.support-section{
display:flex;
justify-content:center;
align-items:center;
min-height:70vh;
}

.support-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
text-align:center;
width:420px;
}

.support-card h2{
margin-bottom:15px;
color:#444;
}

.support-card p{
margin-bottom:25px;
color:#666;
font-size:15px;
}

.support-btn{
background:linear-gradient(45deg,#ff7eb3,#ff4d94);
border:none;
padding:14px 25px;
border-radius:12px;
color:white;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.support-btn:hover{
transform:scale(1.05);
}