

html {
  scroll-behavior: smooth;
}
 

/* Thank icon */
.thank-icon {
  font-size: 1.3rem;
  color: #FFC300;
  margin-left: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.thank-icon:hover {
  transform: scale(1.2);
}

/* Thank message slide down */
.thank-message {
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFC300;
  color: #003366;
  font-family: 'Montserrat', sans-serif;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: top 0.5s ease;
}

.thank-message.show {
  top: 20px;
}
.head-icon{
  border-radius: 25px;

}

/* Align the icon with the nav bar */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Ensure icon stays visible on small screens */
@media (max-width: 768px) {
  .thank-icon {
    font-size: 1.5rem;
    margin-left: auto;
  }
}
/* Fonts */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

/* Header */
/* Fonts */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}
i {
  color:#FFC300;
}


/* Header */
.site-header {
  background-color: #003366;
  padding: 1rem 2rem;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  max-height: 60px;
  border-radius: 25px;
}
.logo-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  color: #FFC300; /* Sunrise Gold */
  font-weight: 700;
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  font-size: 1.2rem;
}

/* Show text on hover */
.logo-container:hover .logo-text {
  opacity: 1;
  transform: translateX(0);
}


/* Navigation */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #FFC300; /* Sunrise Gold */
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
/* Hide anything */

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #003366;
    flex-direction: column;
    width: 200px;
    height: 500px;
    display: none;
    border-end-start-radius: 10px;
    justify-content: center;

  }


  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

}





.hero {
  background-color: #003366;/* Midnight Blue */
  color: #ffffff;
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-content {
  max-width: 800px;
}

.hero {
  position: relative;
  height: 40vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* overlay for readability */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}


.tagline {
  font-size: 1.2rem;
  font-family: 'Open Sans', sans-serif;
  color: #FFC300; /* Sunrise Gold */
  margin-bottom: 1rem;
}

.headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.hero-btn {
  padding: 0.75rem 2rem;
  background-color: #FFC300;
  color: #003366;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #e6b100;
}/* Animation base */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* Animation active */
.hero-content.show > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.hero-content.show .tagline {
  transition-delay: 0.2s;
}
.hero-content.show .headline {
  transition-delay: 0.4s;
}
.hero-content.show .hero-btn {
  transition-delay: 0.6s;
}


/*  About Us */
.about-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
  color: #003366;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}

.about-title {
  text-align: center;
  font-size: 2.5rem;
  color: #FFC300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
}

.about-subtitle {
  font-size: 1.3rem;
  color: #003366;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}
/* ---- About Cards ---- */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* narrower */
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-card {
  background-color: #ffffff;
  border-left: 4px solid #FFC300;          /* gold accent */
  padding: 1.25rem 1.1rem;                 /* slightly smaller */
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.04); /* lighter shadow */
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: transform 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
}

/* Icon in top‑left corner */
.card-icon {
  font-size: 1.4rem;
  color: #FFC300;          /* navy */
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1C3E71;
  margin: 0 0 0.6rem;
  font-family: 'Montserrat', sans-serif;
}

.card-text {
  font-size: 0.9rem;
  color: #585858;
  line-height: 1.55;
  margin: 0;
}

.card-values {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.card-values li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #777E8B;          /* steel gray */
  margin-bottom: 0.35rem;
}

.card-values li::before {
  content: "\f00c";        /* Font Awesome check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color:#FFC300;
  font-size: 0.75rem;
  line-height: 1;
}


/* Fade & Slide In Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Block Styling */


.about-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1C3E71;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-text {
  font-size: 1rem;
  color: #585858;
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}

.about-details {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-details li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #003366;
  font-family: 'Poppins', sans-serif;
}

/* Executive Leader Card */
.leader-card {
  text-align: center;
}

.leader-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
}

.leader-photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.leader-photo:hover {
  transform: scale(1.05);
}

.leader-name {
  font-size: 1rem;
  color: #1C3E71;
  font-family: 'Montserrat', sans-serif;
}



/* services section *//* Sectors / Services Section */
.sectors-section {
  background-color: #f9f9f9;
  padding: 5rem 2rem;
  font-family: 'Poppins', sans-serif;
  color: #1C3E71;
}

.sectors-container {
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.sectors-section.show .sectors-container {
  opacity: 1;
  transform: translateY(0);
}

.sectors-title {
  font-size: 2.5rem;
  text-align: center;
  color: #FFC300;
  margin-bottom: 3rem;
  font-family: 'Montserrat', sans-serif;
}

.sector-box {
  background: #ffffff;
  border-left: 6px solid #FFC300;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sector-box1{
  background: #ffffff;
  border-left: 6px solid  #585858 ;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
}
.service-list {
  list-style: none;
  padding-left: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #585858;
}

.service-list li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1rem;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FFC300;
  font-weight: bold;
}

.sector-heading {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1C3E71;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.sector-text {
  font-size: 1rem;
  color: #777E8B;
  font-family: 'Lato', sans-serif;
}

/* scroll animetio */
.scroll-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.scroll-section.show {
  opacity: 1;
  transform: translateY(0);
}


..portfolio-section {
  background: #fff;
   padding: 5rem 4rem;;
  color: #003366;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.portfolio-section .portfolio-container {
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-section .portfolio-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #FFC300;
  margin-bottom: 3rem;
}

.portfolio-section .portfolio-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 2rem;
}

.portfolio-section .project-card {
  background: #f9f9f9;
  border-left: 5px solid #FFC300;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-section .project-card:hover {
  transform: translateY(-5px);
}

/* Slider */
.portfolio-section .mini-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.portfolio-section .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-section .slide.active {
  opacity: 1;
}

.portfolio-section .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28, 62, 113, 0.7);
  color: #fff;
  border: none;
  padding: 0.3rem 0.6rem;
  font-size: 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

