/* Minimalist Black & White Styles */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #0A3D62;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Navigation */
nav {
  background-color: #0A3D62;
  color: #fff;
  border-bottom: 1px solid #0A3D62;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.figtree-top_left_Logo {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 25px;
  color: #fff;
  margin-top: 15px;
  
}
.figtree-top_left_Logo a {
  color: #fff;
  font-weight: inherit;
  font-size: inherit;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.2s;
  color: #fff;
}
.nav-links a:hover {
  opacity: 0.7;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger-bar {
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  
}
@media (max-width: 576px) {

  
  .nav-container {
    position: relative;
    
  }

  /* —— Burger button styling —— */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-top: 10px;
    
    
  }
  .burger-bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    
  }

  /* —— Transform into “X” when open —— */
  .burger.open .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.open .burger-bar:nth-child(2) {
    opacity: 0;
  }
  .burger.open .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* —— Hidden nav panel —— */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0A3D62;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    height: auto;
    padding-bottom: 20px;
  }
  /* —— Slide down when “open” —— */
  .nav-container.open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* —— Link styling —— */
  .nav-links a {
    padding: 50px 0;
    border-top: 2px solid #333;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    height: 80px;
    
  }
}

/* Hero Section */
.hero {
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
  border: #0A3D62 1px solid;
  
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid #0A3D62;
  background-color: transparent;
  color: #0A3D62;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: background-color 0.2s, color 0.2s;
  margin: 20px;
  align-self: center;
}
.btn:hover {
  background-color: #0A3D62;
  color: #fff;
}

/* Sections */
section {
  padding: 4rem 0;
}
h1, h2, h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}
p {
  margin-bottom: 1rem;
  color: #333;
}

/* Main Content Flex */
.main-content {
  flex: 1 0 auto;

}

/* Services */
.service-category h3 {
  font-size: 1.75rem;
  margin-bottom: 4rem;
  color: #fdfdfd;
}

.services {
  background-color: #ffffff;  
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.service-item {
  flex: 1 1 calc(33% - 1rem);
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #fafafa;
  transition: transform 0.2s;
}
.service-item p {
  font-size: 0.875rem;
  color: #222;
}
.service-item:hover {
  transform: translateY(-4px);
}
.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .service-item {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media (max-width: 576px) {
  .service-item {
    flex: 1 1 100%;
  }
}

/* About */
.about {
  background-color: #ffffff;
  border-color: #0A3D62;
  border-style: solid;
  border-width: 1px;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.about-image, .about-text {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .about-image {
    flex: 0 0 40%;
  }
  .about-text {
    flex: 1 1 60%;
  }
}

/* Contact */
/* Contact Section */
.contact {
  padding: 4rem 0;
  background: #fff;
}
.contact h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #000;
}
.contact h3 {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #000;
}

/* Contact Cards Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.card {
  background: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card-icon {
  margin-bottom: 1rem;
}
.card-icon i {
  stroke: #000;
  width: 32px;
  height: 32px;
}
.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #000;
}
.card p,
.card a {
  font-size: 1rem;
  color: #000;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* Footer */
footer {
  background-color: #0A3D62;
  border-top: 1px solid #fff;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
}
footer p {
  color: #fff;
}

@font-face {
  font-family: "Figtree";
  src: url(assets/figtree-variablefont_wght-webfont.woff2) format("woff2"),
       url(assets/figtree-variablefont_wght-webfont.woff) format("woff");
}

.figtree-top_left_Logo {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 25px;
}

.figtree-about_us_logo{
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
  font-size:60px;}
