* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #f8f9fa;
  color: #333;
}
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 50px;
  background: #0056b3;
  color: #fff;
}
.logo {
  font-size: 1.5rem;
  font-weight: 600;
}
.header-btn {
  background: #fff;
  color: #0056b3;
  border: none;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.header-btn:hover {
  background: #004094;
  color: #fff;
}
/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90vh;
  background-color: #fff;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  min-width: 350px;
  padding: 60px 80px;
}
.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0056b3;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}
/* Form */
.form-container {
  background: #f0f4f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 600px;
}
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.form-row input {
  flex: 1;
}
input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
}
.form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.form-buttons button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.form-buttons button:nth-child(1) {
  background-color: #0056b3;
  color: #fff;
}
.form-buttons button:nth-child(2) {
  background-color: #ffc107;
  color: #000;
}
.form-buttons button:nth-child(3) {
  background-color: #28a745;
  color: #fff;
}
.form-buttons button:hover {
  opacity: 0.9;
}
.hero-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Footer */
footer {
  background: #0056b3;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-text {
    padding: 40px 20px;
    text-align: center;
  }
  .form-row {
    flex-direction: column;
  }

  .hero-img {
    height: 300px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f9fa;
}

/* Main Section */
.product-form-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  gap: 40px;
}

/* Left Side (70%) */
.left-side {
  flex: 0 0 70%;
  overflow: auto;
}

.left-side h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #222;
  text-align: center;
}

/* Product Images */
.product-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ddd;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.column img:hover {
  transform: scale(1.05);
  border-color: #007bff;
}

/* Right Side (Fixed Position) */
.right-side {
  flex: 0 0 30%;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: sticky;     /* <--- Fixed-like behavior */
  top: 20px;            /* Keeps it visible from 20px down */
  height: fit-content;
}

.right-side img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.right-side h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex: 1;
}

button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 900px) {
  .product-form-section {
    flex-direction: column;
    align-items: center;
  }

  .left-side, .right-side {
    flex: 0 0 100%;
  }

  .right-side {
    position: relative; /* disable fixed behavior for mobile */
    top: 0;
  }

  .product-gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .column img {
    width: 140px;
    height: 140px;
  }
}




/* Success Section */
.success {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  flex-wrap: wrap;
  background-color: #fff;
}
.success-text {
  flex: 1;
  min-width: 350px;
}
.success-text h1 {
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 20px;
}
.success-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}
.search-chat {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  width:500px;

}
.search-chat input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
  
}
.chat-btn {
  background-color:#0056b3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.chat-btn:hover {
  opacity: 0.9;
}
.success-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.success-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .logo a {
  color: #fff;
  text-decoration: none; 
}

header .logo a:hover {
  color: #e0e0e0; 
}
@media (max-width: 768px) {
  .success {
    flex-direction: column;
    padding: 40px 20px;
  }

  .success-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .success-img {
    height: 300px;
  }

  .search-chat {
    flex-direction: column;
  }

  .search-chat input,
  .chat-btn {
    width: 100%;
  }
}
/* next.html*/
/* Modal */
.modal {
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.6); 
    justify-content:center; 
    align-items:center; 
    z-index:1000; 
}
.modal-content {
  position: relative;
  background: #fff;
  width: 800px;
  height: 350px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
 
}
.close-btn { 
    position:absolute; 
    top:15px; right:20px; 
    background:#ff4d4d; 
    border:none; color:#fff; 
    font-weight:bold; 
    padding:5px 12px; 
    border-radius:5px; 
    cursor:pointer; 
}
.tab-menu { 
    flex:1; 
    background:#0056b3; 
    color:#fff; 
    display:flex; 
    flex-direction:column; 
    overflow-y:auto; 
    
}
.tab-menu button { 
    padding:15px; 
    border:none; 
    background:#0056b3; 
    color:#fff; 
    text-align:left; 
    cursor:pointer; 
    font-weight:600; 
    transition:0.3s; }
.tab-menu button.active, .tab-menu button:hover { background:#004094; }
.tab-content { 
    flex:3; 
    padding:20px; 
    background:#f8f9fa; 
    overflow-y:auto; }
.tab-content div { display:none; }
.tab-content div.active { display:block; }
img { max-width:100%; border-radius:5px; }

/* Footer with centered buttons */
.modal-footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  justify-content: center;
}
.modal-footer button {
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}
.back-btn {
  background: #ccc;
  color: #000;
}
.next-btn {
  background: #28a745;
  color: #fff;
}
.modal-footer button:hover {
  opacity: 0.9;
}
.tab-content {
  padding-bottom: 80px;
}
/* Responsive */
@media(max-width:768px){
  .success { flex-direction:column; padding:40px 20px; }
  .success-img{ height:300px; }
  .modal-content{ flex-direction:column; }
  .tab-menu{ flex-direction:row; overflow-x:auto; }
  .tab-menu button{ flex:1; white-space:nowrap; }
}





