:root {
  --google-blue: #4285f4;
  --google-green: #34a853;
  --google-yellow: #fbbc05;
  --google-grey: #f8f9fa;
  --google-dark: #202124;
  --google-bg-gradient: linear-gradient(135deg, #e3f0fd 0%, #f8f9fa 100%);
  --google-card: #fff;
  --google-card-shadow: 0 8px 32px rgba(66,133,244,0.13);
  --google-accent: #e8f0fe;
  --google-border: #e0e7ef;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--google-bg-gradient);
  min-height: 100vh;
  color: var(--google-dark);
  /* Remove extra white space */
  box-sizing: border-box;
}

body {
  padding: 0 !important;
  text-align: center;
}

.container {
  max-width: 600px;
  margin: auto;
}

.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;           /* Reduced from 180px for a more balanced banner */
  background: linear-gradient(90deg, #4285f4 60%, #34a853 100%);
  color: #fff;
  font-size: 2.2rem;           /* Slightly smaller for better fit */
  font-weight: 900;
  letter-spacing: 2px;
  font-family: 'Brush Script MT', cursive, 'Roboto', Arial, sans-serif;
  text-shadow: 3px 3px 16px #20212480, 0 2px 8px #34a85380;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 6px 32px rgba(66,133,244,0.18);
  margin-bottom: 0;
  position: relative;
  padding: 28px 0 12px 0;      /* Adjusted padding for a sleeker look */
  transition: background 0.3s;
}
.main-header span {
  font-family: 'Roboto Slab', 'Segoe UI', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}
.main-header::after {
  content: "Automate your daily IT tasks through a simple, button-driven interface—eliminating the need to write, debug, execute, and maintain complex scripts!!";
  display: block;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #e3f0fd;
  margin-top: 12px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 8px #20212460;
}

.subtitle {
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
  padding: 6px 0;
  font-size: 1.18rem;
  background: var(--google-dark);
  letter-spacing: 0.7px;
  border-bottom: 2px solid var(--google-blue);
  box-shadow: 0 2px 8px rgba(66,133,244,0.08);
}

.google-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  background: var(--google-grey);
  border-bottom: 2px solid var(--google-blue);
  box-shadow: 0 2px 8px rgba(66,133,244,0.06);
  width: 100vw;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  gap: 0.2rem;
  padding: 0.2rem 0 0.1rem 0;
  overflow-x: auto;
}

.google-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 80px;
  text-align: center;
  padding: 0 8px;
  cursor: pointer;
  background: var(--google-accent);
  border: none;
  outline: none;
  font-size: 0.97rem;
  color: var(--google-dark);
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-radius 0.2s;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  letter-spacing: 0.3px;
  border-radius: 12px 12px 0 0;
  margin: 0 1px;
  box-sizing: border-box;
  margin-bottom: -2px;
  white-space: nowrap;
}
.google-tab.active, .google-tab:hover {
  color: var(--google-blue);
  border-bottom: 3px solid var(--google-blue);
  background: #fff;
  box-shadow: 0 2px 8px rgba(66,133,244,0.10);
  border-radius: 18px 18px 0 0;
  z-index: 2;
}

/* Example acronyms for app names (update your HTML accordingly):
   Home | Azure Inv. | SSL Val. | Remote Inv. | Net Util. | AI | SSL Conv. | Sandbox | GCP
*/

@media (max-width: 1100px) {
  .google-tabs {
    flex-wrap: nowrap;
    gap: 0.1rem;
    padding: 0.2rem 0 0.05rem 0;
  }
  .google-tab {
    font-size: 0.93rem;
    padding: 0 4px;
    min-width: 70px;
  }
}
.menu-toggle {
  display: none;
}

