/* ==============================
   Global Styles
============================== */
body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  background-color: #f9fafc;
  overflow-x: hidden;
}

/* Links */
a {
  color: #0d47a1;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #389abc;
  font-weight: 700;
  line-height: 1.3;
}

/* Paragraphs */
p {
  color: #000;
  line-height: 1.7;
  font-size: 1rem;
}

/* Navbar */
/* ========== Navbar & Logo ========== */
/* ========== Transparent Navbar ========== */
/* ========== Semi-Transparent Dark Navbar ========== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(6px);
  padding: 0.6rem 0;
  box-shadow: none;
  z-index: 1000;
  transition: background 0.3s ease, padding 0.3s ease;
}

/* logo */
.navbar-brand img {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* links */
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #00b4d8 !important;
}

/* while scrollingً */
.navbar.scrolled {
  position: fixed;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



/* ==============================
   Hero Section
============================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  overflow: hidden;


  background:
    linear-gradient(rgba(10, 40, 100, 0.55), rgba(10, 40, 100, 0.35)),
    url('../imgs/background.png') center/cover no-repeat fixed;
  background-blend-mode: soft-light;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  background-color: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Text */
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: 6%;

}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f1f1f1;
}

.hero .btn {
  background-color: #389abc;
  border: none;
}

.hero .btn:hover {
    background: #52B6D9;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .container {
    margin-left: 4%;
    transform: translateY(10%);
  }
}


#about {
  background-color: #f9f9f9;
}

#about h2 {
  color: #389abc;
  font-size: 2rem;
}

#about p {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

#about img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  #about h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  #about p {
    text-align: center;
  }
  #about .row {
    flex-direction: column-reverse;
  }
}


/* ==============================
   Services Section
============================== */
.service-card {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* picture */
.service-img {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.95);
}

/* Text */
.service-content {
  flex: 1;
  padding: 2rem;
  background: rgba(255,255,255,0.95);
  color: #000;
}
.service-content h5 {
  color: #389abc;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-content p {
  color: #000;
  line-height: 1.6;
}

/* ==============================
   About, Contact, Testimonials
============================== */
section {
  color: #000;
}

section.bg-light {
  background: #f4f6fa;
}

form input,
form textarea {
  border: 1px solid #ccc;
}

form button {
  background: #389abc;
  color: #fff;
  border: none;
}
form button:hover {
  background: #1565c0;
}
/* ===== Contact Section ===== */
#contact .row {
  display: flex;
  align-items: stretch;
}

#contact .col-md-6 {
  display: flex;
  flex-direction: column;
}

/* map+info*/
#contact form,
#contact .bg-white {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}
.fas
{
  color: #389abc
}
.btn{
  background-color: #389abc;
  border: none
}
.btn:hover{
  background: #52B6D9;
}
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

#contact p, #contact h5 {
  color: #000;
}
/* mobiles*/
@media (max-width: 768px) {
  #contact .row {
    flex-direction: column;
  }
  #contact form,
  #contact .bg-white {
    min-height: auto;
  }
}


/* ==============================
   Footer
============================== */
.footer {
  background: #ffffff;
  color: #000;
  border-top: 1px solid #eee;
}
.footer a {
  color: #389abc;
}
.footer a:hover {
  color: #1565c0;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
  }
  .service-img {
    height: 220px;
  }
  .hero {
    text-align: center;
    height: 80vh;
  }
}
filter: brightness(0.95) contrast(1.05);
