* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    color: #222;
    line-height: 1.6;
}


/* ===== NAVBAR ===== */
.site-nav {
  display: flex;

  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  border-radius: 4px;
  z-index: 1000;


  width: 100%;
  
  color: black;

  
  box-sizing: border-box; 
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
   font-size: 26px;
    font-weight: 600;
    color: #000;
    
 
 
}
#logo {
  text-decoration: none;
}
.logo span {
  color: #1e3a8a;
}
.center {
    display: flex;
    gap: 40px;
    
  
  
}
.center p{
    margin: 0;
    cursor: pointer;
    color: #333;
    text-decoration: none;
}

.center .nav-link{
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}

.center .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #cfcfcf;
    transition: width 0.25s ease;
}

/* hover */
.center .nav-link:hover::after{
    width: 100%;
}

/* active page */
.center .nav-link.active::after{
    width: 100%;
}

.nav-links {
  list-style: none;

  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  padding: 6px 12px;
  transition: color 0.3s ease;
}
.nav-links.active {
  display: flex;
  flex-direction: column;
  background: #ffffff;

  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  
  padding: 20px;
  z-index: 1000;
}


/* HERO */
.hero {
    height: 50vh;
    background: url('images/blueprint-bg.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay h1 {
    font-size: 2.5rem;
}

.overlay p {
    margin-top: 10px;
}

/* CONTENT */
.content {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.content h2 {
    margin-bottom: 15px;
}

.content p {
    color: #555;
    margin-bottom: 20px;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: white;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
}


/*************FOOOOTEEERRRRR *********************************
*************************************************************/

      /* ===== FOOTER ===== */
.footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 50px 20px 20px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 10px;
  
}
.footer-container > div {
  flex: 1 1 200px; /* grow, shrink, min width */
  min-width: 200px;
}

/* Section Titles */
.footer-section h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer h3 {
  font-size: 1.3rem;
  margin-top: 15px;
  color: #ffffff; /* gold accent */
}

/* Contact Info */
.footer-section.contact p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section.contact i {
  color: #1776d6;
}
#follow {
  margin-left: 70px;
}
/* Social Links */
.footer-section.social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-section.social .social-icons a {
  color: #FFFFFF;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.footer-section.social .social-icons a:hover {
  color: #1776d6;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #AAAAAA;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-bottom a {
  color: #FFFFFF;
  text-decoration: none;
 
}

.footer-bottom a:hover {
  color: #FFD700;
}

.contact p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 8px 0;
}

.contact i {
  color: #999;
  margin-right: 8px;
}

/* Social Links */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #e5e5e5;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  margin-top: 30px;
  padding-top: 25px;
  font-size: 0.9rem;
  color: #888;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin-top: 5px;
  display: inline-block;
}
.about-footer {
  display: grid;
  margin-right: 30px;
}
.quick-links ul.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links ul.links p {
  margin: 5px 0; /* small spacing */
  cursor: pointer;
  color: #444;
  transition: color 0.3s;
}
.quick-links ul li a {
  text-decoration: none;

  transition: color 0.3s;
}

.quick-links ul.links p:hover {
  color: #ffffff;
}
.links {
  text-decoration: none;
}
/* ========================= */
/*        RESPONSIVE         */
/* ========================= */
.linking {
  text-decoration: none;
}
/* Medium Screens (Tablets) */
@media (max-width: 992px) {
  .footer {
    padding: 60px 15px 25px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }


}

/* Small Screens (Phones) */
@media (max-width: 600px) {
  .footer {
    padding: 50px 10px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }



  .social-icons {
    justify-content: center;
    gap: 10px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 15px;
  }
}


.footer-bottom a:hover {
  color: #fff;
}

#about-us {
  color: #ffffff;
  text-align: left;
  margin-right: -30px;
}
#about-p {
  line-height: 1.6;
  max-width: 350px;
  color: #444;
}

#describe {
  color: white;
  font-size: 20px;
}