
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&dispaly=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
font-family: "Spartan", sans-serif;
      font-family: ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";


}
.style{
    font-variant: normal;
  font-stretch: 100%;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-variation-settings: normal;
  font-feature-settings: normal;

  /* Text Formatting */
  text-align: left;
  text-indent: 0px;
  text-transform: none;
  text-decoration: none;
}
.style-2{
   font-weight: 400;
  font-style: normal;
  font-variant: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-stretch: 100%;
  font-variation-settings: normal;
  font-feature-settings: normal;
  
  text-transform: none;
  text-decoration: none;
  text-align: center;
  text-indent: 0;
}
.style-3{
  border:1px solid grey !important;
  background-color: #000 !important;
  border-radius: 5px !important;
}
/*orangebtn*/
.orange-btn {
  color: #fff;
  background: linear-gradient(135deg, #ff9f1a, #ff6a00);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  padding: 10px 15px;  /* Increased width */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 12px rgba(255, 140, 0, 0.3);
  letter-spacing: 0.3px;
   display: inline-block; /* Add this */
  margin-top: 10px;
  text-decoration: none;
}

.orange-btn:hover {
  background: linear-gradient(135deg, #ffb84d, #ff8200);
  transform: translateY(-3px);
  box-shadow: 0px 6px 18px rgba(255, 128, 0, 0.55);
}

.orange-btn:active {
  transform: scale(0.97);
}






/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .orange-btn {
    font-size: 13px;
    padding: 8px 13px;
    border-radius: 8px;
    width:60%;
    margin-bottom: 30px !important;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .orange-btn {
    font-size: 12.5px;
    padding: 7px 12px;
    border-radius: 7px;
    width: 100%;          /* Full width button */
    text-align: center;
  }
}


/* Top Header */
.top-header {
  padding: 12px 0;
  background: #ffffff;
  position: sticky;   /* sticky applied */
  top: 0;             /* where to stick */
  z-index: 1000;      /* header on top */
  border-bottom: 1px solid #eee;
  width: 100%;
  
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;

  margin: auto;
}


/* Left Section */
.left-section {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 55px;
  height: 50px;
  margin-right: 7px;
  border: 0.5px solid rgb(174, 169, 169);

}

.brand-title {
  
  font-size: 20px;
  letter-spacing: -0.2px;
  font-weight:700 !important;
  transform: scaleY(1.2);
  color: #0e2222;
}

.brand-tagline {
line-height: 20px;
  font-size: 12px;
  text-align: left;
  color: rgb(103, 126, 126);
}

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-links .link1 {
  display: flex;
  gap: 40px;
margin-left: 200px;
}

.nav-item {
  text-decoration: none;
  font-size: 14px;
  color: rgb(103, 126, 126);
  font-weight: 500;
  line-height: 20px;
  padding: 10px 0;
  letter-spacing: -0.8px;
  position: relative;
}

.nav-item:hover {
  color: #000;
}

.nav-item.active {
  color: #000;
  font-weight: 600;
}

.nav-item.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #ffb400;
  position: absolute;
  left: 0;
  bottom: 5px;
}

/* Buttons */
.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  padding: 8px 15px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  color: #203536;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.btn-login:hover {
  background: #f9956a;
  text-decoration: none;
  color:white;
}

.btn-register {
  padding: 10px 25px;
 background:#012013 !important;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.btn-register:hover {
  opacity: 0.8;
  text-decoration: none;
  color:white;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 35px;
  cursor: pointer;
  user-select: none;
  color: #203536;
  z-index: 1100;
  margin-right: 50px;
}
.hamburger:hover{
  background-color: rgb(233, 157, 69);
}
/* ==================== Responsive Navigation ==================== */


/* Mobile menu */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* hide initially */
    width: 350px;   /* define menu width */
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
.btn-login:hover {
  background: #f9956a;
  text-decoration: none;
  color:white;
}

  .nav-links.active {
    right: 0; /* slide-in */
  }

  /* Stack links vertically without space */
  .nav-links .link1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;         /* remove gap between links */
    padding: 0;     /* remove padding */
    margin: 0;      /* remove margin */
  }

  /* Remove spacing in links themselves */
  .nav-links .link1 a {
    padding: 10px 0; /* optional small padding */
    margin: 0;
  }
  .hamburger {
    display: block;
  }


  /* Make buttons visible inside menu */
  .nav-links .right-buttons {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-links .btn-login,
  .nav-links .btn-register {
    width: 100%;
    text-align: center;
    margin: 0;
  }
.nav-item.active::after {
  content: "";
  width: 20%;
  height: 3px;
  background: #ffb400;
  position: absolute;
  left: 0;
  bottom: 5px;
}
  /* Increase link size for mobile */
 

  /* Header alignment */
  .header-container {
    justify-content: space-between;
  }
 
}

