body {
  background: white;
  color: #0e163d;
}

.logo {
  width: 200px;
}

.heading, .participate {
  margin: 100px;
}

.navbar-brand {
  margin-right: 150px;
}

/* Navbar dropdown styles */
.nav-item {
  position: relative;
  list-style: none;
}



.nav-link {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s;
}

.nav-link:hover {
  border-bottom: 2px solid #2eade3; /* Replace with your preferred blue */
}


.text-taqous {
  color: #2eade3 !important;
}

  
  /* Social icons match styling */
  .navbar .bi {
  color: #2eade3;
  font-size: 1.3rem;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
  }
  
  .navbar .bi:hover {
  color: #0e163d;
  }

/* Dropdown menu styles */
.navbar-nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f8f9fa;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-nav li:hover > ul {
  display: block;
}

.navbar-nav li ul li {
  width: 100%;
}

.navbar-nav li ul li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav li ul li a:hover {
  background-color: #f8f9fa;
  color: #2eade3;
}

.navbar-nav li ul li.menu-has-children > ul {
  top: 0;
  left: 100%;
}

.menu-has-children > a::after {
  content: ' ▼';
  font-size: 0.6em;
  margin-left: 5px;
}


/* Enable nested dropdown */
.dropdown-submenu {
position: relative;
}

.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -1px;
display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
display: block;
}


/* Make the logo in the navbar bigger */
.navbar .navbar-brand .logo {
width: 260px;  /* Increase the width of the logo */
height: auto;  /* Maintain aspect ratio */
transition: width 0.3s ease; /* Smooth transition for resizing */
}

/* Optional: Hover effect to make logo slightly bigger when hovered */
.navbar .navbar-brand .logo:hover {
width: 200px; /* Slight decrease on hover */
}


/* Increase text size for the navigation links */
.navbar .navbar-nav .nav-link {
font-size: 25px; /* Increase text size */
font-weight: 250; /* Optional: Make the text a bit bolder */
transition: font-size 0.3s ease; /* Optional: smooth font size change */
}

/* Optional: Hover effect to increase text size when hovered */
.navbar .navbar-nav .nav-link:hover {
font-size: 20px; /* Slight increase in font size on hover */
color: #2eade3; /* Optional: change color on hover */
}

.intro-slide-container {
  position: relative;
  max-width: 100%;
  height: 70vh;
  overflow: hidden;
}

.intro-slide {
  display: none;
  width: 100%;
  height: 100%;
}

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

.intro-slide.active {
  display: block;
}

.intro-slide-overlay-card {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #0e163d;
  padding: 20px;
  color: white;
  z-index: 2;
  max-width: 90%;
  border-radius: 10px;
  animation: slideInRight 1s ease-out;
}

.intro-slide-overlay-card h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.intro-slide-overlay-card h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.intro-slide-overlay-card button {
  padding: 10px 20px;
  border: none;
  background-color: #0e163d;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
}

.intro-slide-arrows {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro-slide-arrows button {
  background: #0e163d;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 50%;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .intro-slide-overlay-card h1 {
    font-size: 1.5rem;
  }

  .intro-slide-overlay-card h2 {
    font-size: 1rem;
  }

  .intro-slide-overlay-card button {
    font-size: 0.9rem;
  }

  .intro-slide-arrows {
    flex-direction: row;
    bottom: 10px;
    right: 10px;
    top: auto;
    transform: none;
  }
}


.welcome-section {
background-image:
 url("https://www.pngmart.com/files/13/Blue-Abstract-PNG-File.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
width: 100%;
min-height: 40vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
}

.welcoming-message h1,
.welcoming-message h2 {
font-family: sans-serif;
white-space: pre-wrap;
font-weight: 500;
}

.welcome-section h2{
font-style: italic;
}

#cursor {
display: inline-block;
width: 10px;
background-color: white;
margin-left: 5px;
animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
50% {
  opacity: 0;
}
}

.about-section {
 text-align: center;
  padding: 3rem 0;
  
}

/* Transparent box with shadow */
.about-section {
  background-color: rgba(255, 255, 255, 0.8); /* semi-transparent white */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 2rem;
}


.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0e163d;
  margin-bottom: 2rem;
}



/* Custom button */
.btn-custom {
  display: inline-block;
  background-color: #ffffff;
  color: #0e163d;
  border: 2px solid #2eade3;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #2eade3;
  color: #ffffff;
  text-decoration: none;
}






