/* ===================================
   Global Reset & Base Styles
====================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background-color: #fff;
}

/* ===================================
   Navbar
====================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  color: #001f3f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 70px;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  color: #001f3f;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}


.nav-links li a {
  color: #001f3f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff7f00;
  border-bottom: 2px solid #ff7f00;
}

.nav-links li a.btn-link {
  background-color: #ff7f00;
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;  
  transition: background-color 0.3s ease;
}

.nav-links li a.btn-link:hover {
  background-color: #e86e00;
}

/* Responsive Navbar */
  @media (min-width: 769px) and (max-width : 1010px){
    .nav-links{
      gap: 0px;
      text-align: center;
    }
  }
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li a {
    width: 100%;
    color: #001f3f;
  }
  .nav-links li a.btn-link {
    width: auto;
    margin: auto;
  }
}

/* ===================================
   Hero Slider
====================================== */
/* =========================
   HERO (no slider, 2-column)
   ========================= */
.hero{
  position: relative;
  height: clamp(460px, 85vh, 900px);
  width: 100%;
  overflow: hidden;
  color: #fff;
}

.hero__bg{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__shade{
  /* darken for text readability */
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.15) 100%);
}

.hero__inner{
  position: relative; z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  padding-block: 118px;
}

.hero__left{
  max-width: 680px;
}

.hero__left h1{
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 12px;
}

.hero__sub{
  font-size: clamp(14px, 1.6vw, 20px);
  margin: 0 0 22px;
  color: #f0f0f0;
}

.btn.hero__btn{
  display: inline-block;
  background: #ff7f00;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}
.btn.hero__btn:hover{ background:#e86e00; transform: translateY(-2px); }

.hero__right{
  justify-self: end;
  text-align: right;
}

.trusted{
  font-size: large;
  font-weight: 900;
  margin: 0 0 12px;
}

.brand-list{
  display: grid;
  grid-auto-flow: row;    /* vertical stack on desktop */
  gap: 16px;
  justify-items: end;
  list-style: none;
  margin: 0; padding: 0;
}

.brand-list img{
  height: 142px;
  width: auto;
  background:#fff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* ======= Responsive ======= */
@media (max-width: 1024px){
  .hero__inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .hero__right{ justify-self: center; text-align: center; }
  .brand-list{
    grid-auto-flow: column;   /* logos side-by-side on tablet */
    justify-items: center;
  }
}

@media (max-width: 560px){
  .hero{ height: auto; }
  .hero__inner{ padding-block: 36px; }
  .brand-list img{ height: 56px; padding: 6px 10px; }
}

/* =========================
   CERTIFICATES
   ========================= */
.certificates-section{
  padding: 64px 20px;
  background:#f7f7f7;
}

.certificates-container{
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}

.certificates-container h2{
  font-size: clamp(22px, 3.2vw, 34px);
  margin-bottom: 28px;
  color:#222;
}

.certificates{
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 28px;
}

.certificate{
  background:#fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 18px;
  transition: transform .25s ease;
}
.certificate:hover{ transform: translateY(-4px); }

.certificate img{
  width: 100%; height: auto;
  border-radius: 10px; margin-bottom: 10px;
}

.certificate h3{
  font-size: 1.05rem; font-weight: 700; color:#333; margin: 6px 0;
}
.certificate p{ color:#666; font-size:.95rem; }

/* mobile */
@media (max-width: 720px){
  .certificates{ grid-template-columns: 1fr; }
  .certificate{ padding:16px; }
}


/* ===================================
   About Section
====================================== */
/* About Section Styling */
.about-section {
  background-color: #f7f9fa;
  padding: 80px 20px;
  text-align: left;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 45px;
}

.about-container p b {
  color: #001f3f;
  font-weight: 700;
  font-size: 1.5rem;
}

.learn-more {
  
  background-color:#ff7f00;
  color: white ;
  padding: 20px 20px;
  border-radius: 5px;
  font-weight: 600;  
  transition: background-color 0.3s ease;
}

.learn-more:hover {
  background-color: #001f3f;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container h2 {
    font-size: 2.2rem;
  }

  .about-container p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .about-container h2 {
    font-size: 1.8rem;
  }

  .about-container p {
    font-size: 0.95rem;
  }

  .learn-more {
    font-size: 1rem;
  }
}


/* ===================================
   Services Section
====================================== */
.services-section {
  background-color: #f7f9fa;
  padding: 60px 20px;
  text-align: center;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 2rem;
  color: #001f3f;
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.service-item {
  background-color: #ff7f00;
  border: 3px solid transparent;
  border-radius: 10px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  color: white;
}

.service-item:hover {
  border-color: #001f3f;
  background-color: #e86e00;
  transform: translateY(-5px);
}

.service-item:hover p {
  color: #f7f9fa;
}

.service-item img {
  width: 60px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f7f9fa;
}

/* Services Responsive */
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    width: 90%;
  }
}

/* ===================================
   Product Section
====================================== */
.products-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #001f3f;
}

.products-container h2 {
  font-size: 2rem;
  color: #f4f5f7;
  padding-top: 30px;
  margin-bottom: 40px;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  background-color: #f7f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 250px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #001f3f;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 1rem;
  color: #555;
}
/* Buttons Section */
.Button-section{
  display: flex;
  justify-content: center;
  gap: 15px;
}
/* View All Button */
.view-all-wrapper {
  margin-top: 40px;
}

.view-all-btn {
  background-color: #ff7f00;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-all-btn:hover {
  background-color: #e86e00;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    width: 70%;
  }
  .product-card img{
    height: auto;
  }
  .Button-section{
    flex-direction: column;
  }
  .product-grid {
    gap: 20px;
  }

  .products-container h2 {
    font-size: 1.8rem;
  }
}


