/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

html {
  scroll-padding-top: 110px; /* match your navbar height */
  scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  width: 80px; 
  height: auto;
  background-color: transparent;
}

.company-name {
  color: #203a43;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}

.nav-menu a:hover {
  color: #ffb703;
}

.nav-btn {
  background: #ffb703;
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: bold;
}

.contact-info {
      text-align: center;
      margin-top: 30px;
    }
    
    .contact-item {
      margin: 20px 0;
      padding: 20px;
      background-color: #f8f9fa;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .contact-icon {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #2c3e50;
    }
    
    .contact-detail {
      font-size: 1.2em;
      margin: 10px 0;
    }
    
    .contact-label {
      font-weight: bold;
      color: #2c3e50;
      display: block;
      margin-bottom: 5px;
    }
    
    .contact-link {
      color: #3498db;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .contact-link:hover {
      color: #2980b9;
      text-decoration: underline;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: url("images/hero_banner.png") center/cover no-repeat;
  margin-top: 110px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.08),
    rgba(0, 0, 0, 0.2)
  );
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero-content p {
  margin-top: 15px;
  font-size: 1.25rem;
  color: #f1f1f1;
}

.hero-sub {
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0.9;
}

/* ================= SECTIONS ================= */
section {
  padding: 90px 0;
  background: #ffffff;
}

#mission-vision,
#services,
#technologies {
  background: #f8fafc;
}

#industries,
#about {
  background: #ffffff;
}

#contact {
  background: #f8fafc;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #203a43;
  font-size: 2.2rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= IMAGES ================= */
.section-img {
  width: 100%;
  max-width: 360px;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 0 auto 20px;
}

/* ================= CARDS ================= */
.mv-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.mv-card,
.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 10px;
}

/* ================= CONTACT SECTION ================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #203a43;
}

.contact-label {
  font-weight: bold;
  color: #203a43;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.contact-detail {
  font-size: 1.3rem;
  margin: 15px 0;
}

.contact-link {
  color: #2c5364;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  color: #ffb703;
  text-decoration: underline;
}

.contact-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 10px;
}

.contact-info {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-info p {
  margin: 10px 0;
  color: #333;
  line-height: 1.6;
}

/* ================= INDUSTRIES GRID ================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.industry-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #203a43;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.industry-card h4 {
  color: #203a43;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.industry-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ================= TECHNOLOGIES GRID ================= */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tech-card {
  background: #203a43;
  color: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tech-card:hover {
  background: #2c5364;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ================= ABOUT SECTION ================= */
#about p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

/* ================= FORM ================= */
.contact-form-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.contact-form-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-form .nav-btn {
  padding: 15px;
  font-size: 1rem;
  background-color: #ffb703;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .nav-btn:hover {
  background-color: #ffb703;
}

/* ================= BLOG ================= */
.blog-container {
    margin:auto;
    width:90%;
    max-width:1200px;
    padding-top:200px;
    padding-bottom:200px;
}


.blog-content p {
  display: block !important; 
  font-family: "Roboto", sans-serif;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #333 !important;
  margin-bottom: 20px !important; 
}



.blog-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.blog-item h2 a {
  color: #ffb703;
  text-decoration: none;
}

.blog-item h2 a:hover {
  text-decoration: underline;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background-color: #ffb703;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
}

.read-more:hover {
  background-color: #ffb703;
}



/* ================= FOOTER ================= */
footer {
  background: #203a43;
  color: #ffffff;
  text-align: center;
  padding: 30px 0;
}

footer p {
  margin: 10px 0;
  line-height: 1.6;
}

footer a {
  color: #ffb703;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-container {
    padding: 15px 20px;
  }
  
  .company-name {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .nav-menu a {
    font-size: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    padding: 0 20px;
  }
  
  .hero-content p,
  .hero-sub {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  section h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .mv-grid,
  .service-grid,
  .industry-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .mv-card,
  .service-card,
  .industry-card,
  .tech-card,
  .contact-item {
    padding: 20px;
  }
  
  .contact-detail {
    font-size: 1.1rem;
  }
  
  .contact-icon {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 15px;
  }
  
  .nav-menu a {
    font-size: 0.9rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-detail {
    font-size: 1rem;
  }
  
  .contact-icon {
    font-size: 1.8em;
  }

  /* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 26px;
  background: #203a43;
  margin: 4px 0;
  border-radius: 2px;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .nav-menu li {
    padding: 18px 0;
    text-align: center;
  }

  .nav-menu.show {
    display: flex;
  }
}

}