/* Techzeso - Main Stylesheet */

/* CSS Variables */
:root {
  /* Colors */
  --techzeso-white: #ffffff;
  --techzeso-cream: #FFFBDE;
  --techzeso-teal-light: #90D1CA;
  --techzeso-teal: #129990;
  --techzeso-teal-dark: #096B68;
  --techzeso-gray-light: #f5f5f5;
  --techzeso-gray: #e0e0e0;
  --techzeso-gray-dark: #888888;
  --techzeso-black: #333333;
  
  /* Spacing */
  --techzeso-space-xs: 0.25rem;
  --techzeso-space-sm: 0.5rem;
  --techzeso-space-md: 1rem;
  --techzeso-space-lg: 2rem;
  --techzeso-space-xl: 3rem;
  --techzeso-space-xxl: 5rem;
  
  /* Font sizes */
  --techzeso-font-xs: 0.75rem;
  --techzeso-font-sm: 0.875rem;
  --techzeso-font-md: 1rem;
  --techzeso-font-lg: 1.25rem;
  --techzeso-font-xl: 1.5rem;
  --techzeso-font-xxl: 2rem;
  --techzeso-font-xxxl: 3rem;
  
  /* Border radius */
  --techzeso-radius-sm: 3px;
  --techzeso-radius-md: 6px;
  --techzeso-radius-lg: 12px;
  --techzeso-radius-xl: 24px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--techzeso-font-md);
  line-height: 1.6;
  color: var(--techzeso-black);
  background-color: var(--techzeso-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--techzeso-space-md);
}

h1 {
  font-size: var(--techzeso-font-xxxl);
}

h2 {
  font-size: var(--techzeso-font-xxl);
}

h3 {
  font-size: var(--techzeso-font-xl);
}

h4 {
  font-size: var(--techzeso-font-lg);
}

p {
  margin-bottom: var(--techzeso-space-md);
}

a {
  color: var(--techzeso-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--techzeso-teal-dark);
}

ul, ol {
  margin-bottom: var(--techzeso-space-md);
  padding-left: var(--techzeso-space-lg);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.techzeso-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--techzeso-space-md);
}

/* Polygonal Style Elements */
.techzeso-polygon-shape {
  position: relative;
  background-color: var(--techzeso-white);
  padding: var(--techzeso-space-lg);
  clip-path: polygon(0% 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.techzeso-polygon-shape:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Header */
.techzeso-header {
  position: sticky;
  top: 0;
  background-color: var(--techzeso-white);
  padding: var(--techzeso-space-sm) 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.4s ease;
}

.techzeso-header.scrolled-down {
  transform: translateY(-100%);
}

.techzeso-header.scrolled-up {
  transform: translateY(0);
}

.techzeso-header .techzeso-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.techzeso-logo {
  z-index: 1001;
}

.techzeso-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: var(--techzeso-font-xl);
  font-weight: 700;
  color: var(--techzeso-teal);
  margin: 0;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.techzeso-menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.techzeso-menu-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 2px;
  background-color: var(--techzeso-teal);
  transition: all 0.3s ease;
}

.techzeso-menu-icon::before,
.techzeso-menu-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--techzeso-teal);
  transition: all 0.3s ease;
}

.techzeso-menu-icon::before {
  transform: translateY(-8px);
}

.techzeso-menu-icon::after {
  transform: translateY(8px);
}

.techzeso-menu-toggle.active .techzeso-menu-icon {
  background-color: transparent;
}

.techzeso-menu-toggle.active .techzeso-menu-icon::before {
  transform: rotate(45deg);
}

.techzeso-menu-toggle.active .techzeso-menu-icon::after {
  transform: rotate(-45deg);
}

.techzeso-nav {
  display: flex;
  align-items: center;
}

.techzeso-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.techzeso-nav-list li {
  margin-left: var(--techzeso-space-md);
}

.techzeso-nav-list a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--techzeso-font-sm);
  letter-spacing: 0.5px;
  padding: var(--techzeso-space-sm) var(--techzeso-space-md);
  border-radius: var(--techzeso-radius-sm);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.techzeso-nav-list a:hover {
  background-color: var(--techzeso-teal-light);
  color: var(--techzeso-teal-dark);
}

/* Hero Section */
.techzeso-hero {
  position: relative;
  padding: var(--techzeso-space-xxl) 0;
  background-color: var(--techzeso-cream);
  overflow: hidden;
}