.portfolio-section .nav:hover {
  background: #FFC300;
}

.portfolio-section .prev {
  left: 8px;
}

.portfolio-section .next {
  right: 8px;
}

/* Card Text */
.portfolio-section .project-content {
  padding: 1.2rem;
}

.portfolio-section .project-sector {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: #f4f4f4;
  color: #003366;
}

.portfolio-section .project-title {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #1C3E71;
  font-family: 'Montserrat', sans-serif;
}

.portfolio-section .project-location {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #585858;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.portfolio-section .project-location i {
  color: #FFC300;
}

.portfolio-section .project-scope {
  font-size: 0.95rem;
  color: #777E8B;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}
/* 1. Inner padding so cards never hug the viewport edge */
.portfolio-section .portfolio-container {
  padding-inline: 1rem;           /* left/right 16 px */
}

/* 2. Extra breathing‑room between cards */
.portfolio-section .portfolio-grid {
  gap: 2rem;                      /* default */
}
@media (min-width: 992px) {       /* desktops */
  .portfolio-section .portfolio-grid {
    gap: 2.5rem;                  /* wider gap on big screens */
  }
}

/* 3. Bottom margin so stacked cards don't collide on mobile */
.portfolio-section .project-card {
  margin-bottom: 1rem;
}

/* 4. Break sooner into single column for very small screens */
@media (max-width: 480px) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: 1fr;   /* one card per row */
  }
}



/* contect */
.contact-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
  color: #003366;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  color: #FFC300;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-form .submit-btn {
  background-color: #FFC300;
  color: #003366;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: #e6b100;
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
  font-family: 'Open Sans', sans-serif;
  color: #585858;
}

.special-footer {
  background-color: #003366; /* Midnight Blue */
  color: #FFFFFF;
  padding: 3rem 1rem 2rem;
  font-family: 'Open Sans', sans-serif;
}

.footer-top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 70px;
  border-radius: 35px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.1rem;
  color: #FFC300; /* Sunrise Gold */
  font-weight: bold;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #FFC300;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FFC300;
}

.footer-col p {
  margin: 0.5rem 0;
  color: #dddddd;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #bbbbbb;
}

/*welcome style*/
.welcome-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #003366; /* Midnight Blue */
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFC300; /* Sunrise Gold accent */
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 1000;
}

.welcome-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.developer-credit {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
  color: #ccc;
  font-family: 'Open Sans', sans-serif;
}

.developer-credit a {
  color: #FFC300;
  text-decoration: none;
  font-weight: bold;
}

.developer-credit a:hover {
  text-decoration: underline;
}










