:root {
  /* Color Palette - Analogous Scheme */
  --primary: #0056b3;
  --primary-dark: #004494;
  --primary-light: #007bff;
  --secondary: #6c63ff;
  --secondary-dark: #5549f0;
  --accent: #00bcd4;
  --accent-dark: #00a0b7;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --gray-dark: #343a40;
  --body-bg: #ffffff;
  --text-color: #333333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

/* Base Styles */
body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-color);
  background-color: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 2rem;
}

/* Button Styles */
.btn {
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
}

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

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

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

.btn-outline-light {
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-link {
  color: var(--primary);
  text-decoration: none;
  padding: 0;
  font-weight: 500;
  box-shadow: none;
}

.btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  transform: none;
  box-shadow: none;
}

/* Navbar Styles */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--primary);
}

.navbar-light .navbar-toggler {
  border-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 8rem 0 5rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.stat-box p {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-box {
    margin-bottom: 1rem;
  }
}

/* Process Section */
.process-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.process-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.process-card p {
  color: var(--text-color);
  margin-bottom: 0;
}

/* Success Stories Section */
.card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Webinars Section */
.webinar-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.webinar-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.webinar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.webinar-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.webinar-date span {
  display: block;
}

.webinar-content {
  padding: 1.5rem;
}

.webinar-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.webinar-content p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* Innovation Section */
.innovation-section {
  position: relative;
}

.innovation-section img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.innovation-section img:hover {
  transform: scale(1.02);
}

.innovation-section h3 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.innovation-section p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* Resources Section */
.resource-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.resource-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-card a {
  font-weight: 500;
}

/* Insights Section */
.insight-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.insight-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.insight-content {
  padding: 1.5rem;
}

.insight-content .date {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.insight-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.insight-content p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.insight-content .btn-link {
  padding: 0;
  font-weight: 600;
}

/* Portfolio Section */
.portfolio-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-header {
  padding: 1.5rem;
  background-color: var(--primary);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-header h3 {
  margin-bottom: 0;
  color: white;
  font-size: 1.5rem;
}

.risk-level {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.portfolio-image {
  height: 200px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-allocation {
  margin-bottom: 1.5rem;
}

.allocation-item {
  margin-bottom: 0.75rem;
}

.allocation-item span {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: var(--gray-light);
}

.progress-bar {
  background-color: var(--primary);
  border-radius: 5px;
}

.portfolio-performance {
  background-color: var(--gray-light);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.portfolio-performance p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.portfolio-performance p:last-child {
  margin-bottom: 0;
}

/* Sustainability Section */
.sustainability-section img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.sustainability-section img:hover {
  transform: scale(1.02);
}

.sustainability-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.sustainability-section p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* Accolades Section */
.accolade-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.accolade-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.accolade-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.accolade-icon img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accolade-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.accolade-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.recognition-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.recognition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recognition-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.recognition-card p {
  color: var(--text-color);
  margin-bottom: 0;
}

/* Contact Section */
.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  min-width: 24px;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-map img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.form-control, .form-select {
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Footer Section */
.footer-section {
  background-color: var(--dark);
  color: white;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

.social-links a {
  color: white;
  margin-right: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-section hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
#cookieConsent {
  background-color: rgba(33, 37, 41, 0.95);
  color: white;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

#acceptCookies {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

#acceptCookies:hover {
  background-color: var(--primary-dark);
}

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

.success-container {
  max-width: 600px;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.success-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 5rem;
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.page-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

/* Animations and Effects */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .process-card, 
  .webinar-card, 
  .insight-card, 
  .portfolio-card, 
  .accolade-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
html,body{
  overflow-x: hidden;
}