* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.7;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #2c1f5b;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #af8e63;
}
.custom-navbar {
  background: linear-gradient(
    90deg,
    rgba(67, 44, 122, 0.95),
    rgba(95, 64, 148, 0.95)
  );
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
  z-index: 1030;
}
.custom-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.custom-navbar .nav-link:hover {
  color: #ffd58f;
}
.custom-navbar .navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.custom-navbar .btn-light {
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
.custom-navbar .btn-light:hover {
  background-color: #fff;
  color: #000;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 1px;
  color: #fff;
}

.hero p {
  font-size: 1.3rem;
  color: #ddd;
}

.hero .btn {
  font-weight: 500;
  border-radius: 30px;
  padding: 12px 32px;
}
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

section.bg-light {
  background-color: #f6f4f9;
}

.bi {
  transition: transform 0.3s ease;
}

.bi:hover {
  transform: scale(1.1);
}

.card {
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.card-title {
  color: #432c7a;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-header {
  font-weight: bold;
  font-size: 1.2rem;
}

.card-body ul {
  padding: 0;
  list-style: none;
}

.card-body li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

section[style*="background: #432c7a;"] {
  background: linear-gradient(45deg, #432c7a, #8d65bf);
  color: #fff;
}

section[style*="background: #432c7a;"] h2 {
  color: #fff;
}

footer {
  background-color: #1a1a1a;
  color: #aaa;
  font-size: 0.95rem;
}

footer a {
  color: #ddd;
  font-size: 1.3rem;
}

footer a:hover {
  color: #af8e63;
}

footer p {
  margin: 0;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  width: 100%;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #af8e63;
  outline: none;
}

form .form-check-input {
  margin-top: 5px;
}

form .btn {
  background-color: #432c7a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
}

form .btn:hover {
  background-color: #5f4094;
}
.footer {
  background: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer h5,
.footer h6 {
  color: #fff;
}

.footer p,
.footer li,
.footer a {
  color: #ccc;
}

.footer-link {
  color: #ccc;
  display: inline-block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffd58f;
  text-decoration: underline;
}

.footer .bi {
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .bi:hover {
  color: #af8e63;
  transform: scale(1.1);
}

[data-aos] {
  will-change: transform, opacity;
}