/* ===================================
   Why Choose Us Section
====================================== */
.why-choose-section {
  background-color: #001f3f;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
}

.why-container h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.why-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.why-points li {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 18px;
  border-radius: 8px;
}

.check-icon svg {
  min-width: 20px;
  min-height: 20px;
  fill: #ff7f00;
}

/* Why Choose Us Responsive */
@media (max-width: 768px) {
  .why-container h2 {
    font-size: 1.8rem;
  }

  .why-points {
    flex-direction: column;
    align-items: center;
  }

  .why-points li {
    font-size: 1.1rem;
    width: 90%;
  }
}

/* ===================================
   Industries Section
====================================== */
.industries-section {
  background-color: #f7f9fa;
  padding: 60px 20px;
  text-align: center;
}

.industries-container {
  max-width: 1100px;
  margin: 0 auto;
}

.industries-container h2 {
  font-size: 2rem;
  color: #001f3f;
  margin-bottom: 40px;
}

.industry-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.industry-card p {
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #001f3f;
  color: #f7f9fa;
  padding: 15px 10px;
  margin: 0;
}

/* Industries Responsive */
@media (max-width: 768px) {
  .industry-grid {
    flex-direction: column;
    align-items: center;
  }

  .industry-card {
    width: 90%;
  }
}

/* ===================================
   Footer
====================================== */
.site-footer {
  background-color: #001f3f;
  color: white;
  padding: 40px 20px 20px;
  font-size: 1.25rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 50px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ff7f00;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ff7f00;
}

.footer-column p {
  margin: 8px 0;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.social-icons a:hover img {
  filter: brightness(0.8) invert(0.8) sepia(1) saturate(5) hue-rotate(20deg);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 1.2rem;
  color: #ccc;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom-dev {
  margin-top: 20px;
  text-align: right;
  font-size: 1rem;
  color: #ccc;
  /* font-weight: bold; */
}
.footer-bottom-dev b{
  text-decoration: underline;
}
/* Footer Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .social-icons a {
    margin: 0 8px;
  }
}




/* Section spacing improvement */
@media (max-width: 480px) {
  section {
    padding-bottom: 40px;
  }
}

/* Adjust nav link layout on small screens */
@media (max-width: 768px) {
  .nav-links li {
    width: 100%;
    padding: 12px 0;
  }
}

/* Overlay text max width */
.overlay {
  max-width: 90%;
}

/* Buttons animated hover effect */
.btn {
  transition: transform 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
}

/* Text fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.overlay {
  animation: fadeIn 1s ease forwards;
}