/*herosection*/
/* ---------------------- HERO SECTION ---------------------- */

.hero_section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #013220, #004225);

  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

/* Background Image */
.hero_section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1.5;
  object-fit: cover;
}

/* Dark Overlay */
.hero_section::before {
  content: "";
  position: absolute;
  inset: 0;
 background: hsla(120, 89%, 7%, 0.77); /* thoda light overlay */
  backdrop-filter: blur(1px);   
  z-index: 1;
}

/* Layout container */
.hero_section .section {
  position: relative;
  width: 90%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 2;
  flex-wrap: wrap;
}

/* ---------------------- LEFT CONTENT ---------------------- */

.hero_section .content {
  max-width: 600px;
  color: white;
  flex: 1;
  margin-left:-50px;
  animation: fadeInLeft 1.2s ease-out forwards;
}

.hero_section .content h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
  

}

.hero_section .content span {
  font-weight: 700;
  color: #ff9f1a;
    display: inline-block;
  width: 70%;
  line-height: 0.9;
}
.hero_section .content p {
  font-size: clamp(14px, 2vw, 20px);
  /* Text Color */
  color: rgba(255, 255, 255, 0.8);

  /* Background */
  background-color: rgba(0, 0, 0, 0); /* Transparent */



  font-weight: 400;
  font-style: normal;


  margin-top: 5px;
  animation: fadeInLeft 1.4s ease-out forwards;
}
/* ---------- TABLET (max-width: 992px) ---------- */
@media screen and (max-width: 992px) {

  .hero_section {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero_section .content {
    margin-left: 0;
    max-width: 90%;
    text-align: center;
  }

  .hero_section .content span,
  .hero_section .content h1,
  .hero_section .content p {
    text-align: center;
    display: block;
    margin: auto;
  }
}


/* ---------- MOBILE (max-width: 768px) ---------- */
@media screen and (max-width: 768px) {
  
  .hero_section {
    padding: 40px 20px;
    text-align: center;
    min-height: 60vh; /* was likely 100vh */
  }

  .hero_section .content {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero_section .content h1 {
    font-size: clamp(24px, 7vw, 40px);
  }

  .hero_section .content p {
    margin-top: 10px;
  }
}


/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media screen and (max-width: 480px) {

  .hero_section {
    padding: 30px 15px;
    text-align: center;
    min-height: 60vh; /* was likely 100vh */
  }

  .hero_section .content {
    text-align: center;
  }

  .hero_section .content h1 {
    font-size: 26px;
  }

  .hero_section .content p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* CTA BUTTON */
.primary_button {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 40px;
  background: #ff6a2b;
  color: white;
  border-radius: 8px;
  font-size: clamp(14px, 2vw, 14px);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 6px 18px rgba(255, 107, 41, 0.4);
}

.primary_button:hover {
  background: black;
  transform: translateY(-3px);
}

/* ---------------------- LOGIN BOX ---------------------- */

.login-form {
  width: 100%;
  max-width: 450px;
  padding: 35px;
  border-radius: 18px;
  color: #fff;
  margin-left: -30px;

  /* Glass effect */
 background:#012013;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(143, 142, 142, 0.25);

  box-shadow: 0 10px 25px rgba(0,0,0,0.35);

  animation: fadeInRight 1.2s ease-out forwards;
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 24px);
}
.input-group{
  text-align: left !important;

}
/* INPUTS */
.input-group input {
  width: 90%;
  
padding:
12px 16px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  outline: none;
  background: rgba(255,255,255,0.9);
  margin-top: 6px;
}
.input-group input::placeholder{
  font-size: 14px;
}

.input-group input:focus {
  border: 2px solid #ff9f1a;
}

/* OTP BUTTON */
.send-otp {
  width: 90%;
  background:#924444;
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.send-otp:hover {
  background: black;
  color: white;
}

/* Register text */
.register-text {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}

.register-text a {
  color: #ff9f1a;
  font-weight: 600;
}

/* ---------------------- RESPONSIVE FIXES ---------------------- */

@media (min-width: 300px) and (max-width: 800px) {

  .hero_section .section {
    flex-direction: column;
    text-align: center;
  }

  .login-form {
    width: 100%;
    max-width: 450px;
    margin-left:14px;
  }

  .primary_button {
    width: 100%;
  }
}

/* ---------------------- ANIMATIONS ---------------------- */

@keyframes fadeInLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInRight {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Optional mobile nicer animation */
@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero_section .content,
  .login-form {
    animation: fadeInUp 1s ease-out forwards;
  }
}

/*bottom banner*/

#bottombanner{
  text-align: center;
  padding: 90px 0 30px 0px;
  border:2px solid green;
}
#bottombanner .head1 h2{
    
    font-size: 30px;
    font-style: normal;
    color:
rgb(29, 48, 48);
font-weight: bolder;
line-height: 36px;
}

.head1 p {
    text-align: center;
    font-weight: 500;
}

/*product*/

/* Container Layout */
.cars-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;


}

