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

 body {
   font-family: 'Roboto', sans-serif;
   color: white;
 }

 /* Hero Section */


 html {
   scroll-behavior: smooth;
 }



 body {
   font-family: Arial, sans-serif;
   color: #222;
 }

 /* Header */
 /* Header */
 header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 3rem;
   transition: all 0.3s ease;
 }

 header.transparent {
   background: rgba(0, 0, 0, 0.4);
 }

 header.sticky {
   background: #fff;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }



 .logo img {
   height: 100px;
   animation: fadeDown 1s ease;
 }

 header.sticky .logo img {
   height: 50px;
 }

 nav {
   display: flex;
   gap: 2rem;
   align-items: center;
 }

 nav a {
   text-decoration: none;
   font-size: 1rem;
   font-weight: 500;
   position: relative;
   animation: fadeDown 1s ease;
 }

 header.transparent nav a {
   color: #fff;
 }

 header.sticky nav a {
   color: #333;
 }

 nav a::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -5px;
   width: 0;
   height: 2px;
   background: #ff6600;
   transition: width 0.3s ease;
 }

 nav a:hover::after {
   width: 100%;
 }

 /* Hamburger */
 .menu-toggle {
   display: none;
   font-size: 1.8rem;
   cursor: pointer;
   color: #fff;
 }

 header.sticky .menu-toggle {
   color: #333;
 }

 /* Hero */
 .hero {
   height: 100vh;
   background: url('./../img/hero.jpeg') no-repeat center center/cover;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: #fff;
 }

 .hero::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.55);
 }

 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 800px;
   padding: 2rem;
   animation: fadeUp 1.5s ease;
 }

 .hero-content h1 {
   font-size: 2.5rem;
   font-weight: 800;
   margin-bottom: 1rem;
 }

 .hero-content p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
   line-height: 1.6;
 }

 .hero-buttons {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
 }

 .btn-primary,
 .btn-secondary {
   padding: 0.8rem 1.5rem;
   border-radius: 6px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
 }

 .btn-primary {
   background: #ff6600;
   border: none;
   color: #fff;
   animation: fadeUp 1.8s ease;
 }

 .btn-primary:hover {
   background: #e55b00;
   transform: translateY(-2px);
 }

 .whatsapp-link {
   position: fixed;
   z-index: 100;
   bottom: 0px;
   right: 0px;
 }

 .whatsapp-link img {
   width: 75px;
 }

 .btn-secondary {
   background: transparent;
   border: 2px solid #fff;
   color: #fff;
   animation: fadeUp 2s ease;
 }

 .btn-secondary:hover {
   background: #fff;
   color: #222;
   transform: translateY(-2px);
 }

 /* Animations */
 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(40px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeDown {
   from {
     opacity: 0;
     transform: translateY(-30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Responsive */
 @media(max-width: 900px) {

   nav {
     position: absolute;
     top: 70px;
     right: 0;
     flex-direction: column;
     align-items: flex-start;
     background: #fff;
     width: 100%;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
   }

   header.transparent nav {
     background: rgba(0, 0, 0, 0.9);
   }

   nav.show {
     max-height: 400px;
     padding: 1rem 0;
   }

   nav a {
     margin: 1rem 2rem;
     font-size: 1.1rem;
   }

   .menu-toggle {
     display: block;
   }
 }

 /* Animations */
 @keyframes fadeLeft {
   from {
     opacity: 0;
     transform: translateX(-50px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes fadeRight {
   from {
     opacity: 0;
     transform: translateX(50px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeDown {
   from {
     opacity: 0;
     transform: translateY(-30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Responsive */
 @media(max-width: 900px) {
   nav {
     position: absolute;
     top: 88px;
     right: 0;
     background: #fff;
     flex-direction: column;
     align-items: flex-start;
     width: 100%;
     max-height: 0;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   }

   nav a {
     margin: 1rem 2rem;
     font-size: 1.2rem;
   }

   nav.show {
     max-height: 400px;
     /* expand */
     padding: 1rem 0;
   }

   .menu-toggle {
     display: block;
   }
 }






 /* About */

 .about-section {
   background: #fff8f2;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 80px 10%;
   /* background: linear-gradient(to right, #fff, #fdf3eb); */
   gap: 50px;
   color: #333;

 }

 .about-content {
   flex: 1;
 }

 .about-content h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   position: relative;
 }

 .about-content h2::after {
   content: "";
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 70px;
   height: 3px;
   background: #ff6600;
 }

 .about-content p {
   font-size: 1.1rem;
   color: #555;
   line-height: 1.8;
   margin-bottom: 30px;
 }

 /* Stats */
 .stats {
   display: flex;
   gap: 30px;
 }

 .stat-card {
   background: #fff;
   padding: 20px 25px;
   border-radius: 10px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-align: center;
 }

 .stat-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
 }

 .stat-card h3 {
   font-size: 2rem;
   color: #ff6600;
   margin-bottom: 8px;
 }

 .stat-card p {
   font-size: 1rem;
   color: #444;
 }

 /* Image */
 .about-image {
   flex: 1;
   border-radius: 12px;
   overflow: hidden;
   position: relative;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
   animation: fadeIn2 1.5s ease;
 }

 .about-image img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.6s ease;
 }

 .about-image img:hover {
   transform: scale(1.05);
 }

 /* Overlay stat on image */
 .image-badge {
   position: absolute;
   bottom: 20px;
   left: 20px;
   background: rgba(255, 102, 0, 0.9);
   color: #fff;
   padding: 15px 25px;
   border-radius: 8px;
   font-size: 1.3rem;
   font-weight: bold;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   animation: popIn 1.2s ease;
 }

 .image-badge span {
   font-size: 2rem;
   display: block;
 }

 /* Responsive */
 @media (max-width: 992px) {
   .about-section {
     flex-direction: column;
     text-align: center;
   }

   .about-content h2::after {
     left: 50%;
     transform: translateX(-50%);
   }

   .stats {
     justify-content: center;
   }

   .image-badge {
     left: 50%;
     bottom: 20px;
     transform: translateX(-50%);
   }
 }







 .services-section {
   padding: 60px 8%;
   background: #f8f9fb;
   color: #333;
 }

 .services-section h2 {
   text-align: center;
   font-size: 2.2rem;
   margin-bottom: 50px;
   font-weight: 700;
   position: relative;
 }

 /* Clever underline */
 .services-section h2::after {
   content: "";
   display: block;
   width: 140px;
   height: 3px;
   margin: 14px auto 0;
   background: linear-gradient(90deg, transparent, #ff6600, transparent);
   position: relative;
 }

 .services-section h2::before {
   content: "";
   position: absolute;
   left: 50%;
   bottom: -6px;
   transform: translateX(-50%);
   width: 12px;
   height: 12px;
   background: #ff6600;
   border-radius: 50%;
 }

 /* Card grid */
 .cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
 }

 .card {
   background: #fff;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
   flex-direction: column;
 }

 .card:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
 }

 .card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
 }

 .card-content {
   padding: 25px;
   flex: 1;
   display: flex;
   flex-direction: column;
 }

 .service-number {
   font-size: 2rem;
   font-weight: 800;
   color: #ff6600;
   margin-bottom: 10px;
 }

 .card-content h3 {
   font-size: 1.3rem;
   margin-bottom: 10px;
   font-weight: 600;
   color: #222;
   position: relative;
   text-transform: capitalize
 }

 .card-content h3::after {
   content: "";
   display: block;
   width: 40px;
   height: 2px;
   background: linear-gradient(90deg, #ff6600, transparent);
   margin-top: 6px;
 }

 .card-content p {
   font-size: 0.95rem;
   line-height: 1.6;
   color: #555;
   margin-top: 10px;
   flex: 1;
 }




 .services-section2 {
   background: linear-gradient(to right, #fff, #fdf3eb);
   padding: 60px 8%;
   text-align: center;
   color: #333;
 }

 .services-section2 h2 {
   font-size: 2.2rem;
   font-weight: 700;
   margin-bottom: 20px;
   position: relative;
 }

 /* Underline */
 .services-section2 h2::after {
   content: "";
   display: block;
   width: 120px;
   height: 3px;
   margin: 12px auto 0;
   background: linear-gradient(90deg, transparent, #ff6600, transparent);
 }

 .services-section2 p {
   max-width: 650px;
   margin: 0 auto 50px;
   color: #666;
   font-size: 1rem;
   line-height: 1.6;
 }

 /* Card grid */
 .service-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
 }

 .service-card {
   background: #fff;
   border-radius: 12px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
   overflow: hidden;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
   flex-direction: column;
 }

 .service-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
 }

 .service-card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
 }

 .card-content {
   padding: 25px;
   text-align: left;
 }

 .card-content h3 {
   font-size: 1.2rem;
   margin-bottom: 10px;
   font-weight: 600;
   color: #222;
   position: relative;
 }

 .card-content p {
   font-size: 0.95rem;
   color: #555;
   line-height: 1.6;
 }

 /* Accent line */
 .card-content h3::after {
   content: "";
   display: block;
   width: 40px;
   height: 2px;
   background: #ff6600;
   margin-top: 6px;
 }


 .aim-section {
   background: #f9f9f9;
   color: #333;
   padding: 60px 0px;
 }

 .aim-section-container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 80px 10%;
   gap: 40px;
   background: #fff;
   border-radius: 12px;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
   margin: auto;
   max-width: 1100px;
 }



 .aim-text {
   flex: 1;
 }

 .aim-text h2 {
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 15px;
   color: #ff6600;
 }

 .aim-text p {
   font-size: 1.05rem;
   line-height: 1.7;
   margin-bottom: 15px;
   color: #444;
 }

 .aim-graphic {
   flex: 0.8;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .circle {
   width: 200px;
   height: 200px;
   border-radius: 50%;
   background: conic-gradient(#ff6600, #ff9933, #ffcc66);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   font-size: 1.2rem;
   color: #fff;
   text-align: center;
   padding: 20px;
 }



 @media (max-width: 900px) {
   .aim-section {
     flex-direction: column;
     text-align: center;
   }

   .aim-graphic {
     margin-top: 20px;
   }
 }

 @media (max-width: 768px) {
   .aim-section-container {
     flex-direction: column;
   }
 }

 footer {
   background: #111;
   color: #eee;
   padding: 50px 10% 20px;
 }

 .footer-top {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
   margin-bottom: 30px;
 }

 /* Logo + slogan */
 .footer-logo img {
   width: 160px;
   /* adjust size as needed */
   margin-bottom: 12px;
 }

 .footer-logo p {
   font-size: 0.95rem;
   color: #bbb;
   font-style: italic;
   font-family: fantasy;
 }

 /* Quick Links */
 .footer-links h3,
 .footer-contact h3 {
   margin-bottom: 15px;
   font-size: 1.1rem;
   color: #fff;
 }

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

 .footer-links li {
   margin: 8px 0;
 }

 .footer-links a {
   text-decoration: none;
   color: #bbb;
   font-size: 0.95rem;
   transition: color 0.3s ease;
 }

 .footer-links a:hover {
   color: #ff6600;
 }

 /* Contact Info */
 .footer-contact p {
   margin: 16px 0;
   font-size: 0.95rem;
   color: #bbb;
 }

 .footer-contact a {
   color: #bbb;
   text-decoration: none;
   transition: color 0.3s ease;
 }

 .footer-contact a:hover {
   color: #ff6600;
 }

 /* Bottom Bar */
 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 15px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   gap: 15px;
   text-align: center;
 }

 .footer-bottom p {
   margin: 0;
   font-size: 0.9rem;
   color: #aaa;
 }

 .footer-social a {
   margin: 0 10px;
   font-size: 1.2rem;
   color: #bbb;
   transition: color 0.3s ease;
 }

 .footer-social a:hover {
   color: #ff6600;
 }

 @media (min-width: 768px) {
   .footer-bottom {
     flex-direction: row;
     text-align: left;
   }
 }


 .machinery-striped {
   background: #fff;
   padding: 4rem 2rem;
   font-family: Arial, sans-serif;
 }

 .machinery-striped .container {
   max-width: 1000px;
   margin: auto;
 }

 .machinery-striped h2 {
   font-size: 2rem;
   font-weight: 800;
   text-align: center;
   margin-bottom: 0.5rem;
   color: #222;
 }

 .machinery-striped .subtitle {
   text-align: center;
   color: #666;
   margin-bottom: 2rem;
   font-size: 1.1rem;
 }

 /* Striped list */
 .striped-list {
   list-style: none;
   margin: 0;
   padding: 0;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
 }

 .striped-list li {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1.2rem 1.5rem;
   font-size: 1.05rem;
   flex-wrap: wrap;
   /* allow wrap on small screens */
 }

 .striped-list li:nth-child(odd) {
   background: #f9f9f9;
 }

 .striped-list li:nth-child(even) {
   background: #fff8f2;
   /* light orange tint */
 }

 .striped-list .title {
   font-weight: 700;
   color: #ff6600;
 }

 .striped-list .details {
   color: #444;
   font-style: italic;
 }

 /* Responsive behavior */
 @media (max-width: 768px) {
   .striped-list li {
     flex-direction: column;
     align-items: flex-start;
     gap: 0.5rem;
   }

   .striped-list .title {
     font-size: 1.1rem;
   }

   .striped-list .details {
     font-size: 0.95rem;
   }
 }


 /* Animations */
 @keyframes fadeIn {
   from {
     opacity: 0;
   }

   to {
     opacity: 1;
   }
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes slideDown {
   from {
     opacity: 0;
     transform: translateY(-50px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeIn2 {
   from {
     opacity: 0;
     transform: translateX(50px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes popIn {
   from {
     opacity: 0;
     transform: scale(0.8);
   }

   to {
     opacity: 1;
     transform: scale(1);
   }
 }
