/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Base Styles */
:root {
  --primary-color: #2a3b8f;
  --secondary-color: #b08d2e;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.btn {
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #1e2d6f;
  border-color: #1e2d6f;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* Navbar */
.navbar {
  background-color: rgba(42, 59, 143, 0.95);
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 8px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

/* Active link indicator */
.navbar-dark .navbar-nav .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--secondary-color);
}

/* Mobile navbar */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(42, 59, 143, 0.98);
    padding: 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-dark .navbar-nav .nav-link.active:after {
    left: 15px;
    transform: none;
    width: 30px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(42, 59, 143, 0.9), rgba(42, 59, 143, 0.9)), url("image/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  color: white;
}

/* Services Section */
.service-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Feature Cards */
.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Get Started Section */
.bg-gold {
  background-color: var(--secondary-color);
}

.steps-container {
  position: relative;
}

.steps-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.step-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 20px;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Trial Features */
.trial-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trial-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.trial-features li i {
  margin-right: 10px;
  color: var(--secondary-color);
}

/* Contact Section */
.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 15px;
}

.contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

/* Map Container */
.map-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  background-color: var(--dark-color);
}

footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7);
}

footer ul li a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Form success/error messages */
.form-message {
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  display: none;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero {
    padding: 150px 0 80px;
  }
}

@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 130px 0 60px;
  }

  .steps-container:before {
    left: 19px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .map-container iframe {
    height: 250px;
  }
}
