/* RESET */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #ffffff;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.menu a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  color: #22c55e;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 10%;
  background: linear-gradient(135deg, #f8fff9, #ffffff);
}

.text h1 {
  font-size: 48px;
  font-weight: 600;
}

.text p {
  font-size: 16px;
  color: #666;
  margin: 20px 0;
}

/* BUTTON */
.btn {
  padding: 12px 28px;
  background: #22c55e;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #16a34a;
  transform: scale(1.05);
}

/* IMAGE */
.hero-img {
  width: 500px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* SERVICES */
.services {
  padding: 80px 10%;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.service-box {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  width: 280px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}/* RESET */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #ffffff;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.menu a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  color: #22c55e;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 10%;
  background: linear-gradient(135deg, #f8fff9, #ffffff);
}

.text h1 {
  font-size: 48px;
  font-weight: 600;
}

.text p {
  font-size: 16px;
  color: #666;
  margin: 20px 0;
}

/* BUTTON */
.btn {
  padding: 12px 28px;
  background: #22c55e;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #16a34a;
  transform: scale(1.05);
}

/* IMAGE */
.hero-img {
  width: 500px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
/* ===== SERVICES SECTION ===== */

.services {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID LAYOUT */
.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* BOX */
.service-box {
  background: #f4f7f9;
  padding: 30px;
  border-radius: 14px;
  transition: 0.3s;
  text-align: left;
}

/* HOVER */
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TEXT */
.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}
/* ===== STATS SECTION ===== */

.stats-section {
  padding: 100px 8%;
  background: #f8fafc;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.stats-left {
  width: 40%;
}

.stats-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.stats-left h2 span {
  color: #22c55e;
}

.stats-left p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

.stats-btn {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.stats-btn:hover {
  background: #16a34a;
}

/* RIGHT SIDE */
.stats-right {
  width: 60%;
  display: flex;
  gap: 25px;
}

/* CARD */
.stat-card {
  flex: 1;
  background: #dbe5ea;
  padding: 40px 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px);
}

/* TEXT */
.stat-card h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .stats-container {
    flex-direction: column;
  }

  .stats-left,
  .stats-right {
    width: 100%;
  }

  .stats-right {
    flex-direction: column;
  }
}
/* ===== INDUSTRY SECTION ===== */

.industry-section {
  padding: 100px 8%;
  background: #e6eef2;
  text-align: center;
}

.industry-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.sub-text {
  color: #6b7280;
  margin-bottom: 40px;
}

.industry-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.industry-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* TEXT */
.industry-card p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* STARS */
.stars {
  color: #22c55e;
  font-size: 18px;
  margin-bottom: 15px;
}

/* TITLE */
.industry-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* SUB */
.industry-card span {
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .industry-container {
    grid-template-columns: 1fr;
  }
}
/* ===== CTA SECTION ===== */

.cta-section {
  background: #0b3f4a;
  padding: 80px 8%;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.cta-left {
  width: 70%;
}

.cta-left h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-left h2 span {
  color: #22c55e;
}

.cta-left p {
  color: #22c55e;
  font-size: 16px;
  line-height: 1.6;
}

/* RIGHT BUTTON */
.cta-btn {
  background: #22c55e;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #16a34a;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-left {
    width: 100%;
  }
}
/* ===== PORTFOLIO SECTION ===== */

/* ===== PORTFOLIO CLEAN DESIGN ===== */

.portfolio {
  padding: 100px 8%;
  background: #fff;
}

.portfolio-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-header h2 {
  font-size: 36px;
}

.portfolio-header span {
  color: #22c55e;
}

.portfolio-header p {
  color: #666;
  margin-top: 10px;
}

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.portfolio-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* Hover effect */
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.portfolio-content {
  padding: 20px;
}

.portfolio-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.portfolio-content p {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.portfolio-content span {
  font-size: 12px;
  color: #22c55e;
  font-weight: 500;
}

/* Responsive */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9fafb;
}

/* MAIN SECTION */
.lead-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  gap: 40px;
}

/* LEFT SIDE */
.left-content {
  flex: 1;
}

.left-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.left-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.left-content ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.left-content li {
  list-style: none;
  margin-bottom: 8px;
  font-weight: 500;
}

.left-content img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 10px;
}

/* RIGHT FORM */
.form-box {
  flex: 0.9;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-box h3 {
  margin-bottom: 20px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-box input,
.form-box textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.form-box textarea {
  height: 100px;
  resize: none;
}

.form-box button {
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.form-box button:hover {
  background: #333;
}
.footer {
  background: #e6eff2;
  color: #0f172a;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-left h2 {
  margin-bottom: 10px;
}

.footer-left p {
  color: #475569;
  line-height: 1.6;
}

.contact-info p {
  margin: 8px 0;
}

/* SOCIAL */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
}

/* LINKS */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #334155;
}

.footer-links a:hover {
  color: #000;
}

/* LOGOS */
.footer-logos {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logos img {
  width: 90px;
  object-fit: contain;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #cbd5e1;
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin-left: 15px;
  text-decoration: none;
  color: #334155;
  font-size: 14px;
}
.footer {
  background: #e9eff2;
  padding: 60px 8% 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.socials a {
  margin-right: 12px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

.footer-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 200px;
}

.footer-right img {
  height: 30px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-bottom a {
  margin-left: 15px;
  color: #000;
  text-decoration: none;
}
/* ===== FOOTER FIXED FINAL ===== */

.footer {
  width: 100%;
  background: #e9eff2;
  padding: 60px 0 30px;
}

/* MAIN CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* SOCIAL */
.socials {
  margin-top: 10px;
}

.socials a {
  margin-right: 12px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

/* MIDDLE */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

/* RIGHT */
.footer-right {
  flex: 1;
  min-width: 200px;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.footer-right img {
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-right img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid #ccc;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-bottom a {
  margin-left: 15px;
  font-size: 13px;
  text-decoration: none;
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ===== MOBILE RESPONSIVE FIX ===== */

@media (max-width: 1024px) {
  .stats-container,
  .services-container,
  .portfolio-container,
  .footer-container,
  .cta-container,
  .form-container {
    flex-direction: column;
    gap: 30px;
  }

  .stats-left,
  .stats-right {
    width: 100%;
  }

  .stats-right {
    flex-direction: column;
  }

  .services-container,
  .portfolio-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  h1, h2 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }

  .services-container,
  .portfolio-container {
    grid-template-columns: 1fr;
  }

  .stats-container {
    text-align: center;
  }

  .stats-left h2 {
    font-size: 26px;
  }

  .btn,
  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    text-align: center;
  }
}