body {
	font-family: "Tajawal", sans-serif;
	background-color: #fcfdff; /* Base background color */
	color: #1e293b;
	position: relative;
	z-index: 1;
}

body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
	background-size: 16px 16px;
	mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
	mask-size: 100% 750px; /* Controls the height of the fade */
	mask-repeat: no-repeat;
	z-index: -1;
}

.main-btn {
	background-color: #0d0956;
	color: #ffffff;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 700;
	transition: background-color 0.3s;
	width: 250px;
}
.main-btn:hover {
	background-color: #1a146f;
	color: #ffffff;
}
.secondary-btn {
	background-color: #42b5c0;
	color: #ffffff;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 700;
	transition: background-color 0.3s;
	max-width: 350px;
}
.secondary-btn:hover {
	background-color: #3aa8b3;
	color: #ffffff;
}
.section-bg {
	background-color: #f0f9ff;
	border-radius: 16px;
  padding: 64px;
}

.section-bg h3 {
  color: #0D0956;
  margin-bottom: 16px;
}

.section-bg p {
  margin-bottom: 24px;
}

.section-bg .main-btn {
  padding: 16px 32px;
} 

.feature-icon i {
	font-size: 2rem;
	color: #0d0956;
}
.hero-img-mask img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
h1 {
	font-size: 3rem;
	font-weight: 700;
}

.offer-card {
	background-color: #f0f9ff;
	border-radius: 16px;
	padding: 32px;
}
.offer-image {
	position: relative;
}
.offer-image img {
	border-radius: 16px;
	width: 100%;
	height: auto;
	object-fit: cover;
	max-height: 512px;
}
.price-badge {
	background-color: #42b5c0;
	color: #fff;
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 28px;
	font-weight: 700;
	display: inline-block;
	margin-top: 20px;
	position: absolute;
  left: -130px;
  bottom: 100px;
}
.market-comparison {
	display: flex;
	align-items: center;
	color: #64748b;
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #ffffff80;
	padding: 12px;
	font-size: 20px;
	font-weight: 600;
	gap: 12px;
	border-bottom-right-radius: 16px;
}
.market-comparison i {
	width: 28px;
	height: 28px;
	background-color: #fff;
	color: #42b5c0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.bi-arrow-up-right::before {
	content: "\f144";
	padding: 8px;
	font-size: 14px;
	color: #42b5c0;
	font-weight: 600 !important;
}

.footer-bg {
	background-color: #0d0956;
	color: #e2e8f0;
}
.footer-bg a {
	color: #e2e8f0;
}
.footer-bg a:hover {
  color: #fff;
}
.hero-section-fullwidth {
	width: 100%;
	min-height: 480px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: hidden;
}

.hero-section-fullwidth h1,
.hero-section-fullwidth p {
	text-align: right !important;
}
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  color: #222;
}

.feature-icon-2 {
	flex-shrink: 0;
	width: 31.31px;
	height: 31.31px;
	border-radius: 50%;
	background-color: #337A81;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}
.feature-title-row {
  display: flex;
  align-items: center;
  gap: 8px; /* 8px space between icon and title */
  margin-bottom: 8px; /* 8px space below the row */
}

.feature-title-row h5 {
  margin-bottom: 0;
  line-height: 1;
}
.feature-icon-2 img {
  display: block;
  margin: 0 auto;
} 
/* Steps Section */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
  padding: 2rem 0; /* Add some padding so content isn't flush against the edges */
  overflow: hidden; /* Contain the pseudo-element */
}

.steps-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/bg-pattern.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
  transform: translateY(-60px) rotate(0deg);
  z-index: 0; /* Place it behind the content */
  opacity: 0.6;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
  z-index: 2; /* Ensure step content is above line and background */
}

