:root {
  --primary-color: #44bfba;
  --primary-dark: #20918d;
  --secondary-color: #2c3e50;
  --accent-color: #ffd700;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-color: #495057;
  --bg-gradient: linear-gradient(135deg, #44bfba 0%, #20918d 100%);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--secondary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-title{
  text-decoration: underline;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(214, 51, 132, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Navbar */
.navbar {
  padding: 15px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  background-color: white !important;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 70px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 50px;
}

.nav-link {
  font-weight: 600;
  color: var(--dark-color) !important;
  margin: 0 10px;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  background:
    var(--bg-gradient),
    url("https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80")
      no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-img {
  animation: float 6s ease-in-out infinite;
}

.hero img {
  border-radius: 20%;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Section Styling */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* Feature Boxes */
.feature-box {
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 3px solid var(--primary-color);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  margin: 15px;
}

.testimonial-card:before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: rgba(214, 51, 132, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

/* Counter */
.counter-section {
  background: var(--bg-gradient);
  color: white;
  padding: 80px 0;
}

.counter-box {
  text-align: center;
  padding: 30px 15px;
}

.counter {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

/* CTA Section */
.cta-section {
  background: var(--bg-gradient);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Form Styling */
.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 40px 0 30px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-links h5 {
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h5:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: white;
}

@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: auto;
    padding: 100px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 50px 0;
  }

  .footer-links {
    margin-bottom: 30px;
  }
}

.documents-section {
  background-color: var(--light-color);
  padding: 60px 0;
}

.documents-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.documents-tag {
  display: inline-block;
  background: rgba(68, 191, 186, 0.15);
  color: var(--primary-dark);
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: stretch;
}

.document-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.document-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.document-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.pdf-circle {
  width: 55px;
  height: 55px;
  background: var(--bg-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 22px;
}

.document-card p {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: justify;
  letter-spacing: -0.07rem;
}

.file-badge {
  background: var(--secondary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
}

.document-content {
  flex-grow: 1;
}

.document-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--secondary-color);
}

.document-card p {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.btn-document {
  margin-top: auto;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-document:hover {
  background-color: var(--primary-dark);
  color: white;
}

@media (max-width: 1200px) {
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}

.separator-gradient {
  height: 2px;
  border: none;
  background: linear-gradient(
    to right,
    rgba(248, 250, 252, 0) 0%,
    var(--primary-color) 50%,
    rgba(248, 250, 252, 0) 100%
  );
  margin: 0 auto;
  width: 100%;
  opacity: 0.8;
}

.footer {
  background-color: #2c3e50;
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 0;
  font-size: 0.9rem;
}

.footer-logo {
  height: 45px;
  width: auto;
}

.footer-desc {
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #44bfba;
  bottom: 0;
  left: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-list a:hover {
  color: #44bfba;
  padding-left: 5px;
}

.contact-info li i {
  color: #44bfba;
  width: 20px;
  margin-right: 10px;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #44bfba;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}
