/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #07121c, #0b2a3c);
  color: white;
}

/* HERO */
.hero {
  height: 55vh;
  display: flex;
  align-items: center;
  padding: 30px;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

h2 {
  margin-bottom: 10px;
}

p {
  margin-bottom: 8px;
}

.hero p {
  color: #aaa;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  background: #00d1c1;
  padding: 10px 18px;
  border-radius: 8px;
  color: black;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
 padding: 30px 15px;}

/* SECTIONS */
.section {
 padding: 30px 15px;}


.container-custom {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;   /* was 40px */
  align-items: center;
}

/* IMAGE */
.img {
  width: 100%;
  max-height: 500px;     
  object-fit: contain;   
  display: block;
  margin: auto;
}

.img-large {
  width: 100%;
  height: auto;        
  object-fit: contain;
  display: block;
}

.product-detail-img {
  max-height: 550px;  
}

.logo-box {
  background: #ffffff;       
  padding: 8px 12px;         
  border-radius: 8px;        
  display: inline-block;
}

.logo-box img {
  height: 40px;
  width: auto;
  display: block;
}

/* PRODUCTS */
.products {
 padding: 30px 15px;}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 240px);
  gap: 15px;   /* 👈 reduce from 25px */
  justify-content: center;
}
/* WORKFLOW */
.workflow {
 padding: 30px 15px;}

 .products h2,
.workflow h2 {
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* NAVBAR */
.navbar-custom {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

/* LOGO */
.logo a {
  font-size: 22px;
  font-weight: 600;
  color: #00d1c1;
  text-decoration: none;
}

/* MENU */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00d1c1;
}

/* BUTTON */
.nav-btn .btn {
  background: #00d1c1;
  color: #000;
}

/* Logo Size Control */
.logo img {
    height: 40px;   /* adjust this (try 30px–60px) */
    width: auto;
}

/* MOBILE ICON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 250px;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: 0.3s;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  margin: 15px 0;
}

.mobile-menu.active {
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


.hero h1 {
  font-size: 48px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


/* STACK */
.stack {
  display: grid;
  gap: 20px;
}

/* IMAGE */
img {
  width: 100%;
  border-radius: 15px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .grid {
    grid-template-columns: 1fr;
  }
}

footer {
  background: rgba(0,0,0,0.6);
  padding: 40px 20px;
  text-align: center;   /* ✅ THIS centers text */
  color: #aaa;
}

/* Optional: center inner content */
.footer-container {
  max-width: 1200px;
  margin: auto;   /* ✅ centers block */
}

/* PRODUCT CARD HOVER */
.product-grid a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Lift effect */
.product-grid a:hover {
  transform: translateY(-10px) scale(1.02);
}

/* PRODUCT CARD */
.product-card {
  width: 240px;
  padding: 10px;   /* 👈 less space inside */
}

/* HOVER LIFT */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px rgba(0,209,193,0.6);
}

/* IMAGE ZOOM */
.product-card img {
  height: 380px;
  width: 100%;
  object-fit: contain;   /* 👈 NO cropping */
  background: transparent; /* 👈 no white bg */
  padding: 5px;          /* 👈 very small spacing */
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card {
  width: 260px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  background: rgba(255,255,255,0.03);
}

/* OVERLAY */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-align: center;
  padding: 20px;
}

/* SHOW OVERLAY */
.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay span {
  margin-top: 10px;
  color: #00d1c1;
}

/* MODAL BACKGROUND */
.modal-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* MODAL BOX */
.modal-content {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  color: white;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 25px;
  cursor: pointer;
}

/* ===== MODERN CONTACT FORM ===== */

.contact-form-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* FULL WIDTH */
.contact-form-modern .full {
  grid-column: span 2;
}

/* FORM GROUP */
.form-group {
  position: relative;
}

/* INPUTS */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

/* INPUT FOCUS GLOW */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #00d1c1;
  box-shadow: 0 0 10px rgba(0,209,193,0.5);
}

/* FLOAT LABEL */
.form-group label {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #aaa;
  font-size: 13px;
  transition: 0.3s;
  pointer-events: none;
}

/* FLOAT EFFECT */
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -8px;
  left: 10px;
  background: #07121c;
  padding: 0 6px;
  font-size: 11px;
  color: #00d1c1;
}

/* BUTTON */
.btn-modern {
  grid-column: span 2;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(45deg, #00d1c1, #00a8ff);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.btn-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,209,193,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-form-modern {
    grid-template-columns: 1fr;
  }

  .contact-form-modern .full {
    grid-column: span 1;
  }

  .btn-modern {
    grid-column: span 1;
  }
}

.contact-card {
  padding: 30px;
  line-height: 1.8;
}

.contact-card h3 {
  margin-bottom: 20px;
  color: #00d1c1;
}

/* FIX HERO POSITION */
.contact-hero {
  height: 60vh;
  background: url('images/contact-us-background.jpeg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;   
  justify-content: center;
  padding-bottom: 60px;    
}

/* OVERLAY BOX */
.hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 25px 40px;
  border-radius: 10px;
  text-align: center;
}

/* TEXT */
.contact-hero h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.contact-hero p {
  font-size: 16px;
  color: #ddd;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* LAYOUT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD DESIGN (MAIN FIX) */
.contact-card {
  background: rgba(0, 0, 0, 0.7);  /* dark box */
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* HEADINGS */
.contact-card h3 {
  margin-bottom: 20px;
}

/* INPUTS */
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #ccc;
}

/* BUTTON */
.contact-card .btn {
  width: 100%;
}

/* TEXT */
.contact-card p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.section h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 60%;
  background: #00d1c1;
  margin-top: 10px;
}

.section:last-child {
  padding-bottom: 20px;
}

.section-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 20px auto;
  width: 80%;
}

select {
  background: rgba(255,255,255,0.05);
  color: white;
}

select option {
  background: #07121c;   /* dark background */
  color: white;
}