.about-intro {
background-image: 
  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
  url("https://cdn.prod.website-files.com/63a1cbc81b0e903002cf9cec/64023d8516e1dcf7ad67a9b5_Financial%20Wellness%20Month%3A%20Take%20Control%20of%20Your%20Finances%20.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 60vh;
padding: 100px 20px 40px 20px;
color: white;
text-align: left;
display: flex;
flex-direction: column;
justify-content: flex-end;
}

.about-intro h1,
.about-intro h2 {
margin: 0;
padding: 10px 0;
z-index: 10;
}

.about-intro h1 {
font-size: 3rem;
font-weight: bold;
}

.about-intro h2 {
font-size: 1.5rem;
font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {

.welcoming-message h1,
.welcoming-message h2 {
font-weight: 100;
}
.about-intro {
  padding: 80px 15px 30px 15px;
}

.about-intro h1 {
  font-size: 2rem;
}

.about-intro h2 {
  font-size: 1.2rem;
}
}

@media (max-width: 480px) {
.about-intro h1 {
  font-size: 1.5rem;
}

.about-intro h2 {
  font-size: 1rem;
}

.welcome-section h2{
  font-size: 15px;
}
}


.about-info .row {
  display: flex;
  align-items: stretch; /* Makes both columns equal in height */
}

.about-info .col-md-6,
.about-info .col-lg-4,
.about-info .col-lg-8 {
  display: flex;
  flex-direction: column;
}

.about-info img.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop image to fill height without stretching */
  border-radius: 8px; /* Optional: makes it look cleaner */
}



.coreValues {
  background-color: transparent;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); /* Transparent soft shadow */
  border-radius: 10px;
  text-align: center;
}




/* Contact Section Container */
.contact-section {
padding: 60px 20px;
}

/* Form Card */
.contact-card {
background-color: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 0 auto;
}

/* Heading */
.contact-section h2 {
text-align: center;
font-weight: 700;
margin-bottom: 30px;
}

/* Form Fields */
.contact-card .form-label {
font-weight: 600;
}

.contact-card .form-control {
border-radius: 5px;
padding: 10px;
}

/* Submit Button */
.contact-card .btn {
padding: 10px;
font-weight: bold;
border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
.contact-section {
  padding: 40px 15px;
}

.contact-card {
  padding: 20px;
}

.navbar .navbar-nav .nav-link {
  font-size: 17px;
  font-weight: 200;
  
}


.navbar .navbar-nav .nav-link:hover {
  font-size: 15px; 

}
}

@media (max-width: 480px) {
.contact-card {
  padding: 15px;
}

.contact-section h2 {
  font-size: 1.5rem;
}
}


/* Office Addresses */
.contact-section h4 {
font-weight: 700;
margin-bottom: 15px;
}

.contact-section p {
font-size: 1rem;
margin-bottom: 10px;
line-height: 1.6;
}

/* Social Media Icons */
.contact-section .bi {
font-size: 1.8rem;
transition: transform 0.2s ease-in-out, color 0.2s;
}

.contact-section .bi:hover {
transform: scale(1.2);
opacity: 0.9;
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
.contact-section h4 {
  font-size: 1.25rem;
}

.contact-section p {
  font-size: 0.95rem;
}

.contact-section .bi {
  font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.contact-section {
  padding: 30px 15px;
}

.contact-section h4 {
  text-align: center;
}

.contact-section .d-flex {
  justify-content: center;
  flex-wrap: wrap;
}

.contact-section .bi {
  margin: 0 10px;
}
}

/* Full page background for contact page only */
.contact-page {
background-image: url("https://www.openproject.org/assets/images/contact/hero-contact-4cf9fa21.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
}

.contact-section h2 {
color: #0e163d;
}


.team {
background:  url("https://www.shutterstock.com/image-vector/hand-united-together-form-lines-600nw-1246645873.jpg") center top no-repeat fixed;
background-size: cover;
padding: 40px 0 60px 0;
text-align: center;
position: relative;
}

.team::before {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 1;
}

.team .container {
max-width: 1140px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.team h1 {
color: #2eade3;
margin-bottom: 20px;
text-transform: uppercase;
}

.team h3 {
color: #2eade3;
font-size: 1.5rem;
margin-top: 30px;
text-decoration: solid;
text-transform: uppercase;
text-decoration-line: overline;
}

.team h2{
text-decoration:overline;
font-size: 1.8rem;
margin-top: 50px;

}

.team p {
color: black;
margin: 0 auto 20px;
max-width: 700px;
}

#fa-blog {
font-size: 80px;
color: #2eade3;
margin-bottom: 20px;
}

.team .team-item {
text-align: center;
margin-bottom: 40px;
background-color: white; 
  padding: 2rem; /* Optional: add some padding */
  border-radius: 8px; /* Optional: rounded corners */
  width: 60vh;
margin: 20px auto;
border-radius: 10px;
  
}

.team .team-img {
width: 150px;
height: auto;
margin: 0 auto 20px;
border-radius: 10px;

}



@media (max-width: 768px) {

  
.team .team-item{
  width: 30vh;
}
.team h1 {
  font-size: 1.8rem;
}

.team h3 {
  font-size: 1.3rem;
}

.team p {
  font-size: 0.95rem;
  padding: 0 15px;
}

#fa-blog {
  font-size: 60px;
}

.team .team-img {
  width: 150px;
}
}

/* Responsive adjustments */
@media (max-width: 768px) {
.team-item {
  padding: 15px;
  margin: 15px;
}

.team .team-img {
  width: 150px;
}
}




.services-overview {
  background-color: #f8f9fa; /* Off-white */
  padding: 3rem 0;
}

.services-overview .card {
  background-color: transparent;
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); /* Soft transparent shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.services-overview .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Slightly stronger on hover */
  background-color: #2eade3; /* Blue background on hover */
}

