/* Basic Reset */
* {
  
  margin: 0;
  
  padding: 0;
  
  box-sizing: border-box;
  
  
}


body {
  
  font-family: 'Roboto', sans-serif;
  
  background-color: #f5f5f7;
  
  color: #333;
  
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  
}


.container {
  
  width: 90%;
  
  margin: 0 auto;
  
  
}


/* Header Styling */
.header {
  
  background-color: #fff;
  
  padding: 20px 0;
  
  border-bottom: 1px solid #e0e0e0;
  
  position: relative;
  /* To allow button positioning */
  
}


.logo {
  
  font-size: 24px;
  
  font-weight: 700;
  
  color: #000;
  
  
}


.nav ul {
  
  list-style: none;
  
  display: flex;
  
  gap: 20px;
  
  
}


.nav a {
  
  text-decoration: none;
  
  color: #333;
  
  font-weight: 500;
  
  
}


.btn {
  
  padding: 10px 20px;
  
  border-radius: 4px;
  
  text-decoration: none;
  
  color: #fff;
  
  display: inline-block;
  
  transition: background-color 0.3s ease;
  
  
}


.btn:hover {
  
  opacity: 0.9;
  
  
}


.btn-primary {
  
  background-color: #007bff;
  
  
}


.btn-secondary {
  
  background-color: #28a745;
  
  
}


/* Updated Button Styling for Get Free Access Key */
.btn-get-key {
  
  position: absolute;
  
  right: 20px;
  
  top: 50%;
  
  transform: translateY(-50%);
  
  padding: 10px 20px;
  
  border-radius: 4px;
  
  text-decoration: none;
  
  color: #fff;
  /* White text for contrast */
  background-color: #ff5733;
  /* Bright orange color for visibility */
  transition: background-color 0.3s ease;
  
  
}


.btn-get-key:hover {
  
  background-color: #c70039;
  /* Darker shade on hover */
  
}


