/* ===========================
   GROUPED Stylesheet
   Version: 1.0
   styles.css
   Version: 5.0
=========================== */
/* ===========================
   Base Styles
=========================== */
html, body {
    font-family: "Segoe UI", sans-serif;
    font-size: large;
    background-color: purple;
    width: auto;
    max-width: 100%;
}
.text-body {
  font-size: 1.1rem;
  line-height: 1.7;
}
p {
    font-family: "Segoe UI", sans-serif;
    font-size: 1.3rem;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI", sans-serif;
    font-size: 28px;
    text-align: center;
    color: purple;
    margin: 0 auto;
    padding: 10px ;
}
header {
    height: fit-content;
}
footer {
    text-align: center;
    font-weight: bold;
    font-size: x-large;
    color: white;
}
#header-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
/* ===========================
   Welcome Section
=========================== */
#welcome-section {
    background-color: white;
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    padding: 10px 30px 10px 30px;
    text-align: left;
    color: purple;
    margin: 10px;
    position: relative;
    height: auto;
    max-width: 100%;
    width: 100%;
}
#welcome-section h1 {
    font-size: 60px;
}
#welcome-section p {
    padding: 10px;
    font-size: 24px;
}
.welcome-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px auto;
  text-align: center;
}
.welcome-header h1 {
  font-size: 42px;
  color: purple;
  margin: 0;
}
.welcome-image {
  width: 360px;
  height: auto;
  border-radius: 10px;
}
/* ===========================
   SOLUTIONS
=========================== */
#solutions-container {
    background-color: lightblue;
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    height: auto;
    max-width: 100%;
    color: purple;
    font-size: 1.3rem;
    margin: 0 auto;
    position: relative;
}
#solutions-container h1 {
    font-size: 36px;
}
#solutions {
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}
#solutions p {
    margin: 10px auto;
    padding: 20px;
}
.solutions-box {
  background-color: white;
  border-style: inset outset outset inset;
  border-width: thick;
  border-radius: 10px;
  margin: 10px;
  width: 60px;
  margin: 5px;
  padding: 5px;
  flex-basis: 25%;
}
.solutions-box img {
    border-style: inset;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.solutions-box::before {
  content: attr(data-badge);
  display: inline-block;
  background-color: #ff9800;
  color: white;
  font-size: 0.9em;
  padding: 0.2em 0.5em;
  border-radius: 3px;
  margin-right: 0.5em;
  vertical-align: middle;
}
.solutions-box[data-badge="New"]::before {
  background-color: green;
}
.solutions-box[data-badge="Sale"]::before {
  background-color: yellow;
}
.solutions-box[data-badge="Popular"]::before {
  background-color: blue;
}
.solutions-box[data-badge="Essential"]::before {
  background-color: violet;
}
/* ===========================
   Training & Education
=========================== */
/* === Container Box === */
#training-education-box {
  background-color: #d6efff;
  border: 3px inset #ccc;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 100%;
  width: 1200px;
  box-sizing: border-box;
}
/* === Workshop Cards === */
.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.workshop-card {
  background-color: white;
  border: 3px inset gray;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  flex: 1 1 320px;
  max-width: 700px;
  margin: 1rem;
  position: relative;
  color: purple;
}
/* === Format Rows in Card === */
.workshop-format-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  border-top: 1px dashed #ccc;
  padding: 0.4rem 0;
}
.workshop-format-row:first-of-type {
  border-top: none;
}
.workshop-format-row .format {
  flex: 2;
  font-weight: bold;
}
.workshop-format-row .price,
.workshop-format-row .duration {
  flex: 1;
  text-align: center;
}
/* === Hover Tooltips via Data Attribute === */
.workshop-card:hover::after {
  content: attr(data-description);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e0f7fa;
  color: purple;
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid black;
  border-radius: 10px;
  padding: 1rem;
  width: 95%;
  z-index: 1000;
  margin-top: 1rem;
  text-align: justify;
}
/* === Discount Table Styling === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 1.1rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
thead {
  background-color: purple;
  color: white;
}
table th, table td {
  padding: 1rem;
  border: 1px solid #ccc;
  text-align: center;
}
table th {
  font-size: 1.2rem;
  text-transform: uppercase;
}
table tr:nth-child(even) {
  background-color: #f9f9f9;
}
/* ======================
   PRICING TIERS STYLE
========================= */
#pricing-tiers {
  background-color: lightblue;
  border-style: inset outset outset inset;
  border-width: thick;
  border-radius: 10px;
  padding: 2rem 1rem;
  margin: 2rem auto;
}
.tier-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.tier-card {
  background-color: white;
  border: 3px inset purple;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  flex: 1 1 260px;
  max-width: 350px;
  text-align: center;
  color: purple;
}
.tier-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: purple;
}
.tier-card p {
  font-size: 1.1rem;
  line-height: 1.5;
}
/* ===========================
   About Us Section
=========================== */
#CoreValues-GuidingPrinciples-window {
    display: flex;
    flex: wrap;
}
#core-values, #guiding-principles {
    background-color: white;
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    margin: 2.5px;
    padding: 10px 30px 10px 30px;
    text-align: left;
    flex-basis: 50%;
}
/* ===========================
   Mission Section
=========================== */
#our-mission {
    background-color: white;
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    margin: 2.5px auto;
    text-align: left;
    padding: 0 30px 10px 30px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}