.techzeso-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--techzeso-teal-light) 0%, transparent 50%);
  z-index: 0;
}

.techzeso-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.techzeso-hero-content h2 {
  font-size: var(--techzeso-font-xxxl);
  margin-bottom: var(--techzeso-space-md);
  color: var(--techzeso-teal-dark);
}

.techzeso-hero-content p {
  font-size: var(--techzeso-font-lg);
  margin-bottom: var(--techzeso-space-lg);
}

/* Sections */
.techzeso-section {
  padding: var(--techzeso-space-xxl) 0;
}

.techzeso-alt-bg {
  background-color: var(--techzeso-cream);
}

.techzeso-section-title {
  text-align: center;
  margin-bottom: var(--techzeso-space-xl);
  position: relative;
  color: var(--techzeso-teal-dark);
}

.techzeso-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--techzeso-teal);
  margin: var(--techzeso-space-sm) auto 0;
}

/* Products Section */
.techzeso-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-product-card {
  text-align: center;
  padding: var(--techzeso-space-md);
  transition: transform 0.3s ease;
}

.techzeso-product-card:hover {
  transform: translateY(-10px);
}

.techzeso-product-image {
  height: 150px;
  width: 150px;
  margin: 0 auto var(--techzeso-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-product-image i {
  font-size: 3rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-product-card h3 {
  margin-bottom: var(--techzeso-space-sm);
  color: var(--techzeso-teal-dark);
}

.techzeso-price {
  font-weight: 700;
  font-size: var(--techzeso-font-lg);
  color: var(--techzeso-teal);
  margin: var(--techzeso-space-md) 0;
}

/* Gift Cards Section */
.techzeso-gift-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-gift-card {
  text-align: center;
}

.techzeso-gift-card .techzeso-polygon-shape {
  background-color: var(--techzeso-teal-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--techzeso-space-xl);
}

.techzeso-gift-card h3 {
  color: var(--techzeso-teal-dark);
  font-size: var(--techzeso-font-xl);
}

.techzeso-gift-card p {
  margin-bottom: var(--techzeso-space-lg);
}

/* Blog Section */
.techzeso-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-blog-card {
  background-color: var(--techzeso-white);
  border-radius: var(--techzeso-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.techzeso-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.techzeso-blog-image {
  height: 150px;
  width: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-blog-image i {
  font-size: 3rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-blog-content {
  padding: var(--techzeso-space-lg);
}

.techzeso-blog-content h3 {
  margin-bottom: var(--techzeso-space-sm);
  font-size: var(--techzeso-font-lg);
}

.techzeso-blog-date {
  font-size: var(--techzeso-font-sm);
  color: var(--techzeso-gray-dark);
  margin-bottom: var(--techzeso-space-md);
}

.techzeso-btn-text {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--techzeso-teal);
  transition: color 0.3s ease;
}

.techzeso-btn-text i {
  margin-left: var(--techzeso-space-sm);
  transition: transform 0.3s ease;
}

.techzeso-btn-text:hover {
  color: var(--techzeso-teal-dark);
}

.techzeso-btn-text:hover i {
  transform: translateX(5px);
}

/* Shop Section */
.techzeso-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-shop-item {
  text-align: center;
  padding: var(--techzeso-space-md);
  transition: transform 0.3s ease;
}

.techzeso-shop-item:hover {
  transform: translateY(-10px);
}

.techzeso-shop-image {
  height: 150px;
  width: 150px;
  margin: 0 auto var(--techzeso-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-shop-image i {
  font-size: 3rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-shop-item h3 {
  margin-bottom: var(--techzeso-space-sm);
  color: var(--techzeso-teal-dark);
}

/* Custom Plans Section */
.techzeso-custom-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-plan-card {
  text-align: center;
}

.techzeso-plan-card .techzeso-polygon-shape {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--techzeso-space-xl);
  background-color: var(--techzeso-white);
}

.techzeso-plan-card h3 {
  color: var(--techzeso-teal-dark);
  font-size: var(--techzeso-font-xl);
  margin-bottom: var(--techzeso-space-md);
}

.techzeso-plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--techzeso-space-lg);
  text-align: left;
}

.techzeso-plan-features li {
  padding: var(--techzeso-space-sm) 0;
  border-bottom: 1px solid var(--techzeso-gray);
  position: relative;
  padding-left: var(--techzeso-space-lg);
}

.techzeso-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--techzeso-teal);
  font-weight: 700;
}

.techzeso-plan-features li:last-child {
  border-bottom: none;
}

/* Health & Safety Section */
.techzeso-safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-safety-card {
  text-align: center;
  padding: var(--techzeso-space-md);
}

.techzeso-safety-icon {
  height: 100px;
  width: 100px;
  margin: 0 auto var(--techzeso-space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-safety-icon i {
  font-size: 2.5rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-safety-card h3 {
  margin-bottom: var(--techzeso-space-sm);
  color: var(--techzeso-teal-dark);
  font-size: var(--techzeso-font-lg);
}

/* Buttons */
.techzeso-btn {
  display: inline-block;
  padding: var(--techzeso-space-sm) var(--techzeso-space-lg);
  border-radius: var(--techzeso-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.techzeso-btn-primary {
  background-color: var(--techzeso-teal);
  color: var(--techzeso-white);
}

.techzeso-btn-primary:hover {
  background-color: var(--techzeso-teal-dark);
  color: var(--techzeso-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.techzeso-btn-secondary {
  background-color: var(--techzeso-white);
  color: var(--techzeso-teal);
  border: 2px solid var(--techzeso-teal);
}

.techzeso-btn-secondary:hover {
  background-color: var(--techzeso-teal-light);
  color: var(--techzeso-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.techzeso-footer {
  background-color: var(--techzeso-teal-dark);
  color: var(--techzeso-white);
  padding: var(--techzeso-space-xl) 0 var(--techzeso-space-md);
}

.techzeso-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--techzeso-space-xl);
  margin-bottom: var(--techzeso-space-xl);
}

.techzeso-footer-logo .techzeso-logo-text {
  color: var(--techzeso-white);
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-footer-links h3,
.techzeso-footer-contact h3 {
  color: var(--techzeso-teal-light);
  font-size: var(--techzeso-font-lg);
  margin-bottom: var(--techzeso-space-md);
}

.techzeso-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techzeso-footer-links li {
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-footer-links a {
  color: var(--techzeso-white);
  transition: color 0.3s ease;
}

.techzeso-footer-links a:hover {
  color: var(--techzeso-teal-light);
}

.techzeso-footer-contact p {
  margin-bottom: var(--techzeso-space-sm);
  display: flex;
  align-items: center;
}

.techzeso-footer-contact i {
  margin-right: var(--techzeso-space-sm);
  color: var(--techzeso-teal-light);
}

.techzeso-footer-contact a {
  color: var(--techzeso-white);
}

.techzeso-footer-contact a:hover {
  color: var(--techzeso-teal-light);
}

.techzeso-social-icons {
  display: flex;
  margin-top: var(--techzeso-space-md);
}

.techzeso-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: var(--techzeso-space-sm);
  transition: all 0.3s ease;
}

.techzeso-social-icons a:hover {
  background-color: var(--techzeso-teal-light);
  transform: translateY(-3px);
}

.techzeso-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--techzeso-space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.techzeso-footer-bottom p {
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-footer-bottom a {
  color: var(--techzeso-teal-light);
}

/* Privacy Policy Page */
.techzeso-privacy-page {
  padding: var(--techzeso-space-xl) 0;
}

.techzeso-privacy-header {
  text-align: center;
  margin-bottom: var(--techzeso-space-xl);
}

.techzeso-privacy-header .techzeso-polygon-shape {
  display: inline-block;
  padding: var(--techzeso-space-xl) var(--techzeso-space-xxl);
  background-color: var(--techzeso-teal-light);
}

.techzeso-privacy-header h1 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.techzeso-privacy-section {
  margin-bottom: var(--techzeso-space-xl);
}

.techzeso-privacy-section h2 {
  color: var(--techzeso-teal-dark);
  font-size: var(--techzeso-font-xl);
  margin-bottom: var(--techzeso-space-md);
  border-bottom: 2px solid var(--techzeso-teal-light);
  padding-bottom: var(--techzeso-space-sm);
}

/* Contact Page */
.techzeso-contact-hero {
  background-color: var(--techzeso-teal-light);
  padding: var(--techzeso-space-xl) 0;
  text-align: center;
  margin-bottom: var(--techzeso-space-xl);
}

.techzeso-contact-hero .techzeso-polygon-shape {
  display: inline-block;
  padding: var(--techzeso-space-lg) var(--techzeso-space-xl);
  background-color: var(--techzeso-white);
}

.techzeso-contact-hero h1 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-contact-info {
  margin-bottom: var(--techzeso-space-xl);
}

.techzeso-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--techzeso-space-xl);
}

.techzeso-contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--techzeso-space-md);
}

.techzeso-contact-card {
  text-align: center;
  padding: var(--techzeso-space-md);
}

.techzeso-contact-icon {
  height: 80px;
  width: 80px;
  margin: 0 auto var(--techzeso-space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-contact-icon i {
  font-size: 2rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-contact-card h3 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-sm);
  font-size: var(--techzeso-font-lg);
}

.techzeso-contact-form-container {
  width: 100%;
}

.techzeso-form-wrapper {
  background-color: var(--techzeso-cream);
  padding: var(--techzeso-space-xl);
}

.techzeso-form-wrapper h2 {
  text-align: center;
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-lg);
}

.techzeso-contact-form {
  display: grid;
  gap: var(--techzeso-space-md);
}

.techzeso-form-group {
  display: flex;
  flex-direction: column;
}

.techzeso-form-group label {
  margin-bottom: var(--techzeso-space-sm);
  font-weight: 600;
  color: var(--techzeso-teal-dark);
}

.techzeso-form-group input,
.techzeso-form-group select,
.techzeso-form-group textarea {
  padding: var(--techzeso-space-md);
  border: 1px solid var(--techzeso-gray);
  border-radius: var(--techzeso-radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--techzeso-font-md);
}

.techzeso-form-group input:focus,
.techzeso-form-group select:focus,
.techzeso-form-group textarea:focus {
  outline: none;
  border-color: var(--techzeso-teal);
  box-shadow: 0 0 0 2px rgba(18, 153, 144, 0.2);
}

.techzeso-form-checkbox {
  flex-direction: row;
  align-items: center;
}

.techzeso-form-checkbox input {
  margin-right: var(--techzeso-space-sm);
}

.techzeso-form-submit {
  margin-top: var(--techzeso-space-md);
}

.techzeso-map-container {
  height: 450px;
  margin-top: var(--techzeso-space-lg);
  border-radius: var(--techzeso-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.techzeso-map-container iframe {
  border: none;
}

/* FAQ Section */
.techzeso-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.techzeso-faq-item {
  margin-bottom: var(--techzeso-space-md);
  border: 1px solid var(--techzeso-gray);
  border-radius: var(--techzeso-radius-md);
  overflow: hidden;
}

.techzeso-faq-question {
  padding: var(--techzeso-space-md) var(--techzeso-space-lg);
  background-color: var(--techzeso-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.techzeso-faq-question:hover {
  background-color: var(--techzeso-cream);
}

.techzeso-faq-question h3,
.techzeso-faq-question h4 {
  margin: 0;
  font-size: var(--techzeso-font-md);
  font-weight: 600;
  color: var(--techzeso-teal-dark);
}

.techzeso-faq-icon {
  color: var(--techzeso-teal);
  transition: transform 0.3s ease;
}

.techzeso-faq-item.active .techzeso-faq-icon {
  transform: rotate(45deg);
}

.techzeso-faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--techzeso-white);
}

.techzeso-faq-item.active .techzeso-faq-answer {
  padding: var(--techzeso-space-md) var(--techzeso-space-lg);
  max-height: 500px;
}

/* Instructor Training Page */
.techzeso-instructor-hero {
  background-color: var(--techzeso-teal);
  padding: var(--techzeso-space-xxl) 0;
  text-align: center;
  margin-bottom: var(--techzeso-space-xl);
}

.techzeso-instructor-hero .techzeso-polygon-shape {
  display: inline-block;
  padding: var(--techzeso-space-xl) var(--techzeso-space-xxl);
  background-color: var(--techzeso-white);
}

.techzeso-instructor-hero h1 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-program-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--techzeso-space-xl);
  font-size: var(--techzeso-font-lg);
}

.techzeso-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-program-card {
  text-align: center;
  padding: var(--techzeso-space-md);
}

.techzeso-program-icon {
  height: 100px;
  width: 100px;
  margin: 0 auto var(--techzeso-space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-program-icon i {
  font-size: 2.5rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-program-card h3 {
  margin-bottom: var(--techzeso-space-sm);
  color: var(--techzeso-teal-dark);
}

.techzeso-curriculum-container {
  max-width: 800px;
  margin: 0 auto;
}

.techzeso-curriculum-timeline {
  position: relative;
  padding: var(--techzeso-space-md) 0;
}

.techzeso-curriculum-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 4px;
  background-color: var(--techzeso-teal-light);
}

.techzeso-timeline-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: var(--techzeso-space-xl);
}

.techzeso-timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal);
}

.techzeso-timeline-marker span {
  font-size: var(--techzeso-font-xxl);
  font-weight: 700;
  color: var(--techzeso-white);
}

.techzeso-timeline-content {
  background-color: var(--techzeso-white);
  padding: var(--techzeso-space-lg);
  border-radius: var(--techzeso-radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.techzeso-timeline-content h3 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-timeline-duration {
  font-weight: 600;
  color: var(--techzeso-teal);
  margin-bottom: var(--techzeso-space-md);
}

.techzeso-certification-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--techzeso-space-xl);
}

.techzeso-certification-info .techzeso-polygon-shape {
  height: 100%;
  padding: var(--techzeso-space-xl);
  background-color: var(--techzeso-teal-light);
}

.techzeso-certification-info h3 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-md);
}

.techzeso-certification-info h4 {
  margin-top: var(--techzeso-space-lg);
  margin-bottom: var(--techzeso-space-sm);
  color: var(--techzeso-teal-dark);
}

.techzeso-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--techzeso-space-md);
}

.techzeso-benefit-card {
  text-align: center;
  padding: var(--techzeso-space-md);
}

.techzeso-benefit-icon {
  height: 80px;
  width: 80px;
  margin: 0 auto var(--techzeso-space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-benefit-icon i {
  font-size: 2rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-benefit-card h4 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-sm);
  font-size: var(--techzeso-font-md);
}

.techzeso-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-pricing-card {
  text-align: center;
  position: relative;
}

.techzeso-pricing-featured {
  transform: scale(1.05);
  z-index: 2;
}

.techzeso-pricing-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--techzeso-teal);
  color: var(--techzeso-white);
  padding: var(--techzeso-space-sm) var(--techzeso-space-md);
  border-radius: var(--techzeso-radius-md);
  font-weight: 600;
  font-size: var(--techzeso-font-sm);
  z-index: 3;
}

.techzeso-pricing-card .techzeso-polygon-shape {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--techzeso-space-xl);
  background-color: var(--techzeso-white);
}

.techzeso-pricing-featured .techzeso-polygon-shape {
  background-color: var(--techzeso-cream);
}

.techzeso-pricing-card h3 {
  color: var(--techzeso-teal-dark);
  font-size: var(--techzeso-font-xl);
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-pricing-features {
  list-style: none;
  padding: 0;
  margin: var(--techzeso-space-lg) 0;
  text-align: left;
}

.techzeso-pricing-features li {
  padding: var(--techzeso-space-sm) 0;
  border-bottom: 1px solid var(--techzeso-gray);
  position: relative;
  padding-left: var(--techzeso-space-lg);
}

.techzeso-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--techzeso-teal);
  font-weight: 700;
}

.techzeso-pricing-features li:last-child {
  border-bottom: none;
}

.techzeso-instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--techzeso-space-lg);
}