/* Hero Section Styling */
.hero {
  
  display: flex;
  
  justify-content: space-between;
  
  align-items: center;
  
  padding: 100px 0;
  
  background: linear-gradient(to right, #007bff, #6610f2);
  
  color: #fff;
  
  text-align: center;
  /* Center text for better responsiveness */
  
}


.hero-content {
  
  flex: 1;
  /* Allow flexibility */
  
}


.hero-content h2 {
  
  font-size: 48px;
  
  margin-bottom: 20px;
  
  
}


.hero-content p {
  
  font-size: 20px;
  
  margin-bottom: 30px;
  
  
}


.hero-image img {
  
  width: 500px;
  
  
}


/* Features Section Styling */
.features {
  
  padding: 80px 0;
  
  background-color: #f8f9fa;
  
  
}


.features-grid {
  
  display: flex;
  
  gap: 40px;
  
  justify-content: space-around;
  
  text-align: center;
  
  
}


.feature img {
  
  margin: 30px 0px 20px 0px;
  
  width: 50px;
  
  
}


.feature h3 {
  
  font-size: 24px;
  
  margin-bottom: 10px;
  
  
}


/* Free Access Section Styling */
.free-access {
  
  padding: 80px 0;
  
  background-color: #28a745;
  
  color: #fff;
  
  text-align: center;
  
  
}


.free-access h2 {
  
  font-size: 36px;
  
  margin-bottom: 20px;
  
  
}


.free-access p {
  
  font-size: 18px;
  
  margin-bottom: 30px;
  
  
}


/* Free Access Key Page Styling */
.free-access-key {
  
  padding: 80px 0;
  
  text-align: center;
  
  background-color: #f8f9fa;
  
  
}


/* .ad-section {
  
  max-width: 100%;
  Ensure it doesn't overflow
  overflow: hidden;
  Prevent content overflow
  
}


.ad-section iframe {
  
  width: 100%;
  Make iframe responsive
  height: auto;
  Maintain aspect ratio
  
}
*/

.timer {
  
  font-size: 24px;
  
  margin-bottom: 20px;
  
  color: #ff0000;
  
  
}


.access-key {
  
  margin-top: 30px;
  
  font-size: 24px;
  
  background-color: #f4f4f4;
  
  color: #fff;
  
  padding: 20px;
  
  border-radius: 8px;
  
  display: inline-block;
  
  
}


/* Footer Styling */
.footer {
  
  padding: 40px 0;
  
  text-align: center;
  
  background-color: #343a40;
  
  color: #fff;
  
  
}


/* Responsive Design for tablets, mobile, and desktops */

/* Tablet Styling */
@media screen and (max-width: 1024px) {
  
  .hero-content h2 {
    
    font-size: 36px;
    
    
  }
  
  
  .hero-content p {
    
    font-size: 18px;
    
    
  }
  
  
  .hero-image img {
    
    width: 350px;
    
    
  }
  
  
  .btn-get-key {
    
    right: 10px;
    
    
  }
  
  
  .features-grid {
    
    flex-direction: column;
    
    gap: 20px;
    
    
  }
  
  
}


/* Mobile Styling */
@media screen and (max-width: 768px) {
  
  .hero {
    
    flex-direction: column;
    
    text-align: center;
    
    
  }
  
  
  .hero-content h2 {
    
    font-size: 28px;
    
    
  }
  
  
  .hero-content p {
    
    font-size: 16px;
    
    
  }
  
  
  .hero-image img {
    
    width: 250px;
    
    margin-top: 20px;
    
    
  }
  
  
  .btn-get-key {
    
    position: static;
    
    transform: none;
    
    margin-top: 20px;
    
    
  }
  
  
  .features-grid {
    
    flex-direction: column;
    
    gap: 20px;
    
    
  }
  
  
  .free-access h2 {
    
    font-size: 28px;
    
    
  }
  
  
  .free-access p {
    
    font-size: 16px;
    
    
  }
  
  
}


/* Desktop Styling */
@media screen and (min-width: 1025px) {
  
  .hero-content h2 {
    
    font-size: 48px;
    
    
  }
  
  
  .hero-content p {
    
    font-size: 20px;
    
    
  }
  
  
  .btn-get-key {
    
    right: 20px;
    
    top: 50%;
    
    transform: translateY(-50%);
    
    
  }
  
  
}


code {
  
  background-color: #f4f4f4;
  /* Light gray background for code */
  border: 1px solid #ddd;
  /* Light border */
  border-radius: 4px;
  /* Rounded corners */
  padding: 5px;
  /* Padding around the text */
  display: block;
  /* Make code block a block element */
  font-family: monospace;
  /* Use a monospace font */
  margin: 10px 0;
  /* Space around the code block */
  width: 100%;
  /* Full width */
  max-width: 100%;
  /* Prevent max-width issues */
  box-sizing: border-box;
  /* Include padding and border in width */
  overflow: auto;
  /* Scroll if content exceeds */
  white-space: pre-wrap;
  /* Preserve whitespace and wrap text */
  word-wrap: break-word;
  /* Break long words */
  
}


/* Command box style */
.key-section {
  
  background-color: #ffffff;
  /* Dark background */
  color: #000000;
  /* Light blue text */
  border: 1px solid #61dafb;
  /* Light blue border */
  padding: 15px;
  
  margin: 15px 0;
  
  border-radius: 5px;
  
  font-family: 'Courier New', Courier, monospace;
  /* Monospace font for code */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Subtle shadow */
  
}


.key-section p {
  
  margin: 0;
  
  font-weight: bold;
  /* Bold label */
  
}


.btn-download {
  
  display: inline-block;
  
  padding: 10px 15px;
  
  background-color: #61dafb;
  /* Light blue color */
  color: #282c34;
  /* Dark text color */
  text-decoration: none;
  
  border-radius: 5px;
  
  margin-top: 10px;
  
  transition: background-color 0.3s;
  
  
}


.btn-download:hover {
  
  background-color: #21a1f1;
  /* Darker blue on hover */
  
}



/* Pricing Section Styles */
.pricing {
  
  padding: 60px 0;
  
  background: linear-gradient(to right, #007bff, #6610f2);
  
  
}


.pricing .section-title {
  
  text-align: center;
  
  margin-bottom: 40px;
  
  font-size: 2.5rem;
  
  color: #fff;
  
  
}


.pricing-grid {
  
  display: flex;
  
  justify-content: space-around;
  
  flex-wrap: wrap;
  
  
}


.pricing-plan {
  
  background-color: #fff;
  
  border: 1px solid #ddd;
  
  border-radius: 10px;
  
  padding: 30px;
  
  width: 300px;
  
  text-align: center;
  
  margin: 15px;
  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
  transition: transform 0.3s;
  
  
}


.pricing-plan:hover {
  
  transform: translateY(-5px);
  
  
}


.pricing-plan h3 {
  
  font-size: 1.8rem;
  
  margin-bottom: 15px;
  
  
}


.pricing-plan .price {
  
  font-size: 2rem;
  
  color: #4caf50;
  
  margin-bottom: 15px;
  
  
}


.pricing-plan ul {
  
  list-style: none;
  
  padding: 0;
  
  margin-bottom: 20px;
  
  
}


.pricing-plan ul li {
  
  margin-bottom: 10px;
  
  
}


.popular {
  
  border: 2px solid #4caf50;
  
  
}


.popular h3 {
  
  color: #4caf50;
  
  
}


.popular .price {
  
  color: #4caf50;
  
  
}


/* Button Styles */
.btn {
  
  margin-top: 15px;
  
  display: inline-block;
  
  padding: 10px 20px;
  
  background: linear-gradient(to right, #007bff, #6610f2);
  
  color: #fff;
  
  text-decoration: none;
  
  border-radius: 5px;
  
  transition: background-color 0.3s;
  
  
}


.btn:hover {
  
  background-color: #45a049;
  
  
}


.payment-methods {
  
  text-align: center;
  
  margin: 20px 0;
  
  
}



.payment-icons {
  
  display: flex;
  
  justify-content: center;
  
  flex-wrap: wrap;
  
  gap: 20px;
  /* Spacing between icons */
  
}


.payment-icon {
  
  max-width: 80px;
  /* Adjust icon size */
  height: auto;
  
  
}


@media (max-width: 768px) {
  
  .payment-icon {
    
    max-width: 60px;
    /* Smaller size for mobile screens */
    
  }
  
  
}


/* Ensure the icons split into two lines */
.payment-icons {
  
  width: 100%;
  /* Full width of the container */
  max-width: 400px;
  /* Adjust max width for two rows */
  margin: 20px auto;
  /* Center the icons */
  
}



/* Contact Section */
.contact-section {
  
  background-color:#343a40;
  
  color: #fff;
  
  text-align: center;
  
  padding: 50px 20px;
  
  
}


.contact-section h2 {
  
  font-size: 2em;
  
  margin-bottom: 20px;
  
  
}


.contact-section p {
  
  font-size: 1.2em;
  
  margin-bottom: 30px;
  
  
}


.contact-icons {
  
  display: flex;
  
  justify-content: center;
  
  gap: 40px;
  
  
}


.contact-icon {
  
  text-decoration: none;
  
  text-align: center;
  
  color: #333;
  
  font-size: 1.2em;
  
  
}


.contact-icon img {
  
  width: 80px;
  
  height: 80px;
  
  margin-bottom: 10px;
  
  transition: transform 0.3s ease;
  
  
}


.contact-icon img:hover {
  
  transform: scale(1.1);
  /* Enlarge icon on hover */
  
}


.contact-icon span {
  
  color: #fff;
  
  display: block;
  
  margin-top: 10px;
  
  font-weight: bold;
  
  
}


.pricing-plan.popular {
  
  position: relative;
  
  
}


.pricing-plan.dedicated {
  
  position: relative;
  
  
}


.hot-label {
  
  position: absolute;
  
  top: -10px;
  /* Adjust as needed */
  right: -10px;
  /* Adjust as needed */
  background-color: #ff4500;
  /* Hot label color */
  color: white;
  
  padding: 5px 10px;
  
  font-size: 14px;
  
  font-weight: bold;
  
  border-radius: 5px;
  
  
}


.btnhome {
  
  margin-top: 15px;
  
  display: inline-block;
  
  padding: 10px 20px;
  
  background-color: #45a049;
  
  color: #fff;
  
  text-decoration: none;
  
  border-radius: 5px;
  
  transition: background-color 0.3s;
  
  
}


.copy-btn {
  
  background-color: #4CAF50;
  /* Green background */
  color: white;
  /* White text */
  border: none;
  /* No border */
  border-radius: 4px;
  /* Rounded corners */
  padding: 8px 12px;
  /* Padding */
  cursor: pointer;
  /* Pointer cursor on hover */
  font-size: 14px;
  /* Font size */
  transition: background-color 0.3s ease;
  /* Smooth background change */
  margin-top: 5px;
  /* Spacing from top */
  
}


.copy-btn:hover {
  
  background-color: #45a049;
  /* Darker green on hover */
  
}