/* Card Style */
.cars-container .car-card {
  width: 350px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.cars-container .car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Image Section */
.car-card .car-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.car-card .car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timer Badge */
.car-card .timer {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e63946;
  color: white;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 13px;
}

/* Live Badge */
.car-card .live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #16a34a;
  color: white;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 13px;
}

/* Content Section */
.car-card .content {
  padding: 18px;
}

.car-card .content h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.car-card .location {
  color: #777;
  margin-top: 4px;
  font-size: 14px;
}

/* Price Label */
.car-card .label {
  margin-top: 12px;
  color: #777;
  font-size: 12px;
}

.car-card .price {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
  color: #04341a;
  font-style: normal ;
  letter-spacing: normal;
}

/* Bidders Line */
.car-card .bidders {
  color: #555;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Button */
.button{
  text-align: center;
}
 .become{
  background: transparent !important;
  border: 1px solid grey !important;
  color:black !important;
}
button {
  width: 20%;
  padding: 14px;
  border: none;
  font-weight: 500;
  background: #04341a;
  color: white;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
}
@media (min-width: 300px) and (max-width: 800px){

  button{
    width: 50%;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }

  .button{
    text-align: center;
  }

  .become{
    width: 50%;
  }
}

.aunction_btn{

  width: 100%;
  padding: 12px;
  border: none;
  background: #04341a;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
}
.aunction_btn,
button:hover {
  background: #07572c;
}

/* Responsive */
@media (max-width: 768px) {
  .auction-container {
    flex-direction: column;
    align-items: center;
  }
}
/*ourpartner*/
.ourpartner{
 font-size: 36px !important;
  transform: scaley(1); /* Increase horizontal length */
  display: inline-block; /* Required for scaling */
  letter-spacing: -0.8px !important;

}
/* View Gallery */
#viewGallery {
    text-align: center;
    padding: 50px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    gap: 20px; /* spacing between buttons */
}

/* Solid Button */
.btn-solid {
    background:transparent;
    font-weight: 500;
    border: 1PX solid grey;
    padding: 15px 20px;
    width: 18%;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color:black;
    transition: all 0.3s ease;
}

 .btn-solid:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #e88f86, #ffb8b2);
}

/* Transparent Button */
 .btn-outline {
    color:white;
    font-weight: 500;
    border: 1px solid #635f5f;
    padding: 15px 20px;
    width: 18%;
    border-radius: 10px;
    background-color: #2e3f3c !important;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* -------- LAPTOP / SMALL DESKTOP -------- */
@media (max-width: 1200px) {
  .btn-solid,
  .btn-outline {
    width: 25%;
    font-size: 13px;
    padding: 14px 18px;
  }
}

/* -------- TABLETS -------- */
@media (max-width: 768px) {
  .btn-solid,
  .btn-outline {
    width: 40%;
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* -------- LARGE MOBILE -------- */
@media (max-width: 576px) {
  .btn-solid,
  .btn-outline {
    width: 60%;
    font-size: 12px;
    padding: 10px 14px;
  }
}

/* -------- SMALL MOBILE -------- */
@media (max-width: 400px) {
  .btn-solid,
  .btn-outline {
    width: 80%;
    font-size: 11px;
    padding: 8px 12px;
  }
}


#viewGallery .btn-outline:hover {
    transform: translateY(-5px);
    background: #e88f86;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/*industries from contact page*/
.industry button{
  width:70% !important;
  font-size: 14px;
  padding:8px 18px !important;
  margin-top: 10px !important;
  border-radius: none !important;

}
/*industries*/


#industries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0; /* increased vertical spacing */
    padding: 40px 20px; /* more padding for height */
    justify-content: center;

}

#industries .industry {
    border: none;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px; /* increased height */
    text-align: center;
    line-height: 36px;
}

#industries .industry:hover {
    transform: translateY(-10px);
        box-shadow: 4px 2px 8px rgb(131, 130, 130);

}