.techzeso-instructor-card {
  text-align: center;
  padding: var(--techzeso-space-md);
}

.techzeso-instructor-image {
  height: 150px;
  width: 150px;
  margin: 0 auto var(--techzeso-space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--techzeso-teal-light);
}

.techzeso-instructor-image i {
  font-size: 3rem;
  color: var(--techzeso-teal-dark);
}

.techzeso-instructor-card h3 {
  margin-bottom: var(--techzeso-space-xs);
  color: var(--techzeso-teal-dark);
}

.techzeso-instructor-title {
  font-weight: 600;
  color: var(--techzeso-teal);
  margin-bottom: var(--techzeso-space-md);
}

.techzeso-testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--techzeso-space-lg);
}

.techzeso-testimonial {
  text-align: center;
}

.techzeso-testimonial .techzeso-polygon-shape {
  padding: var(--techzeso-space-xl);
  margin: 0 var(--techzeso-space-md);
}

.techzeso-testimonial-text {
  font-size: var(--techzeso-font-lg);
  font-style: italic;
  margin-bottom: var(--techzeso-space-lg);
}

.techzeso-testimonial-author h4 {
  margin-bottom: var(--techzeso-space-xs);
  color: var(--techzeso-teal-dark);
}

.techzeso-testimonial-author p {
  color: var(--techzeso-teal);
  font-weight: 600;
  margin: 0;
}

