@charset "utf-8";
/* CSS Document */
/* Custom styles for mobile menu and responsiveness */
        .mobile-menu {
            display: none; /* Hidden by default on mobile */
            flex-direction: column;
            background-color: white;
            position: absolute;
            top: 100%; /* Position below header */
            left: 0;
            right: 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }
        .mobile-menu.active {
            display: flex; /* Show when active */
        }
        .hamburger {
            display: block; /* Visible on mobile */
        }
        .desktop-nav {
            display: none; /* Hidden on mobile */
        }
        @media (min-width: 768px) {
            .hamburger {
                display: none; /* Hidden on desktop */
            }
            .desktop-nav {
                display: flex; /* Visible on desktop */
            }
            .mobile-menu {
                display: none; /* Ensure mobile menu stays hidden on desktop */
            }
        }
        .auction-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .sameline {
            display: flex;
            justify-content: space-between;
        }
        #countdown {
            font-weight: bold;
        }
        /* Custom styles for additional responsiveness and animations */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        /* Ensure form inputs are styled consistently */
        input, textarea, select {
            transition: all 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #10b981;
        }
        /* Modal styles */
      
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
        }
		.round-button {
  display: inline-block;
  padding-top:5px; padding-bottom:8px; padding-left:18px; padding-right:18px;
  border-radius: 50px; /* Makes it round */
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth hover transition */
}

.round-button:hover {
  background-color: #45a049; /* Darker green on hover */
}

.question {
            cursor: pointer;
            padding: 10px;
            background-color: #f1f1f1;
            margin-bottom: 5px;
            border-radius: 5px;
        }
        .answer {
            padding: 10px;
            border-left: 3px solid #007BFF;
            margin-bottom: 10px;
            display: none;
        }
        .answer.open {
            display: block;
        }
		
		/* Benefits Section */
        .benefits-section {
            max-width: 100%;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
        }

        .benefits-section h2 {
            font-size: 2.5em;
            color: #333;
            margin-bottom: 40px;
            position: relative;
        }

        .benefits-section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: #007bff;
            display: block;
            margin: 10px auto;
        }

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .benefit-card {
            background: #fff;
            border-radius: 10px;
            padding: 16px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			text-align:left;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .benefit-card i {
            font-size: 2.5em;
            color: #007bff;
            margin-bottom: 15px;
        }

        .benefit-card h3 {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 10px;
        }

        .benefit-card p {
            font-size: 1em;
            color: #666;
            line-height: 1.5;
        }

		 @media (max-width: 480px) {
      .benefits-grid {
		  grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
	  }
	  .benefits-card {
		  grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
	  }
    }
	
	 @media (max-width: 600px) {
            .break_line {
                flex-direction: column; /* Stack vertically */
                gap: 15px; /* Adjust spacing for mobile */
            }
        }
hr {
  border: 1px medium #f1f1f1;
  overflow:hidden;
  -webkit-mask: linear-gradient(90deg,#0000,#000 10% 80%,#0000);
}
.or-spacing {
  margin: 0 40px; /* Adds spacing around the "or" text */
}
.clickable {
  cursor: pointer; /* Makes the label text feel clickable */
}
.success-text {
  color: #28a745;
  font-weight: bold;
}