#industries .industry h3 {
    font-size: 20px;
    color:black; /* darker green accent */
    font-weight: 700 !important;
    line-height: 1.5;
    max-width: 200px;
    margin:0px 0px 8px;
    letter-spacing: normal;
}
#industries .industry img
{
  border:1px solid #f4f7f7;
  padding:5px;
  border-radius: 8px;
  margin:0px 85.0833px 16px;
  background-color:#E8EAEA;
}
#industries .industry p {
    font-size: 16px;
  line-height:24px;
    color: grey;
}




#industries .industry span{
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color:rgb(203, 140, 21);

  margin-top: 10px;
  border-radius: 50%;
  border: 1px solid orange;
  background-color: transparent;
}





/*industry3*/


#industries3 .industry {
    border: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
  background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px; /* increased height */
    text-align: center;
    max-width: 250px;
    padding:30px 40px 20px 40px;
}


.partner-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.partner-card {
  background: #ffffff;
  width: 380px;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border: 1px solid #eef2f3;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #11343a;
  line-height: 36px;
  margin:
0px 0px 16px;
}

.partner-card p {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #ff8c00;
}

/*courses*/
/* Section Background */
#testimonials {
    padding: 80px 10px;
    text-align: center;
}

/* Center Cards + Gap Between Cards */
#testimonials .section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;   /* CARD-TO-CARD GAP */
}

/* Each Card Wrapper */
.review-card{
    display: inline-block;
}

/* Testimonial Card */
.review-card > div {
    width: 380px;
    background: #ffffff;
    padding: 30px;     /* INNER GAP INCREASED */
    margin: 10px;      /* OUTER GAP EXTRA */
    box-shadow: 0 10px 35px rgba(0,0,0,0.10);
    text-align: left;
    transition: .4s ease;

border-radius: 8px;    position: relative;
}

/* Hover Glow */
.review-card > div:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 45px rgba(47,212,164,0.35);
}

/* Stars */
.review-card  div span {
    color:#FF9F1A;
    font-size: 28px;font-weight: 700;
}

/* Divider Line */
.review-card hr {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 18px 0;  /* GAP ABOVE & BELOW HR */
}

/* Review Text */
.review-card blockquote {
    font-size: 18px;
    color:
rgb(103, 126, 126);
    line-height: 1.7;   /* MORE TEXT GAP */
margin-top: 15px;
}

/* Reviewer Name */
.review-card h6 {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 700 !important;
    color:black;
}

/* City */
.review-card p:last-child {
     color:
rgb(103, 126, 126);
    font-size: 16px;
}
/*panel-1*/
/*panel*/
/* Explore More Section */
#exploreMore {
    text-align: center;
    margin: 60px auto;
    padding: 30px 20px;
    max-width: 750px;
    position: relative;
    border-radius: 15px;
        transform: translateY(40px);
    animation: fadeUp 1s ease-out forwards;
}
/* Fade Up Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Heading */
#exploreMore h2 {
    font-size: 30px !important;
    font-weight: 700 !important;
    color:black;
    position: relative;
    display: inline-block;
    
}



/* Text */
#exploreMore p {
    font-size: 25px;
    color: #666;
    font-weight: 400 !important;
    margin-top: 10px;
 
}
/*how it works*/
/* Explore More Section */
.howitworks {
    text-align: center;
    margin: 60px auto;
    padding: 30px 20px;
background-color:#f0f0da;
    border-radius: 15px;
}


/* Heading */.howitworks h2 {
    color:black;
    position: relative;
    display: inline-block;
margin:0px 0px 16px;     font-family: ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", 
    "Segoe UI Symbol", "Noto Color Emoji";

  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
padding: 0px;
  text-align: center;

}