.techzeso-testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.techzeso-testimonial-prev,
.techzeso-testimonial-next {
  background: none;
  border: none;
  font-size: var(--techzeso-font-lg);
  color: var(--techzeso-teal);
  cursor: pointer;
  padding: var(--techzeso-space-sm);
  transition: color 0.3s ease;
}

.techzeso-testimonial-prev:hover,
.techzeso-testimonial-next:hover {
  color: var(--techzeso-teal-dark);
}

.techzeso-testimonial-dots {
  display: flex;
  align-items: center;
  margin: 0 var(--techzeso-space-md);
}

.techzeso-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--techzeso-gray);
  margin: 0 var(--techzeso-space-xs);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.techzeso-testimonial-dot.active {
  background-color: var(--techzeso-teal);
}

.techzeso-application-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--techzeso-space-xl);
}

.techzeso-application-info .techzeso-polygon-shape {
  height: 100%;
  padding: var(--techzeso-space-xl);
  background-color: var(--techzeso-cream);
}

.techzeso-application-info h3 {
  color: var(--techzeso-teal-dark);
  margin-bottom: var(--techzeso-space-md);
}

.techzeso-application-info ol {
  margin-bottom: var(--techzeso-space-lg);
}

.techzeso-application-info li {
  margin-bottom: var(--techzeso-space-sm);
}

