@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FAF9FF;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.head {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* fixed instead of absolute */
  top: 0;
  left: 0;
  z-index: 1000;
}

.head .inner-head {
  padding: 16px 48px;
  border-radius: 0 0 50px 50px;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.container {
  width: 100%;
  min-height: 100vh;
  padding: 120px 16px 40px; /* top padding so content clears header */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

h1 {
  color: #0C4676;
  font-size: 32px;
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.paragraph {
  color: #706F76;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  justify-content: center;
}

.btn-primary {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  background: #0C4676;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: #093458;
}

/* 📱 Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  .container {
    gap: 16px;
  }
}

/* Floating Contact Button */
.contact-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
}

.contact-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0C4676;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.contact-main:hover {
  transform: rotate(90deg);
}

/* Hidden contact icons */
.contact-icons {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.contact-float.active .contact-icons {
  opacity: 1;
  pointer-events: auto;
}

.contact-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.contact-icons a:hover {
  transform: scale(1.1);
}

/* Brand Colors */
.contact-icons .telegram { color: #0088cc; }
.contact-icons .whatsapp { color: #25D366; }
.contact-icons .email { color: #D44638; } /* Gmail red */
