@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
/* font-family: "Poppins", sans-serif; */

/* ==============================
   Reset & Global
=================================*/
*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 100%;
    font-weight: 400;
    overflow-x: hidden;
    background: #fff;
    color: #04173f;
}

/* ==============================
   Variables
=================================*/
:root {
    --primary-color: #04173f;
    --secondary-color: #03306d;
    --text-white: #ffffff;
    --text-color: #444444;
}

/* ==============================
   Typography
=================================*/
h1 {

    font-size: 45px;
    font-weight: 900;
    margin-bottom: 48px;
    color: var(--text-white);
}

h2 {
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
    line-height: 48px;
    color: var(--secondary-color);
}

h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: var(--secondary-color);
}

h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: var(--primary-color);
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1px;
    color: var(--text-color);
}

/* ==============================
   Buttons
=================================*/
.main-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 50px;
    background: var(--text-white);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    border: none;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 20%);
    transition: all 0.3s ease;
}

.main-btn:hover {
    background: var(--secondary-color);
    color: var(--text-white);
}

.white-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* ==============================
   Navbar
=================================*/
nav.navbar {
    background: var(--text-white);
    padding: 12px 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}


/* ==============================
   Hero / Banner
=================================*/
.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 700px;
    /* wider text block */
    z-index: 2;
}

.carousel-caption h1 {
    max-width: 474px;
    width: 100%;
    margin-bottom: 20px;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #fff;
    max-width: 600px;
}

.carousel-caption .btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.property-section {
    padding: 124px 0;
}

.property-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.property-section h2 {
    font-weight: 700;
    font-size: 1.8rem;
}

.property-section p {
    color: #555;
    margin-top: 15px;
}

.property-section .btn {
    margin-top: 20px;
}

/* ==============================
   Services Section
=================================*/
.services-section {
  padding: 80px 0;
  background-color: #001a3a; /* Dark blue background */
  color: #ffffff;
}

.services-section h6 {
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 500;
}

.services-section h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}

.services-section .btn-group {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.services-section .btn-group .btn {
  color: #fff;
  background-color: transparent;
  border: 1px solid #ccc;
  margin: 5px;
  border-radius: 5px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.services-section .btn-group .btn:hover {
  background-color: #ffffff;
  color: #001a3a;
}

.services-section .btn-group .btn.active {
  background-color: #ffffff;
  color: #001a3a;
  border-color: #ffffff;
}

.services-section h2,
.services-section h6 {
  text-align: center;
}
.services-section .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center horizontally */
  gap: 10px; /* Add spacing between buttons */
}



.services-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.services-section p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.7;
}

.services-section ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.services-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
}

.services-section ul li::before {
  content: "✔️";
  margin-right: 10px;
  color: #6cc3ff;
}

.btn-outline-light-custom {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background: #ffffff;
  color: #001a3a;
}

.service-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.footer-section {
  background-color: #001a3a;
  color: #ffffff;
  padding: 60px 0 30px;
  font-size: 15px;
  line-height: 1.8;
}

.footer-logo {

  color: #aaa;
max-width: 150px;

}

.footer-desc {
  color: #cccccc;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #cccccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact i {
  margin-right: 10px;
  color: #6cc3ff;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  color: #cccccc;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 14px;
  color: #aaaaaa;
}
