*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
#google_btn {
  display: flex;
  align-items: center;       /* Vertical alignment */
  justify-content: center;   /* Horizontal alignment */
  gap: 10px;                 /* Space between icon and text */
  margin: 15px auto;
  padding: 10px 20px;
  font-size: 16px;
  background-color: rgb(216, 210, 210); /* Light background */
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  color: #333;
  font-weight: 500;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
#logoImage {
  max-width: 150px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  
}

#google_btn:hover {
  background-color: #f2f2f2;
}

.google-logo {
  width: 20px;
  height: 20px;
  display: block;
}
    body {
      background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
      color: white;
    }
    header {
      background: #003366;
      color: white;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 26px;
      font-weight: bold;
      
    }
    nav {
      background:white;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 12px 0;
    }
    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 6px 12px;
    }
    .main-box {
      max-width: 1300px;
      margin: 30px auto;
      padding: 20px;
      background: linear-gradient(90deg, #4f4f4f, #7d7d7d, #a3a3a3, #d1d1d1, #f0f0f0);
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      animation: fadeIn 1.2s ease-in-out;
    }
    .m1-m2-container {
      display: flex;
      gap:10px;
      flex-wrap: nowwrap;
    }
    .info-box {
  flex: 0 0 30%;
  background: linear-gradient(90deg, #4f4f4f, #7d7d7d, #a3a3a3, #d1d1d1, #f0f0f0);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  color: black;
}

.service-box-group {
  flex: 0 0 70%;
  background: linear-gradient(90deg, #4f4f4f, #7d7d7d, #a3a3a3, #d1d1d1, #f0f0f0);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  color: black;
  text-align: center;
}
    
    
    .update-btn {
      background: #ffcc00;
      border: none;
      padding: 10px 20px;
      margin-top: 10px;
      cursor: pointer;
      border-radius: 5px;
      transition: transform 0.3s;
    }
    .update-btn:hover {
      transform: scale(1.05);
    }
    .update-form {
      display: none;
      margin-top: 10px;
    }
    .update-form input {
      width: 100%;
      margin: 5px 0;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    
.service-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between boxes */
  justify-content: space-between;
  margin: 20px 0;
}


    
.service-box {
  flex: 1 1 calc(25% - 20px); /* 25% minus the gap */
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s;
  position: relative;
  min-height: 150px; /* Add a minimum height if needed */
}

    .service-box:hover {
      transform: translateY(-5px);
    }
    .service-box h3 {
      margin-bottom: 10px;
    }
    .tooltip {
      position: relative;
      display: inline-block;
      cursor: pointer;
      color: black;
    }
    .tooltip .tooltiptext {
      visibility: hidden;
      width: 160px;
      background-color: #333;
      color:white;
      text-align: center;
      padding: 5px;
      border-radius: 6px;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      margin-left: -80px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
    }
    #loginScreen {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15);
      color: white;
      flex-direction: column;
    }
    .login-box {
      background: white;
      color: #333;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
      width: 500px;
      text-align: center;
    }
    .login-box h2 {
      margin-bottom: 10px;
      color: #003366;
    }
    .login-box p {
      margin-bottom: 20px;
      font-size: 14px;
    }
    .login-box input {
      width: 200%;
      margin-bottom: 15px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .login-btn, .google-btn {
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 16px;
      margin-top: 20px;
      cursor: pointer;
      width: 200%;
    }
    .login-btn {
      background: #003366;
      color: white;
      margin-left: 100px; /* Adjusted for centering */
      height: 50px;
      max-width: 100;
    }
    .google-btn {
      background: rgb(228, 33, 33);
      color: white;
    }
    .feature-list {
      margin-top: 15px;
      text-align: left;
      font-size: 14px;
    }
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }
   
   

    


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  color: white;
}

header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.contact-btn {
  background: rgb(228, 33, 33);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feature-box {
  background: white;
  color: black;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}


#master_server {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

#server_id {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: -100px; 
}

#server_id img {
  max-width: 60%;
  height: auto;
}

#badge_id {
  width: 250px;
  height: 120px;
  background-color: orange;
  color: white;
  font-weight: bold;
  border-radius: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  padding: 0 20px;
}

.badge-text {
  display: block;
  
}

.right-img {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.right-img img {
  max-width: 500px;
  height: auto;
}

.badge {
  position: absolute;
  top: 80%;
  right: 60%;
  background: orange;
  color: white;
  font-weight: bold;
  padding: 10px 10px;
  border-radius: 30%;
  font-size: 14px;
  text-align: center;
}

.awards-section {
  background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  gap: 50px;
  padding: 40px 40px; 
  flex-wrap: wrap;
  margin-top: -40px; 
}

.awards-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: flex-start; 
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}



.award-text {
  flex: 1;
  color: white;
  margin-top: 10px;
  text-align: center;
}

.award-text h2 {
  font-size: 2.5rem; 
  font-weight: 900;
  margin-bottom: 15px;
}

.sub-heading {
  font-weight: bold;
  font-size: 1.4rem; 
  margin-bottom: 12px;
  text-align: center;
}


  


#adjust-text{
  font-size: 1.1rem; 
  max-width: 1200px;
  margin-bottom: 0px;
  text-align: center;
  padding-left: 280px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.badge-row img {
  max-height: 80px; 
  width: auto;
}



@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    position: static;
    margin-top: 20px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  .contact-btn {
    margin-top: 15px;
  }
}

.themes-section {
  background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  padding: 20px 40px;
}

.themes-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.themes-text {
  flex: 1;
}

.themes-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
  text-align: center;
  padding-left: 280px;
}