.content-box {
  background-color: white;
  border-style: inset outset outset inset;
  border-width: thick;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 10px auto;
  text-align: left;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
/* ===========================
   404 Page
=========================== */
#error404 {
    background-color: white;
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    padding: 10px 30px 10px 30px;
    text-align: left;
    color: purple;
    margin: 2.5px auto;
    width: 50%;
    position:absolute;
}
/* ===========================
   Unclassified Rules
=========================== */
#data-analysis,
#ml-modeling,
#data-cleansing,
#sql-management,
#generative-ai,
#interactive-dashboards,
#cloud-migration,
#cost-optimization,
#disaster-recovery,
#hybrid-cloud-solutions,
#identity-and-access-management,
#infrastructure-as-code,
#migration-services,
#monitoring-and-management,
#on-premise-solutions,
#security-and-compliance {
    background-color: white;
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    width: 60px;
    margin: 5px;
    padding: 5px;
    flex-basis: 25%;
}
.image-container {
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    background-color: black;
    height: 30px;
    width: 502px;
    overflow: hidden;
    position: relative;
    padding: 0 100px 120px 0;
    margin: 10px;
}
.image-container img {
    object-fit: contain;
    position: absolute;
    height: 100%;
    width: 100%;
    top: -5px;
    animation: scroll 2s linear;
}
.purple-background {
    background-color: purple;
}
.lightblue-text {
    color: purple;
}
.center-text {
    text-align: center;
}

.navbar {
  background-color: lightblue;
  border-style: inset outset outset inset;
  border-radius: 10px;
  padding: 1rem;
  margin: 2rem auto;
}
.navbar a {
  text-decoration: none;
  font-weight: bold;
  color: purple;
  background: white;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.navbar a:hover {
  background-color: purple;
  color: white;
}
/* ===========================
   Tooltip Popouts
=========================== */
#business-lifestyle-cell:hover::before {
    content: "Learn how to integrate Microsoft 365 products in your business day-to-day. Our Business Lifestyle workshop covers topics such as productivity, collaboration, and communication to help you achieve your business goals. Contact us to learn more.";
    position: absolute;
    top: 100%;
    left: 25%;
    transform: translateX(50%);
    padding: 20px;
    background-color: lightblue;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: justify;
    color: purple;
    z-index: 1;
    transition-duration: 0s;
}
#ad-troubleshoot-cell:hover::before {
    content: "The Active Directory Troubleshooting: Troubleshoot in 1 Day workshop is expertly designed to provide you with a strategic approach for troubleshooting Active Directory issues, resulting in optimal and effective remediation within a day.";
    position: absolute;
    top: 100%;
    left: 25%;
    transform: translateX(50%);
    padding: 20px;
    background-color: lightblue;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: justify;
    color: purple;
    z-index: 1;
    transition-duration: 0s;
}
#monitoring-management-cell:hover::before {
    content: "Learn how to monitor and manage your Azure resources with our Azure Modern Monitoring & Management workshop. Our trainers will guide you through the process of setting up Log Analytics and PowerBI to monitor your resources in real-time. Contact us to learn more.";
    position: absolute;
    top: 100%;
    left: 25%;
    transform: translateX(50%);
    padding: 20px;
    background-color: lightblue;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: justify;
    color: purple;
    z-index: 1;
    transition-duration: 0s;
}
#cloud-armor-cell:hover::before {
    content: "Protect your organization against advanced cyber threats with PFEMARINE Cloud Armor. Our cloud-based security solution uses Microsoft Entra and Defender for Endpoint technologies to provide real-time threat detection and response capabilities. Contact us to learn more about our 6-day workshop.";
    position: absolute;
    top: 100%;
    left: 25%;
    transform: translateX(50%);
    padding: 20px;
    background-color: lightblue;
    border: 2px solid black;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: justify;
    color: purple;
    z-index: 1;
    transition-duration: 0s;
}
/* ===========================
   Navigation
=========================== */
#navigation-container {
    display: flex;
    flex-wrap: wrap;
}
#navigation-bar {
    font-family: "Segoe UI", sans-serif;
    background-color: lightblue;
    border-style: inset outset outset inset;
    border-radius: 10px;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    margin: 10px auto;
}
nav td {
    background-color: white;
    border-radius: 10px;
    padding: 5px 5px;
}
/* ===========================
   Contact Section
=========================== */
#contact-us {
    background-color: lightblue;
    border-style: inset outset outset inset;
    border-width: thick;
    border-radius: 10px;
    width: 70%;
    margin: 2.5px auto;
    padding: 10px 50px 40px 50px;
    color: purple;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    padding: 4px;
}
.contact-form {
    border-radius: 10px;
    background-color: white;
    flex: 1;
    margin: auto;
    padding: 1px;
}
.schedule-meeting {
    border-radius: 10px;
    background-color: white;
    flex: 1;
    margin: 10px;
    padding: 10px;
    height: fit-content;
}
.schedule-meeting p {
    margin: 5px auto;
}
.contact-form label, .schedule-meeting label {
    display: block;
    margin-bottom: 5px;
}
.contact-form input {
    display: block;
    margin-bottom: 10px;
    width: auto;
}
.contact-form textarea {
    display: block;
    justify-content: space-evenly;
    margin: 10px auto;
    width: 600px;
    height: 100px;
}
.contact-form input[type="submit"], .schedule-meeting button {
    background-color: lightblue;
    border: double;
    border-radius: 10px;
    color: purple;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}
