/* ESG Compliance Training Platform - Main Styles */

:root {
  /* Primary color palette - 5 pastel high-contrast colors */
  --primary-color: #2B5AA0;
  --secondary-color: #4A90B8;
  --accent-color: #7FB069;
  --warning-color: #FFB347;
  --dark-color: #2C3E50;
  
  /* Light and dark shades */
  --primary-light: #E8F2FF;
  --secondary-light: #F0F8FF;
  --accent-light: #F0F8F0;
  --warning-light: #FFF8E1;
  --dark-light: #ECF0F1;
  
  --primary-dark: #1A3B6B;
  --secondary-dark: #2E5A75;
  --accent-dark: #5A8A4A;
  --warning-dark: #E6A534;
  --dark-dark: #1B2631;
  
  /* Conservative font sizes */
  --navbar-brand-size: 1.1rem;
  --h1-size: 2rem;
  --h2-size: 1.5rem;
  --p-size: 0.95rem;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Conservative typography */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--primary-color);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--dark-color);
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--dark-color);
}

p {
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--dark-color);
}

/* Hero section with fullscreen height */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  display: flex;
  align-items: center;
}

/* Decorative shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  top: 20%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--warning-color);
  bottom: 20%;
  left: 5%;
}

/* Service cards */
.service-card {
  transition: transform 0.2s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-5px);
}

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

/* Team member cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

/* Footer styling */
.footer {
  background: #1A252F;
  color: #FFFFFF;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: #9FD97A;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer a {
  color: #E8E8E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #9FD97A;
}

/* Contact form */
.contact-form {
  background: var(--primary-light);
  padding: 2rem;
  border-radius: 10px;
}

/* FAQ cards */
.faq-card {
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Button styles */
.btn-primary-custom {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

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

/* Breadcrumb image only */
.breadcrumb-img {
  width: 30px;
  height: 20px;
  object-fit: contain;
} 

body {
    overflow-x: hidden;
}

.hero-section h1 {
    padding-top: 125px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