.services-overview .card:hover i,
.services-overview .card:hover h5,
.services-overview .card:hover p,
.services-overview .card:hover a {
  color: #ffffff; /* White color for text and icons on hover */
}

.services-overview i {
  color: white;
}

.services-overview h5 {
  color: #2eade3; /* Blue headings */
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-overview p {
  color: #0e163d; /* Black text */
  margin-bottom: 1rem;
}

.services-overview a {
  color: white; /* Blue learn more text */
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

/* Default chevron icon style */
.services-overview a i.bi-chevron-right {
  color: #2eade3; /* Blue by default */
  font-size: 1.3rem; /* Adjust size as needed */
  transition: color 0.3s ease, transform 0.3s ease;
}

/* On hover: icon turns white */
.services-overview a:hover i.bi-chevron-right {
  color: #ffffff; /* White on hover */
}


.services-overview a:hover {
  opacity: 0.8;
}

.services-overview a::after {
  content: "";
  color: white; /* Blue arrow */
  margin-left: 5px;
}

.services-overview a:hover::after {
  color: white; /* White arrow on hover */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .services-overview .col {
    display: flex;
    justify-content: center;
  }

  .services-overview .card {
    width: 100%;
    max-width: 320px;
  }
}

.testimonial {
background-color: #f8f9fa;
}

.testimonial-text {
font-size: 1.2rem;
font-weight: 300;
color: #0e163d;
max-width: 600px;
margin: 0 auto;
}

.testimonial-client {
text-align: center;
}

.testimonial-img {
width: 100px;
height: 100px;
object-fit: cover;
border: 3px solid #2eade3; /*  Blue border around image */
}

.client-name {
font-size: 1.5rem;
font-weight: 500;
color: #0e163d;
}

.client-position {
font-size: 1rem;
font-weight: 400;
color: #0e163d;
}

.testimonial h2 {
color: #0e163d;
font-size: 2rem;
font-weight: 700;
}

.carousel-item {
padding: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: #2eade3; /*  Blue */
}


.footer-section {
background-color: #0e163d;
color: white;
font-size: 14px;
}

.footer-section a {
color: #2eade3; /* Bootstrap info color */
}

.footer-section a:hover {
text-decoration: underline;
}


.header-section {
background-image: 
  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
  url('https://retailminded.com/wp-content/uploads/2019/12/AdobeStock_296063404.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 60vh;
padding: 100px 20px 40px 20px;
color: white;
text-align: left;
display: flex;
flex-direction: column;
justify-content: flex-end;
}

.header-section h1 {
font-size: 3rem;
font-weight: bold;
}

.requirements-section {
padding: 40px 15px;
}

.requirement-box {
margin-bottom: 40px;
}

.requirement-box h3 {
color: #0e163d;
margin-bottom: 20px;
}

.custom-list {
list-style: disc;
padding-left: 20px;
}



.financial-services {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

/* Transparent shadow container */
.shadow-container {
  background-color: rgba(255, 255, 255, 0.6); /* almost transparent white */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* soft transparent shadow */
  backdrop-filter: blur(5px); /* optional blur for glassmorphism effect */
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add hover effect */
.shadow-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.shadow-container img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Headings and paragraphs */
.shadow-container h3 {
  color: #2eade3; 
  font-weight: 600;
  margin-bottom: 1rem;
}

.shadow-container p {
  color: #0e163d;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .shadow-container {
    text-align: center;
  }

  .header-section h1 {
    font-size: 2rem;
    font-weight: 200;
    margin-top: 40px;
    }
    

  .shadow-container h3 {
    margin-top: 1rem;
  }
}



.service-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px;
}

.card {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
width: 280px;
margin: 10px;
padding: 20px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
color: #2eade3;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}

.card ul {
list-style: none;
padding-left: 0;
}

.card ul li::before {
content: "✔ ";
color: #2eade3;
margin-right: 5px;
}

.loans-banner {
background: #2eade3;
color: white;
text-align: center;
padding: 20px;
font-size: 1.5em;
font-weight: bold;
}

.service-contact {
background-color: #2eade3;
color: white;
padding: 20px;
text-align: center;
}

.service-contact a {
color: #fff;
text-decoration: none;
}



.guide-section {
  background-color: #f8f9fa; /* Light background color */
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2eade3; 
}

.guide-section p {
  font-size: 1.1rem;
  color: #555;
}

/* Property Card Style */
.property-card {
  background-color: #ffffff; /* White background for the card */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.property-card h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2eade3;
  margin-bottom: 1rem;
}


.probfix-holdings-section {
  background-color: #f9f9f9;
  color: #0e163d;
}

.probfix-holdings-section .section-heading {
  font-size: 1.5rem;
  color: #2eade3; /* Primary blue */
  margin-bottom: 1rem;
}

.probfix-holdings-section p {
  line-height: 1.6;
}

.probfix-holdings-section ul li {
  margin-bottom: 0.5rem;
}

.probfix-holdings-section ul li i {
  color: #2eade3; 
}





/* Section Styling */
.real-estate-section {
background-color: #f5f5f5; /* Light grey background */
padding: 60px 20px;
}

/* Container */
.real-estate-container {
max-width: 1200px;
margin: 0 auto;
}

.real-estate-container .shadow-container {
  background-color: rgba(255, 255, 255, 0.05); /* semi-transparent white */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.real-estate-container .service-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Title */
.real-estate-title {
text-align: center;
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 40px;
color: #0e163d;
}

/* Content Layout */
.real-estate-content {
display: flex;
flex-wrap: wrap;
gap: 40px;
align-items: flex-start;
}

/* Text Content */
.real-estate-text {
flex: 1 1 50%;
font-size: 1rem;
line-height: 1.6;
color: #0e163d;
}

/* Images */
.real-estate-images {
flex: 1 1 45%;
display: flex;
flex-direction: column;
gap: 20px;
}

.real-estate-images img {
width: 100%;
border-radius: 8px;
object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
.real-estate-content {
  flex-direction: column;
}

.real-estate-text,
.real-estate-images {
  flex: 1 1 100%;
}
}



/* Section Background */
.realestate-hero {
background-color: #2eade3;
padding: 60px 20px;
}

/* Layout Container */
.realestate-hero-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 40px;
}

/* Text Column */
.realestate-hero-text {
flex: 1 1 50%;
}

.realestate-hero-text h2 {
font-size: 2.5rem;
color: #0e163d;
font-weight: 700;
}

/* Image Column */
.realestate-hero-image {
flex: 1 1 45%;
}

.realestate-hero-image {
flex: 1 1 45%;
height: 100%;
min-height: 300px;
}

.realestate-hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}


/* Responsive Design */
@media (max-width: 768px) {
.realestate-hero-container {
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
}

.realestate-hero-text h2 {
  font-size: 2rem;
  margin-top: 40px;
}

}


.real-estate-slide-container .card {
  background-color: rgba(255, 255, 255, 0.05); /* Almost transparent */
  border: none;
  backdrop-filter: blur(6px);
}

.real-estate-slide-container .carousel-inner img {
  height: 250px;
  object-fit: cover;
}


#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: none;
  background-color: #2eade3;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scroll-to-top:hover {
  background-color: #0e163d;
}




/* Base spacing and styling */
.probfix-holdings-section {
  background-color: rgba(255, 255, 255, 0.03); /* optional light transparent bg */
  color: #0e163d;
}

.probfix-holdings-section .section-heading {
  color: #2eade3; /* Bootstrap primary blue */
  font-weight: 600;
}

/* Responsive layout for small devices */
@media (max-width: 767.98px) {
  .probfix-holdings-section .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .probfix-holdings-section .contact-list,
  .probfix-holdings-section ul {
    padding-left: 0;
  }
}


.btn-primary {
  background-color: #2eade3 !important;
  border-color: #2eade3 !important;
}

.btn-primary:hover {
  background-color: #0e163d !important; /* optional darker shade for hover */
  border-color: #0e163d !important;
}


.contact-socials .bi {
  color: #2eade3;
  font-size: 1.3rem;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
  }
  
   .contact-socials.bi:hover {
  color: #0e163d;
  }