@media (max-width: 700px) {
  .menu-toggle {
    display: block;
    position: fixed;
    top: 16px;      /* Move further down */
    right: 16px;    /* Move further right */
    background: #fff;
    color: #222;
    border: 1.5px solid #ccc;
    border-radius: 7px;
    font-size: 1.25rem;
    z-index: 4000;  /* Ensure it's above all banners */
    padding: 2px 8px 2px 8px;
    cursor: pointer;
    height: 32px;
    width: 32px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(66,133,244,0.10);
  }
  .google-tabs {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .google-tabs.open {
    display: flex;
  }
  .google-tab {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.15rem;
    text-align: center;
    background: #fff;
    color: #222;
  }
}

.content {
  margin: 32px auto 24px auto;
  padding: 32px 18px 24px 18px;
  max-width: 980px;
  border-radius: 24px;
  box-shadow: var(--google-card-shadow);
  background: var(--google-card);
  position: relative;
  overflow: hidden;
  line-height: 1.8;
  animation: fadeIn 0.7s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

h1, h2, h3 {
  color: var(--google-blue);
  margin-top: 0;
  font-family: 'Roboto', Arial, sans-serif;
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--google-blue);
  background: linear-gradient(90deg, #e3f0fd 60%, #fbbc05 100%);
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(251,188,5,0.08);
}

h3 {
  font-size: 1.35rem;
  border-left: 5px solid var(--google-yellow);
  padding-left: 12px;
  background: #f8fafc;
  border-radius: 6px;
  margin-top: 44px;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--google-blue);
}

.feature-list, .highlight ul {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 28px 36px;
  margin: 28px 0 32px 0;
  color: var(--google-dark);
  font-size: 1.13rem;
  box-shadow: 0 2px 8px rgba(66,133,244,0.04);
  line-height: 1.9;
}

.feature-list li, .highlight ul li {
  margin-bottom: 18px;
  padding-left: 8px;
  position: relative;
}
.feature-list li::before {
  content: "";
}

.section-divider {
  border: none;
  border-top: 2px dashed #e0e7ef;
  margin: 48px 0 36px 0;
}

.witty {
  background: linear-gradient(90deg, #e3f0fd 60%, #fbbc05 100%);
  color: var(--google-dark);
  border-radius: 12px;
  padding: 20px 32px;
  margin: 36px 0 36px 0;
  font-style: italic;
  text-align: center;
  font-size: 1.18rem;
  box-shadow: 0 2px 8px rgba(66,133,244,0.06);
  letter-spacing: 0.2px;
  font-weight: 500;
}

.highlight {
  background: #fffbe7;
  border-left: 6px solid var(--google-yellow);
  border-radius: 10px;
  padding: 18px 28px;
  margin: 32px 0 36px 0;
  font-size: 1.09rem;
  color: #b8860b;
}

ul, ol {
  list-style: none;
  margin-bottom: 24px;
  margin-top: 12px;
  padding-left: 0;
}

.feature-list li::before {
  content: "";
}
p {
  margin-bottom: 22px;
  margin-top: 12px;
  font-size: 1.13rem;
}

footer {
  margin-top: 24px;
}
.footer-bar {
  text-align: center;
  margin: 40px 0 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  background: linear-gradient(90deg, #4285f4 60%, #34a853 100%);
  padding: 10px 0;
  border-radius: 10px;
  font-size: 1.08rem;
  box-shadow: 0 -4px 24px rgba(66,133,244,0.13);
  letter-spacing: 0.7px;
  font-weight: 500;
  border-top: 3px solid #fbbc05;
  transition: background 0.3s;
}

.footer-bar span, .footer-bar strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.screenshot {
  margin: 24px auto;
  padding: 16px 0 18px 0;
  text-align: center;
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(66,133,244,0.10);
  border: 2.5px solid #e3e8ee;
  position: relative;
  display: block;
  width: 98%;
  max-width: 700px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.screenshot img {
  max-width: 96%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(66,133,244,0.13);
  margin-top: 8px;
  border: 3px solid var(--google-blue);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.screenshot img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(66,133,244,0.22);
  border-color: var(--google-green);
  cursor: pointer;
}

/* Optional: Add a subtle hover effect to the screenshot container */
.screenshot:hover {
  box-shadow: 0 8px 32px rgba(66,133,244,0.18);
  border-color: var(--google-blue);
}

@media (max-width: 1100px) {
  .content { padding: 18px 2vw 18px 2vw; }
  .main-header { font-size: 1.4rem; }
  .google-tabs {
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.3rem 0 0.1rem 0;
  }
  .google-tab {
    font-size: 0.97rem;
    padding: 0 8px;
    min-width: 110px;
  }
}
@media (max-width: 700px) {
  .content { padding: 8px 1vw 10px 1vw; }
  .main-header {
    min-height: 70px;
    font-size: 1.1rem;
    padding: 14px 0 8px 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .main-header span {
    font-size: 1.3rem;
  }
  .main-header::after {
    font-size: 0.9rem;
    margin-top: 6px;
  }
  .menu-toggle {
    display: block;
    position: fixed;
    top: 16px;      /* Move further down */
    right: 16px;    /* Move further right */
    background: #fff;
    color: #222;
    border: 1.5px solid #ccc;
    border-radius: 7px;
    font-size: 1.25rem;
    z-index: 4000;  /* Ensure it's above all banners */
    padding: 2px 8px 2px 8px;
    cursor: pointer;
    height: 32px;
    width: 32px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(66,133,244,0.10);
  }
  .google-tabs {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .google-tabs.open {
    display: flex;
  }
  .google-tab {
    min-width: 90px;
    font-size: 0.93rem;
    padding: 10px 0;
    border-radius: 10px;
    margin: 0.1rem 0;
  }
  .screenshot { padding: 8px 0 10px 0; }
  .footer-bar {
    font-size: 1rem;
    padding: 14px 0 10px 0;
    border-radius: 10px 10px 0 0;
  }
  .menu-toggle {
    display: block;
    position: fixed;
    top: 16px;      /* Move further down */
    right: 16px;    /* Move further right */
    background: #fff;
    color: #222;
    border: 1.5px solid #ccc;
    border-radius: 7px;
    font-size: 1.25rem;
    z-index: 4000;  /* Ensure it's above all banners */
    padding: 2px 8px 2px 8px;
    cursor: pointer;
    height: 32px;
    width: 32px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(66,133,244,0.10);
  }
}

/* Add to style.css for consistent button styling */
.book-demo-btn {
  display: inline-block;
  background: linear-gradient(90deg, #4285f4 60%, #34a853 100%);
  color: #fff;
  font-family: 'Roboto Slab', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(66,133,244,0.10);
  transition: background 0.2s;
  margin-bottom: 8px;
  border: none;
}
.book-demo-btn:hover {
  background: linear-gradient(90deg, #3367d6 60%, #2e7d32 100%);
}