.techzeso-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--techzeso-space-md);
  margin-top: var(--techzeso-space-lg);
  justify-content: center;
}

.techzeso-application-questions h3 {
  text-align: center;
  margin-bottom: var(--techzeso-space-lg);
  color: var(--techzeso-teal-dark);
}

/* Privacy Popup */
.techzeso-privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--techzeso-white);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  padding: var(--techzeso-space-md);
  z-index: 9999;
  display: none;
}

.techzeso-privacy-popup.show {
  display: block;
}

.techzeso-privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.techzeso-privacy-popup h3 {
  margin-bottom: var(--techzeso-space-sm);
  color: var(--techzeso-teal-dark);
  font-size: var(--techzeso-font-lg);
}

.techzeso-privacy-popup p {
  margin-bottom: 0;
  margin-right: var(--techzeso-space-md);
  flex: 1;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .techzeso-menu-toggle {
    display: block;
  }
  
  .techzeso-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--techzeso-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px var(--techzeso-space-lg) var(--techzeso-space-lg);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .techzeso-nav.active {
    right: 0;
  }
  
  .techzeso-nav-list {
    flex-direction: column;
  }
  
  .techzeso-nav-list li {
    margin: var(--techzeso-space-sm) 0;
  }
  
  .techzeso-hero-content h2 {
    font-size: var(--techzeso-font-xxl);
  }
  
  .techzeso-hero-content p {
    font-size: var(--techzeso-font-md);
  }
  
  .techzeso-section {
    padding: var(--techzeso-space-xl) 0;
  }
  
  .techzeso-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --techzeso-space-xl: 2rem;
    --techzeso-space-xxl: 3rem;
  }
  
  h1 {
    font-size: var(--techzeso-font-xxl);
  }
  
  h2 {
    font-size: var(--techzeso-font-xl);
  }
  
  .techzeso-pricing-featured {
    transform: none;
  }
  
  .techzeso-curriculum-timeline::before {
    left: 30px;
  }
  
  .techzeso-timeline-item {
    padding-left: 80px;
  }
  
  .techzeso-timeline-marker {
    width: 60px;
    height: 60px;
  }
  
  .techzeso-privacy-popup-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .techzeso-privacy-popup p {
    margin-bottom: var(--techzeso-space-md);
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --techzeso-font-xxxl: 2rem;
    --techzeso-font-xxl: 1.75rem;
    --techzeso-font-xl: 1.5rem;
    --techzeso-font-lg: 1.25rem;
  }
  
  .techzeso-container {
    padding: 0 var(--techzeso-space-sm);
  }
  
  .techzeso-section {
    padding: var(--techzeso-space-lg) 0;
  }
  
  .techzeso-polygon-shape {
    padding: var(--techzeso-space-md);
  }
  
  .techzeso-hero {
    padding: var(--techzeso-space-xl) 0;
  }
  
  .techzeso-hero-content h2 {
    font-size: var(--techzeso-font-xl);
  }
  
  .techzeso-footer-content {
    gap: var(--techzeso-space-lg);
  }
}

/* Fix for mobile menu */
@media screen and (min-width: 993px) {
  .techzeso-nav {
    display: flex !important;
  }
}