@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manufacturing+Consent&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #FFA500;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FFA500;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top-btn:hover {
  background-color: #000;
  transform: translateY(-3px);
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #FFA500;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: green;
  transform: translateY(-3px);
}

.scroll-top-btn.visible {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

.whatsapp-btn.visible{
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
  color: #1a1a1a;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* For subtle slide-up */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease-in-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-slider {
  overflow: hidden;
  background-color: #fff;
  padding: 30px 0;
}

.brand-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: scrollBrands 25s linear infinite;
}

.brand-slide {
  flex: 0 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-slide img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.brand-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: white;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.nav-links a i,
.call-info i,
.talk-btn i {
  margin-right: 0.5rem;
  color: #FFA500;
}

.nav-links a,
.call-info,
.talk-btn {
  display: flex;
  align-items: center;
}

.dot {
  color: #FFA500;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-info {
  font-size: 0.9rem;
  text-align: right;
}

.talk-btn {
  background: #FFA500;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-block-start: 50px;
}

.hero .container {
  display: grid;
  gap: 40px;
  place-items: center;
}

.hero .section-text {
  margin-block: 25px 40px;
}

.hero-banner .w-100 {
  max-width: 70%;
  margin-inline: auto;
  height: fit-content;
  margin-inline: auto;
}

.hero .shape {
  bottom: -10px;
  left: 10px;
}

.cta-btn {
  background: #FFA500;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}

/* Pulse keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 101, 57, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(242, 101, 57, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 101, 57, 0);
  }
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 998px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  
  .talk-btn {
  background: #FFA500;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  display: block;
}

  .nav-links a {
    padding: 0.5rem 0;
  }

  .nav-links a.active {
    color: #FFA500;
    font-weight: bold;
    position: relative;
  }

  .nav-links a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFA500;
    position: absolute;
    bottom: -5px;
    left: 0;
  }

  .nav-left {
    flex: 1;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    display: none;
  }

  .client-logos {
    flex-direction: column;
    align-items: center;
  }
}

.brand-slider {
  padding: 40px 0;
  background: #fff;
  text-align: center;
}

.brand-heading {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
}

.swiper-slide img {
  max-width: 100px;
  height: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.swiper-slide img:hover {
  filter: grayscale(0%);
}

.swiper {
  padding: 20px 0;
}

@media (max-width: 768px) {
  .brand-slider {
    padding: 10px 0;
  }

  .brand-slider img {
    max-height: 50px;
  }
}

.innovation-section {
  background: #111;
  color: #fff;
  padding: 4rem 2rem;
}

.innovation-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.innovation-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  flex: 1 1 40%;
}

.innovation-header p {
  font-size: 1rem;
  color: #ccc;
  flex: 1 1 50%;
}

.accordion-item {
  border-top: 1px solid #333;
  padding: 2rem 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  cursor: pointer;
  flex-wrap: wrap;
}

.accordion-header h3 {
  font-size: 1.2rem;
  flex: 1 1 20%;
  color: #fff;
}

.accordion-header p {
  flex: 1 1 70%;
  color: #bbb;
  font-size: 0.95rem;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #FFA500;
  flex-shrink: 0;
}

.accordion-content {
  margin-top: 1rem;
  display: none;
}

.accordion-content.show {
  display: block;
}

.grid-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.grid-images img {
  width: 100%;
}

.cta-link {
  display: inline-block;
  color: #FFA500;
  text-decoration: none;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hidden {
  color: #ccc;
}

@media (max-width: 768px) {
  .innovation-header {
    flex-direction: column;
  }

  .accordion-header {
    flex-direction: column;
  }

  .accordion-header h3,
  .accordion-header p {
    flex: 1 1 100%;
  }

  .toggle-icon {
    align-self: flex-end;
  }
}

.research-values {
  background: #111;
  color: #fff;
  padding: 4rem 2rem;
}

.content-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-areas:
    "text image1"
    "image2 values";
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.main-heading {
  grid-area: text;
  align-self: center;
}

.main-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
}

.highlight {
  color: #FFA500;
}

.img-box img {
  width: 100%;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.img-box.top-img {
  grid-area: image1;
}

.img-box.bottom-img {
  grid-area: image2;
}

.our-values {
  grid-area: values;
  align-self: center;
}

.our-values h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.our-values p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

.btn-about {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.2rem;
  background: #FFA500;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .content-grid {
    grid-template-areas:
      "text"
      "image1"
      "image2"
      "values";
    grid-template-columns: 1fr;
  }

  .main-heading h2 {
    font-size: 1.5rem;
  }
}

.cta-full-bg {
  background: linear-gradient(
      #FFA500,
      rgba(248, 141, 43, 0.85)
    ),
    url("../images/cta-bg.jpg") center/cover no-repeat;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.cta-overlay {
  max-width: 800px;
  margin: 0 auto;
}

.cta-full-bg h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-full-bg p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #fff;
  color: #FFA500;
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #f4f4f4;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-full-bg h2 {
    font-size: 1.8rem;
  }

  .cta-full-bg p {
    font-size: 1rem;
  }
}

.blog-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin: 1rem;
  color: #222;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 1rem 1rem;
}

.blog-card a {
  display: block;
  margin: 0 1rem 1rem;
  color: #FFA500;
  font-weight: bold;
  text-decoration: none;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  font-size: 1.8rem;
  color: #FFA500;
}

.footer-brand p {
  color: #bbb;
  margin-top: 0.5rem;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #FFA500;
}

.footer-contact p,
.footer-contact a {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  text-decoration: none;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social ul {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  width: 100%;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}

.footer-newsletter h3 {
  font-size: 1.5rem;
  color: #fff;
}

.footer-newsletter input[type="email"] {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  width: 250px;
  max-width: 350px;
  font-size: 0.95rem;
  background: transparent;
  color: #ccc;
}

.footer-newsletter button {
  background: #fff;
  color: #FFA500;
  padding: 0.8rem 1.5rem;
  border: none;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
/* Mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-newsletter input[type="email"] {
    padding: 0.8rem;
    border: 1px solid #ccc;
    max-width: 350px;
    font-size: 0.95rem;
    background: transparent;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
  }

  .footer-newsletter button {
    background: #fff;
    color: #FFA500;
    padding: 0.8rem 1.5rem;
    border: none;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
  }
}

.newsletter {
  text-align: center;
  margin: 3rem auto;
  max-width: 600px;
}

.newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.newsletter p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-form input[type="email"] {
  padding: 0.8rem;
  border: none;
  border-radius: 30px;
  flex: 1 1 250px;
  max-width: 350px;
  font-size: 0.95rem;
}

.newsletter-form button {
  background: #FFA500;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #e6542e;
}

.subscribe-msg {
  margin-top: 1rem;
  color: #66ff99;
  font-weight: bold;
}


.mission-card h2 {
  color: #FFA500;
  margin-bottom: 0.5rem;
}

.about-company {
  padding: 4rem 2rem;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: #444;
  line-height: 1.7;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.counter-section {
  background: #111;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.counter-box h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.counter-box p {
  font-size: 1rem;
  color: #ccc;
}

.contact-hero {
  background: linear-gradient(to right, #FFA500, #f88d2b);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.contact-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

.contact-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  margin: auto;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFA500;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.7rem;
}

.contact-info a {
  color: #FFA500;
  text-decoration: none;
  font-size: 1rem;
}
.contact-info .social-links a {
  font-size: 1.5rem;
}

.contact-form {
  flex: 1 1 55%;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: none;
  height: 150px;
}

.contact-form button {
  background: #FFA500;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e6592f;
}

.form-msg {
  color: green;
  font-weight: bold;
  margin-top: 0.5rem;
}
.map-section {
  margin-block: 2rem;
}

.map-section iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}

.blog-header {
  background: #f4f4f4;
  padding: 4rem 2rem;
  text-align: center;
}

.blog-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.blog-header p {
  color: #555;
  margin-bottom: 1rem;
}

.blog-newsletter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.blog-newsletter input {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 250px;
}

.blog-newsletter button {
  background: #FFA500;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.blog-posts {
  padding: 3rem 2rem;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #fafafa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card.large {
  grid-column: span 2;
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-info {
  padding: 1rem;
}

.blog-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.blog-info h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.blog-info p {
  font-size: 0.95rem;
  color: #444;
}

.tags {
  margin-top: 1rem;
}

.tags span {
  display: inline-block;
  background: #eee;
  color: #333;
  padding: 0.3rem 0.7rem;
  margin-right: 0.4rem;
  border-radius: 30px;
  font-size: 0.75rem;
}

.all-posts {
  padding: 4rem 2rem;
  background: #fff;
}

.all-posts h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.post-card {
  background: #fafafa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination a {
  display: inline-block;
  margin: 0 5px;
  background: #ff6600;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
}

.pagination .current {
  display: inline-block;
  margin: 0 10px;
  font-weight: bold;
  color: #333;
}

.post-card:hover {
  transform: translateY(-4px);
}

.post-card img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 1rem;
}

.post-content .meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.post-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.post-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.tags span {
  display: inline-block;
  background: #eee;
  color: #333;
  padding: 0.3rem 0.7rem;
  margin-right: 0.4rem;
  border-radius: 30px;
  font-size: 0.75rem;
}

.blog-detail {
  padding: 4rem 2rem;
  background: #fff;
  line-height: 1.7;
  color: #222;
}

.blog-detail h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.blog-detail .excerpt {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-info img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #FFA500;
}

.blog-content a {
  color: #FFA500;
  text-decoration: underline;
}

.blog-content a:hover {
  text-decoration: none;
}

.team-section {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.team-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.team-slider::-webkit-scrollbar {
  display: none;
}

.team-card {
  flex: 0 0 250px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.slider-controls {
  margin-top: 10px;
}

.slider-controls button {
  padding: 10px 15px;
  font-size: 1.5rem;
  background: #ff6600;
  border: none;
  color: white;
  border-radius: 5px;
  margin: 0 5px;
  cursor: pointer;
}

.slider-controls button:hover {
  background: #e05500;
}

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 8rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px;
  }

  .h2 {
    --fs-1: 7.2rem;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /**
   * PROJECT
   */

  .project .title-wrapper > div {
    width: 75%;
  }

  .project-list > * {
    min-width: calc(33.33% - 40px);
    width: calc(33.33% - 40px);
  }

  .project-list > *:is(:first-child, :nth-child(2)) {
    width: calc(50% - 30px);
  }
}

/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

.has-shape {
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  z-index: -1;
}

.w-100 {
  width: 100%;
}

.title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-block-end: 60px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.card-text {
  font-size: var(--fs-4);
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gunmetal);
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) {
  color: var(--sefety-orange);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.hover\:underline {
  display: inline;
  background-image: linear-gradient(to right, var(--gunmetal), var(--gunmetal));
  background-repeat: no-repeat;
  max-width: max-content;
  background-position-y: bottom;
  background-size: 0 2px;
  transition: var(--transition-2);
}

.hover\:underline:is(:hover, :focus) {
  background-size: 100% 2px;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero .container {
  display: grid;
  gap: 40px;
}

.hero .section-text {
  margin-block: 25px 40px;
}

.hero-banner .w-100 {
  max-width: 70%;
  margin-inline: auto;
}

.hero .shape {
  bottom: -10px;
  left: 10px;
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  background-color: var(--snow);
}

.service .section-text {
  margin-block-end: 20px;
}

.service-card {
  background-color: var(--white);
  padding: 50px 30px;
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-2);
}

.service-card .card-title {
  margin-block: 35px 20px;
  transition: var(--transition-1);
}

.service-card .card-title:is(:hover, :focus) {
  color: var(--sefety-orange);
}

.service .shape-2 {
  display: none;
}

.service .shape-1 {
  bottom: 0;
  left: -50px;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .container {
  display: grid;
  gap: 50px;
}

.about-banner .w-100 {
  max-width: 90%;
}

.about .shape {
  top: -25px;
  right: -5px;
}

.about .section-text {
  font-size: unset;
  margin-block: 30px 40px;
}

.about .btn {
  max-width: max-content;
}

/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project {
  background-color: var(--snow);
}

.project .section-title {
  margin-block-end: 30px;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.project-card .card-banner {
  margin-block-end: 35px;
}

.project-card .img-holder {
  overflow: hidden;
}

.project-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.2);
}

.project-card .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.project-card .h3 {
  --fs-2: 2.4rem;
  margin-block-end: 4px;
}

.project-card .card-tag {
  font-size: var(--fs-4);
}

.project-card .card-link {
  color: var(--gunmetal);
  font-size: 22px;
  padding: 14px;
  border-radius: var(--radius-circle);
  transform: rotate(-45deg);
  transition: var(--transition-1);
}

.project-card .card-link:is(:hover, :focus) {
  background-color: var(--sefety-orange_10);
  color: var(--sefety-orange);
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .grid-list {
  gap: 50px;
}

.blog-card .card-banner {
  position: relative;
  overflow: hidden;
}

.blog-card .card-banner:is(:hover, :focus) .img-cover {
  transform: scale(1.2);
}

.blog-card .card-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--white);
  color: var(--gunmetal);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
}

