:root {
  --dark-blue: #0a2463;
  --medium-blue: #1e3a8a;
  --light-blue: #3b82f6;
  --white: #ffffff;
  --light-grey: #f5f5f5;
  --dark-grey: #333333;
}

/* Base Styles */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark-grey);
  background-color: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* Navigation */
.navbar {
  background-color: rgba(10, 36, 99, 0.95);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-blue);
}

/* Buttons */
.btn-primary {
  background-color: var(--light-blue);
  border-color: var(--light-blue);
  color: var(--white);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--medium-blue);
  border-color: var(--medium-blue);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--light-blue);
  color: var(--light-blue);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--light-blue);
  color: var(--white);
}
.margin-top-custom{
    margin-top:80px;
}
/* Hero Section */
.hero {
  background-size: cover !important;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--light-blue);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--white);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--white);
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.95)),
    url("https://images.unsplash.com/photo-1517999144091-3d9dca6d1e43?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  color: var(--white);
}

/* Section Styles */
.section-title {
  position: relative;
  margin-bottom: 50px;
  color: var(--dark-blue);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--light-blue);
}

.content-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--light-grey);
}

.content-section:last-child {
  border-bottom: none;
}

/* Service Cards */
.service-card {
  background-color: var(--light-grey);
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  color: var(--dark-grey);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 3rem;
  color: var(--light-blue);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
}




/* Exchange Rate Widget */
.exchange-rate-widget {
  background-color: var(--light-grey);
  padding: 30px;
  border-left: 4px solid var(--light-blue);
}

.rate-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-blue);
}

/* Property Cards */
.property-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.property-img {
  height: 250px;
  overflow: hidden;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-img img {
  transform: scale(1.1);
}

.property-content {
  padding: 25px;
  color: var(--dark-grey);
}

.property-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.property-price {
  color: var(--light-blue);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--light-grey);
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  color: var(--dark-grey);
}

.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(59, 130, 246, 0.2);
  position: absolute;
  top: 10px;
  left: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h5 {
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.client-details p {
  color: var(--light-blue);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background-color: var(--light-grey);
  padding: 40px;
  color: var(--dark-grey);
}

.form-control {
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: var(--dark-grey);
  padding: 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  background-color: var(--white);
  color: var(--dark-grey);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  border-left: 3px solid var(--light-blue);
}

.form-control::placeholder {
  color: #94a3b8;
}

.contact-info {
  padding-left: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  color: var(--light-blue);
  font-size: 1.5rem;
  margin-right: 15px;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--white);
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--light-blue);
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--light-blue);
  color: var(--white);
}

.footer-links h5 {
  color: var(--light-blue);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--light-blue);
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

/* Plan B Section */
.plan-b-section {
  background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.9)),
    url("https://images.unsplash.com/photo-1540420773420-3366772f4999?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  color: var(--white);
}

.plan-b-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.plan-b-quote {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.4;
}

.plan-b-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Service Detail Page */
.service-detail {
  padding: 50px 0;
  border-bottom: 1px solid var(--light-grey);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-icon {
  font-size: 4rem;
  color: var(--light-blue);
  margin-bottom: 30px;
}

.service-detail h3 {
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.service-detail-img {
  height: 300px;
  overflow: hidden;
  border-radius: 5px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-features {
  margin-top: 30px;
}

.service-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--light-blue);
}

/* Resources Page */
.resource-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-img {
  height: 200px;
  overflow: hidden;
}

.resource-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card:hover .resource-img img {
  transform: scale(1.1);
}

.resource-content {
  padding: 25px;
}

.resource-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.resource-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--medium-blue);
  font-size: 0.9rem;
}

.resource-meta i {
  margin-right: 5px;
}

.resource-meta span {
  margin-right: 15px;
}

/* Visa Types Page */
.visa-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.visa-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visa-card h3 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 10px;
}

.visa-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.visa-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.visa-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--light-blue);
}

.visa-timeline {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.visa-timeline-icon {
  color: var(--light-blue);
  font-size: 1.5rem;
  margin-right: 10px;
}

/* Tax Considerations Page */
.tax-card {
  background-color: var(--light-grey);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.tax-card h4 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 10px;
}

.tax-comparison {
  width: 100%;
  margin-bottom: 30px;
}

.tax-comparison th {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 15px;
}

.tax-comparison td {
  padding: 15px;
  border-bottom: 1px solid var(--light-grey);
}

.tax-comparison tr:hover {
  background-color: var(--light-grey);
}

.alert-info {
  background-color: rgba(59, 130, 246, 0.1);
  border-color: var(--light-blue);
  color: var(--dark-blue);
}

/* Investment Guide Page */
.content-img {
  height: 300px;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 30px;
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-card {
  background-color: var(--light-grey);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 5px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-blue);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--dark-grey);
}

.investment-table {
  width: 100%;
  margin-bottom: 30px;
}

.investment-table th {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 15px;
}

.investment-table td {
  padding: 15px;
  border-bottom: 1px solid var(--light-grey);
}

.investment-table tr:hover {
  background-color: var(--light-grey);
}

/* FAQ Page */
.faq-section {
  margin-bottom: 50px;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  background-color: var(--white);
}

.accordion-button {
  background-color: var(--light-grey);
  color: var(--dark-blue);
  font-weight: 600;
  padding: 20px;
  border-radius: 5px !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-blue);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--light-blue);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2463'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  background-color: var(--light-grey);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-category {
  padding: 10px 20px;
  background-color: var(--light-grey);
  color: var(--dark-blue);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-category:hover,
.faq-category.active {
  background-color: var(--light-blue);
  color: var(--white);
}

/* Utility Classes */
.py-4.bg-dark {
  background-color: var(--dark-blue) !important;
  color: var(--white);
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .contact-info {
    padding-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .plan-b-quote {
    font-size: 1.6rem;
  }
}