/* Text */
.howitworks p {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    letter-spacing: normal;
}





/*panel*/
.customer{
    font-size: 36px !important;
    animation: fadeIn 1s ease forwards;
    font-weight: 700 !important;
    line-height: 40px !important;
    transform: scaleY(1.5) !important;
    letter-spacing: -0.8px !important;
}



/* Working Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/*aunction card of list */
/*join us now*/
.future-block {
  text-align: center;
  padding: 60px 20px;
  color: white;
background:#012013;
}

.future-heading {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;letter-spacing: -0.5px;
}

.future-text {
  font-size: 20px;
  color: #b7c7c7;
  max-width: 750px;
  margin: 0 auto 45px auto;
  letter-spacing: normal;
  font-weight: 300;
  line-height: 1.6;
}

.future-action {
  background: #ffb200;
  border: none;
  padding: 14px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  color:white;
max-width: 150px !important;
  box-shadow: 0px 6px 20px rgba(255, 178, 0, 0.3);
}

.future-action:hover {
  transform: translateY(-3px);
  box-shadow: 0px 10px 28px rgba(255, 178, 0, 0.45);
}


@media (min-width: 300px) and (max-width: 800px){

  .future-block{
    padding:40px 15px;
  }

  .future-heading{
    font-size:26px;
    line-height:1;
    letter-spacing:-0.3px;
    
  padding: 0px;
  margin: 0;
  }

  .future-text{
    font-size:18px;
    line-height:1.55;
  
  }

  .future-action{
    font-size:13px;
    padding:10px 14px;
    border-radius:8px;
    max-width:100% !important;
  }
}


.meta{
  display:flex;
  gap:20px;
  color:#666;
  font-size:14px;
  font-size: 14px;
  font-style: normal;
}

/* RIGHT SIDE */
.right{
  display:flex;
  align-items:center;
  gap:40px;
  text-align:center;
}

.right p{
  font-size:13px;
  color:grey;
  letter-spacing: -1px;
  transform: scaleY(0.9);
  font-style: normal;
}

.right h4{
  font-size:16px;
  font-weight:600;
  color:#072a28;
  margin-top: 5px;
}

.status{
  background:#d7f7d9;
  color:#0d6b2c;
  padding:6px 10px;
  border-radius:20px;
  font-size:10px;
  font-weight:600;
}


.auction-card button{
  width:100%;
  padding: 10px !important;
  margin-top: 10px !important;
  box-shadow: none !important;
}

/* Responsive */
@media(max-width:768px){
  .auction-card{
    flex-direction:column;
    gap:20px;
    
  }

  .right{
    width:100%;
    justify-content:space-between;
  }
}

/* ===== Responsive: 300px to 768px ===== */
/* ===== Mobile View (300px – 768px) ===== */
@media (max-width: 768px) and (min-width: 300px) {

  .auction-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px;
    gap: 12px;
    border:1px solid grey;
    align-items: flex-start;
  }

  /* IMAGE LEFT */
  .left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .left img {
    width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: 8px;
    object-fit: cover;
  }

  /* CONTENT RIGHT */
   .right {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
  }

  .left h3 {
    font-size: 14px;
    margin-bottom: 0;
  }

  /* META */
  .meta {
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
    color: #666;
  }

  /* TEXT */
  .right p {
    font-size: 12px;
    margin: 0;
  }

  .right h4 {
    font-size: 15px;
    margin: 0;
  }

  /* STATUS */
  .status {
    padding: 4px 8px;
    font-size: 10px;
  }

  /* BUTTON FULL WIDTH */
  .auction-card button {
    width: 100%;
    font-size: 14px;
    margin-top: 10px !important;
    padding: 8px !important;
  }
}


/*terms and conditions*/
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-box {
  width: 90%;
  max-width: 650px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.modal-header {
  background: linear-gradient(135deg,#064e3b,#16a34a);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
}
.modal-header h2{
  font-size: 30px;
  color:orange;

}
.close-btn {
  font-size: 26px;
  cursor: pointer;
}
.modal-body {
  padding: 20px;
  max-height: 300px;
  overflow-y: auto;
}
.modal-body p{
  font-size: 14px;
  text-align: left;
}
.note-box {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 12px;
  border-radius: 8px;
}