/* Base & Variables */
:root {
  --primary-color: #333;
  --secondary-color: #555;
  --accent-color: #777;
  --light-color: #f8f8f8;
  --dark-color: #222;
  --text-color: #333;
  --text-light: #fff;
  --border-radius: 8px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --glassmorphism-bg: rgba(255, 255, 255, 0.1);
  --glassmorphism-border: 1px solid rgba(255, 255, 255, 0.18);
  --glassmorphism-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  --glassmorphism-backdrop-filter: blur(8px);
  --card-padding: 1.5rem;
  --section-padding: 5rem 0;
  --container-padding: 0 1.5rem;
}

/* Reset & General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Glassmorphism Styles */
.glassmorphism {
  background: var(--glassmorphism-bg);
  backdrop-filter: var(--glassmorphism-backdrop-filter);
  -webkit-backdrop-filter: var(--glassmorphism-backdrop-filter);
  border: var(--glassmorphism-border);
  box-shadow: var(--glassmorphism-shadow);
  border-radius: var(--border-radius);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button, input[type='submit'] {
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

/* Section Styles */
.section-padding {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

/* Animation Utilities */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: var(--transition);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition);
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-light);
}

.desktop-nav ul {
  display: flex;
}

.desktop-nav li {
  margin-left: 2rem;
}

.desktop-nav a {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  background-color: var(--dark-color);
  padding: 1rem 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--text-light);
  font-weight: 600;
  display: block;
  padding: 0.5rem 0;
}

/* Header Scroll State */
.header.scrolled {
  background-color: var(--dark-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--text-light);
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Insights Section */
.insights .timeline {
  position: relative;
  margin: 3rem 0;
}

.insights .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--accent-color);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}

.timeline-content {
  width: 45%;
  padding: var(--card-padding);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 0;
  margin-left: auto;
}

.timeline-img {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--border-radius);
  text-align: center;
}

.timeline-img img {
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin: 0 auto;
  object-fit: cover;
}

.timeline-content h3 {
  margin-bottom: 1rem;
}

.timeline-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.timeline-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.timeline-content ul li::before {
  content: '•';
  position: absolute;
  left: -1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

/* Webinars Section */
.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.webinar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.webinar-card:hover {
  transform: translateY(-10px);
}

.card-image {
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 200px;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.webinar-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.webinar-date {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.card-content h3 {
  margin-bottom: 0.8rem;
}

.card-content p {
  margin-bottom: 1.5rem;
}

.card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Resources Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-10px);
}

.icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.animated-icon {
  width: 40px;
  height: 40px;
  position: relative;
}

.resource-card h3 {
  margin-bottom: 1rem;
}

.resource-link {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.resource-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.resource-link:hover::after {
  width: 100%;
}

/* Accolades Section */
.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.accolade-card {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.accolade-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.accolade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accolade-card h3 {
  margin-bottom: 1rem;
}

/* Clientele Section */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.rating {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-image {
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 200px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.news-content h3 {
  margin-bottom: 0.8rem;
}

.news-link {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.news-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.news-link:hover::after {
  width: 100%;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  padding: var(--card-padding);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.info-item i {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-image {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.contact-form {
  padding: var(--card-padding);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Lato', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h3, .footer h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: #aaa;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--text-light);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: #aaa;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--text-light);
  z-index: 9999;
  padding: 1rem;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
  padding-right: 1rem;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn:hover {
  background-color: var(--dark-color);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 700px;
}

.success-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.success-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Other Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 3rem;
}

/* Animated Icons */
.article-icon::before {
  content: '📄';
  font-size: 2rem;
}

.video-icon::before {
  content: '🎥';
  font-size: 2rem;
}

.tools-icon::before {
  content: '🛠️';
  font-size: 2rem;
}

.location-icon::before {
  content: '📍';
  font-size: 1.5rem;
}

.phone-icon::before {
  content: '📞';
  font-size: 1.5rem;
}

.email-icon::before {
  content: '✉️';
  font-size: 1.5rem;
}

.hours-icon::before {
  content: '🕒';
  font-size: 1.5rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .timeline-content {
    width: 85%;
  }
  
  .insights .timeline::before {
    left: 30px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 80px;
    margin-right: auto;
  }
  
  .timeline-item .timeline-content {
    margin-left: 80px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 0;
    --card-padding: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .webinars-grid, 
  .resources-grid, 
  .accolades-grid, 
  .testimonials-slider, 
  .news-grid {
    grid-template-columns: 1fr;
  }
}
*{
  opacity: 1 !important;
}
html,body{
  overflow-x: hidden;
}
.header {
  background-color: #aaa;
}