.contact-form input[type="submit"]:hover, .schedule-meeting button:hover {
    background-color: purple;
    color: lightblue;
}
/* ===========================
   Utility Classes
=========================== */
.heading-xl {
  font-size: 60px;
  font-family: "Segoe UI", sans-serif;
  color: purple;
  text-align: center;
}
.heading-lg {
  font-size: 36px;
  font-family: "Segoe UI", sans-serif;
  color: purple;
  text-align: center;
}
.heading-md {
  font-size: 28px;
  font-family: "Segoe UI", sans-serif;
  color: purple;
}
.text-center {
  text-align: center;
}
.text-purple {
  color: purple;
}
.text-white {
  color: white;
}
.button-cta {
  background-color: purple;
  border: double;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-cta:hover {
  background-color: white;
  color: black;
}
.section-wrapper {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  box-sizing: border-box;
}
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
/* ===========================
     DISCOUNT FORM STYLE 
 =========================== */
#discount-form {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 1rem;
}

#discount-form label {
  display: block;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: purple;
}

#discount-form input[type="text"],
#discount-form input[type="url"],
#discount-form input[type="file"],
#discount-form input[type="email"],
#discount-form input[type="tel"],
#discount-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 2rem;
  border: 1px solid #aaa;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

#discount-form input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 0.5rem;
}

#estimatedDiscount {
  display: inline-block;
  margin-left: 0.25rem;
  color: #512da8;
  font-weight: bold;
  font-size: 1.2rem;
}

#discount-form .button-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px double #512da8;
  background-color: #e0e7ff;
  color: #512da8;
  transition: all 0.3s ease;
}

#discount-form .button-cta:hover {
  background-color: #512da8;
  color: white;
}
/* ===========================
   COUNTRY CODE and PHONE NUMBER INPUT
=========================== */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.phone-input-group select,
.phone-input-group input[type="tel"] {
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #aaa;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.phone-input-group select {
  flex: 0 0 120px;
}

.phone-input-group input[type="tel"] {
  flex: 1;
}
/* ===========================
    DISCLAIMER
=========================== */
.Disclaimer {
  background-color: white;
  border-left: 5px solid purple;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  border-radius: 10px;
  line-height: 2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.Disclaimer strong {
  color: black;
  font-weight: bold;
}
/* ===========================
   Animations
=========================== */
@keyframes scroll {
    0% {
        transform: translateX(100%);
   }
    100% {
        transform: translateX(0);
   }
}