.step .icon {
  width: 187px;
  height: 150px;
  margin: 0 auto 1.5rem;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step .icon img {
  width: 80px;
  height: 80px;
} 
/* Offer Card Section */
.offer-card h2 {
  font-size: 36px;
}

.offer-card p {
  font-size: 20px;
}

.offer-card .btn {
  font-size: 20px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Contact Section */
.contact-btn {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
}

.nav-cta-btn {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
}

/* Navbar styles */
.navbar.sticky-top {
  background-color: transparent;
  transition: background-color 0.4s ease-out;
}

.navbar.navbar-scrolled {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
} 
/* Hero Section */
.hero-btn {
  width: 300px;
  font-size: 24px;
  margin-top: 44px;
} 
/* Footer */
.footer-bg hr {
  border-color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 2rem;
  border-top-width: 1px;
  opacity: 1;
}

.footer-bg p {
  margin-top: 40px;
  font-size: 20px;
  color: #fff;
  padding-left: 50px;
  padding-right: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
} 

/* Mobile Hero Section */
.mobile-hero-section {
  background-image: url('../images/hero.png');
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.mobile-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mobile-hero-content {
  position: relative;
  z-index: 2;
}

.mobile-hero-content h1 {
  font-size: 2.5rem;
}

.mobile-hero-content .btn {
  width: 100%;
  margin-top: 20px;
  background-color: #42B5C0;
  border-color: #42B5C0;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero-section-fullwidth {
    min-height: 320px;
    padding: 0;
  }
  .hero-section-fullwidth .col-lg-6 {
    padding: 2rem 1rem !important;
  }
  .navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
   .navbar-nav {
     width: 100%;
     text-align: center;
  }
  .nav-cta-btn {
    display: none;
  }
  #why-us h2 {
    text-align: center !important;
  }
  .feature-title-row, .feature-title-row + p {
    text-align: right;
  }
}

/* Contact Modal */
#contactModal .modal-content {
  border-radius: 16px;
  border: none;
}
#contactModal .modal-header {
  border-bottom: none;
  padding: 2rem 2rem 1rem;
}
#contactModal .modal-header .btn-close {
  margin: -1rem -1rem -1rem auto;
  background-color: #F1F5F9;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  opacity: 1;
}
#contactModal .modal-title {
  font-weight: 700;
  color: #0D0956;
}
#contactModal .modal-body {
  padding: 1rem 2rem 2rem;
}
#contactModal .form-label {
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.5rem;
}
#contactModal .form-control {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
#contactModal .form-check-label {
  color: #475569;
}
#contactModal .form-check-input {
  border-color: #E2E8F0;
}
#contactModal .form-check-input:checked {
  background-color: #0D0956;
  border-color: #0D0956;
}

/* Request Form Page */
.request-page-cover {
  background: url('../images/request-cover.jpg') center center/cover no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
}

.request-page-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.request-page-cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cover-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.cover-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.request-form-container {
	margin-top: -90px !important;
	position: relative;
	z-index: 3;
}
  
.request-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 3;
}

.request-form-card h1 {
  color: #0D0956;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 48px;
}

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  color: #0D0956;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-label {
  color: #475569;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control, .form-select {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px 16px;
  color: #1E293B;
}

.form-control:focus, .form-select:focus {
  border-color: #0D0956;
  box-shadow: 0 0 0 0.25rem rgba(13, 9, 86, 0.1);
}

.submit-btn {
  padding: 16px 48px;
  font-size: 20px;
  min-width: 200px;
}

@media (max-width: 767px) {
  .request-form-card {
    padding: 24px;
  }
  
  .request-form-card h1 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  .form-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .cover-content h1 {
    font-size: 28px;
  }
  
  .request-page-cover {
    min-height: 250px;
  }
  
  .request-form-container {
    margin-top: -50px !important;
  }
}

@media (max-width: 767px) {
	.steps-container {
		flex-direction: column;
		align-items: center;
  }
	.steps-container::before {
		display: none;
	}
	.step {
		margin-bottom: 2rem;
	}
	.price-badge {
		display: none;
	}
} 

#steps {
  scroll-margin-top: 64px;
} 