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

a{
  text-decoration: none;
}
body{
  font-family:'Poppins',sans-serif;
  background:#f8fafc;
  color:#1e293b;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 10%;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
}

.logo-icon{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:white;
  font-weight:700;
  font-size:18px;
  box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.logo-text{
  font-size:1.2rem;
  color:#0f172a;
    text-decoration: none;

}

.navbar select{
  padding:6px 10px;
  border-radius:8px;
  border:1px solid #e2e8f0;
}

/* HERO */
.hero{
  height:55vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:white;
}

.hero h1{
  font-size:2.5rem;
  margin-bottom:10px;
}

.hero p{
  max-width:600px;
  margin:auto;
  opacity:0.95;
}

.btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 26px;
  background:white;
  color:#2563eb;
  border-radius:30px;
  text-decoration:none;
  font-weight:500;
}

/* CONTACT */
.contact{
  padding:60px 10%;
  display:flex;
  justify-content:center;
}

.contact-wrapper{
  width:100%;
  max-width:500px;
  text-align:center;
}

form{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top:20px;
  background:#ffffff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

form input, form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #e2e8f0;
}

form button{
  padding:14px;
  border:none;
  background:#2563eb;
  color:#fff;
  border-radius:10px;
  cursor:pointer;
}

/* INFO */
.info{
  padding:70px 10%;
  text-align:center;
}

.subtitle{
  opacity:0.7;
  margin-bottom:40px;
}

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

.card{
  padding:25px;
  border-radius:16px;
  background:#ffffff;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

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

/* FOOTER */
footer{
  text-align:center;
  padding:20px;
  background:#1e293b;
  color:#fff;
  margin-top:40px;
}

/* FORM CONTAINER BIGGER */
#contactForm{
  width:100%;
  max-width:700px;   /* ⬅️ bigger width */
  margin:auto;
  padding:50px;      /* ⬅️ more space inside */
  border-radius:24px;
  background:#ffffff;
  box-shadow:0 30px 80px rgba(0,0,0,0.12);
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* INPUTS BIGGER */
#contactForm input,
#contactForm textarea{
  padding:20px;             /* ⬅️ bigger fields */
  font-size:1.05rem;        /* ⬅️ larger text */
  border-radius:14px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

/* TEXTAREA HEIGHT */
#contactForm textarea{
  min-height:160px;         /* ⬅️ taller message box */
  resize:none;
}

/* FOCUS EFFECT */
#contactForm input:focus,
#contactForm textarea:focus{
  border-color:#2563eb;
  outline:none;
  box-shadow:0 0 0 4px rgba(37,99,235,0.15);
}

/* BUTTON BIGGER */
#contactForm button{
  padding:20px;
  font-size:1.1rem;
  font-weight:600;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:white;
  cursor:pointer;
  transition:0.3s;
}

/* BUTTON HOVER */
#contactForm button:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

#contactTitle{ font-size: 30px; margin-bottom: 20px;}