.blog-card .card-tag:is(:hover, :focus) {
  background-color: var(--sefety-orange);
  color: var(--white);
}

.blog-card :is(.meta-list, .meta-item) {
  display: flex;
  align-items: center;
}

.blog-card .meta-list {
  column-gap: 20px;
  flex-wrap: wrap;
  margin-block: 25px 15px;
}

.blog-card .meta-item {
  column-gap: 5px;
}

.blog-card .meta-item-text {
  color: var(--sonic-silver);
}

.blog-card .h3 {
  --fs-2: 2.8rem;
}

.blog-card .btn-link {
  font-size: var(--fs-4);
  margin-block-start: 20px;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  color: var(--gunmetal);
}

.footer-top {
  display: grid;
  gap: 30px;
  border-block: 1px solid var(--light-gray);
}

.footer-link {
  font-size: var(--fs-4);
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
  color: var(--sefety-orange);
}

.footer-brand .footer-link:not(:last-of-type) {
  margin-block: 30px 15px;
}

.social-list {
  display: flex;
  gap: 15px;
  margin-block-start: 25px;
}

.social-link {
  font-size: 20px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  color: var(--sefety-orange);
}

.footer-list .footer-link {
  padding-block: 5px;
}

.footer-list-title {
  margin-block-end: 20px;
}