.themes-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.themes-text p {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 10px;
}

.themes-icons {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-box img {
  width: 200px;
  height: 200px;
}



.themes-image img {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}
/* Section background and layout */

.hosting-section {
  background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  padding: 30px 20px; 
  text-align: center;
}

.hosting-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.hosting-header p {
  max-width: 850px;
  margin: 0 auto 30px; 
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hosting-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 25px 20px;
  width: 240px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card img {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.1rem;
  color: #003580;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  min-height: 60px;
}

.card h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #000;
}

.card h4 strong {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 5px;
}

.buy-btn {
  background-color: rgb(228, 33, 33);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.buy-btn:hover {
  background-color: rgb(228, 33, 33);
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.card.pop {
  animation: pop 0.4s ease-in-out;
}




/* Footer Section */
.site-footer {
  background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: none;
}

.footer-column {
  font-size: 14px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #b0c4e5;
}

/* Social Media Icons centered above the copyright section */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px; /* Adjust this margin to position the icons */
  margin-bottom: 10px; /* Adjust this margin to position the icons */
}

.footer-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-icons img:hover {
  transform: scale(1.1);
}

/* Make sure the copyright section spans full width */
.footer-bottom {
   background: #d1d1d1; /* Gray background for the copyright section */
  color: #333;
  text-align: center;
  padding: 10px 0;  /* Removed the left-right padding */
  font-size: 14px;
  font-weight: bold;
  width: 100%;  /* Make sure it spans full width */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
#footer-bottom1 {
    text-align: center;
  color: #ffffff;
  font-size: 15px;
  padding: 10px 20px;
  font-weight: bold;
  width: 100%;  /* Make sure it spans full width */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: none;
}
.footer-bottom .highlight {
  color: rgb(228, 33, 33);
  font-weight: bold;
}

.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom .footer-bottom-inner div {
  color: #333;
}

.footer-bottom .footer-bottom-inner div a {
  color: #003c28;
  text-decoration: none;
  margin-left: 5px;
}

/* Footer Section — FIXED */
.site-footer {
  background: linear-gradient(to right,
    #000000,
    #012b1a,
    #013d22,
    #024d28,
    #013d22,
    #012b1a,
    #0a1f15
  );
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}



.footer-logo {
  width: 50px;
}

.tagline {
  margin: 10px 0;
  color: #b0c4e5;
  font-size: 14px;
}

.description {
  font-size: 15px;
  color: #dce6f3;
  margin: 10px 0;
  line-height: 1.6;
}

.free-hosting {
  margin-top: 15px;
  color: #ffffff;
  font-weight: bold;
}

.footer-links h4 {
  color: rgb(228, 33, 33);
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: white;
}

.footer-links i {
  color: #9ed0ff;
  margin-right: 8px;
}

.footer-contact .contact-box {
  background-color: rgb(228, 33, 33);
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.contact-box h3 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.live-chat {
  background-color: rgb(228, 33, 33);
  margin-top: 10px;
  padding: 5px;
  font-size: 13px;
  border-radius: 5px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 10px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 40px;
  object-fit: contain;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    
  }

  .footer-contact {
    grid-column: span 2;
  }
}

/* Footer Links Reset */
.footer a,
.footer a:visited,
.footer a:active,
.footer-social a,
.footer-social a:visited,
.footer-social a:active {
  text-decoration: none !important;
  color: inherit !important;
}

.footer-social img {
  border: none;
  outline: none;
  box-shadow: none;
}

/* Sticky Icons */
.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 120px;
  z-index: 999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-icon img {
  height: 50px;
  width: 50px;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.contact-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #0c0745;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-icon img {
  height: 50px;
  width: 50px;
}

.contact-icon:hover {
  transform: scale(1.1);
}
/* --- Section: Content Row with Image and Animated Badge --- */
.content-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px; /* Balanced gap */
  margin-top: 40px;
  flex-wrap: wrap;
}

.saas-image img {
  width: 450px;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Animated Badge Text */
.badge-text-animated {
  background-color: #111;
  color: #ffc107;
  padding: 25px 30px;
  font-size: 26px;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 0 25px #ffc107;
  transform: rotate(-10deg);
  text-align: center;
  animation: badgeBounce 1.8s ease;
  line-height: 1.4;
}



/* Bounce Animation Keyframes */
@keyframes badgeBounce {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  50% {
    transform: scale(1.05) rotate(-10deg);
    opacity: 1;
  }
  70% {
    transform: scale(0.95) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(-10deg);
  }
}
#payment{
  font-size: 1.5rem;
  font-weight: bold;
  color:black;
  text-align: center;
  margin-top: 5px;
  margin-left: 80px;
}
#payment-box{
  background-color: #f5f5f5;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  width: 100%;

}
.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  text-box: #333;
}
/* filepath: c:\Users\Shana\OneDrive\Desktop\Internproject\Full Project\saas\css\index.css */
/* ...existing code... */
.query-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  text-align: center;

}

.query-table th,
.query-table td {
  border: 1px solid #ccc;
  padding: 8px;
  color: black;
  
}

.query-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
#Requests{
  text-align: left;
}
.notification-bar {
  width: 100%;
  background: linear-gradient(90deg, #2f80ed, #56ccf2);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

body {
  padding-top: 60px; /* pushes content below the notification bar */
}

/* Mobile Responsive Stack */
@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
    gap: 20px;
  }

  .badge-text-animated {
    transform: none;
    font-size: 22px;
    padding: 20px 25px;
  }
}




.badge-text-animated:hover {
    transform: scale(1.05);
}

.logo-img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}