/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #00bfff;
  animation: logoBounce 2s infinite;
}

.logo-circle img {
  width: 50px;
  height: 50px;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover, header nav .btn:hover {
  color: #00bfff;
}

header nav .btn {
  padding: 6px 15px;
  border: 2px solid #00bfff;
  border-radius: 5px;
  transition: 0.3s;
}

/* Hero Section */
.hero-contact {
  text-align: center;
  padding: 80px 40px;
  background: #e8f5ff;
  animation: fadeInDown 1s ease-in-out;
}

.hero-contact h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.hero-contact p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 40px;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #111;
  animation: fadeInDown 1s ease-in-out;
}

.contact-form-section form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00bfff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn.hero-btn {
  padding: 12px 25px;
  border-radius: 50px;
  background: #00bfff;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  animation: fadeInUp 1.2s ease-in-out;
}

.btn.hero-btn:hover {
  background: #0095cc;
}

/* Contact Info */
.contact-info {
  padding: 60px 40px;
  text-align: center;
}

.contact-info h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #111;
  animation: fadeInDown 1s ease-in-out;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-in-out;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.info-card h3 {
  margin-bottom: 12px;
  color: #00bfff;
}

.info-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  padding: 50px 40px;
  text-align: center;
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo-circle-footer {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #00bfff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-circle-footer img {
  width: 40px;
  height: 40px;
}

footer .footer-right a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}

footer .footer-right a:hover {
  color: #00bfff;
}

/* Animations */
@keyframes fadeInDown {0%{opacity:0;transform:translateY(-30px);}100%{opacity:1;transform:translateY(0);}}
@keyframes fadeInUp {0%{opacity:0;transform:translateY(30px);}100%{opacity:1;transform:translateY(0);}}
@keyframes logoBounce {0%,100%{transform:translateY(0);}50%{transform:translateY(-5px);}}
@keyframes float {0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}

@media(max-width:768px){
  header{flex-direction:column;align-items:center;height:auto;padding:15px;}
  header nav{margin-top:10px;flex-wrap:wrap;justify-content:center;}
  .hero-contact{padding:60px 20px;}
  .contact-form-section,.contact-info,.cta{padding:40px 20px;}
  .info-cards{grid-template-columns:1fr;}
}