.copyright {
  padding-block: 35px;
  text-align: center;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  /**
   * HERO
   */

  .hero-banner .w-100 {
    max-width: 100%;
  }

  .hero .shape {
    bottom: 0;
    left: -50px;
  }

  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }

  /**
   * PROJECT
   */

  .project-list > * {
    min-width: 100%;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }

  /**
   * SERVICE
   */

  .service .title-wrapper > * {
    max-width: calc(50% - 30px);
    align-items: flex-start;
  }

  .service .section-text {
    margin-block: 0;
  }

  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /**
   * PROJECT
   */

  .project-list > * {
    min-width: calc(50% - 30px);
    width: calc(50% - 30px);
  }
}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .h2 {
    --fs-1: 5.5rem;
  }

  .section-text {
    --fs-3: 2.4rem;
  }

  .btn {
    --padding: 10px 32px;
    font-weight: var(--fw-500);
  }

  .btn-secondary {
    --padding: 14px 32px;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 0.7fr 0.7fr 0.7fr;
  }
}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 8rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px;
  }

  .h2 {
    --fs-1: 7.2rem;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /**
   * PROJECT
   */

  .project .title-wrapper > div {
    width: 75%;
  }

  .project-list > * {
    min-width: calc(33.33% - 40px);
    width: calc(33.33% - 40px);
  }

  .project-list > *:is(:first-child, :nth-child(2)) {
    width: calc(50% - 30px);
  }
}
