/* Leadership Development Template - Main CSS */

:root {
  /* Primary Colors */
  --primary-blue: #21477c;
  --primary-blue-light: #233577;
  --primary-blue-dark: #0c2e4e;
  
  --secondary-gold: #e58a00;
  --secondary-gold-light: #dd9c42;
  --secondary-gold-dark: #ce7d1a;
  
  --accent-green: #3abf6d;
  --accent-green-light: #1ec95c;
  --accent-green-dark: #32a563;
  
  --neutral-gray: #7f8c8c;
  --neutral-gray-light: #8a8f8f;
  --neutral-gray-dark: #73868a;
  
  --light-blue: #ecf0f1;
  --light-blue-light: #f8f9fa;
  --light-blue-dark: #c6e3e0;
  
  /* Additional Shades */
  --white: #ffffff;
  --black: #385869;
  --text-dark: #445676;
  --text-light: #7f8686;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.36rem !important;
  font-weight: 600;
  color: var(--accent-green) !important;
}

h1 {
  font-size: 2.64rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.64rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.93rem;
}

h4 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.56rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Header */
.header {
  background: var(--gradient-primary);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-gold) !important;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu collapse functionality */
#navbarNav {
  display: none;
}

#navbarNav.show {
  display: block;
}

@media (min-width: 992px) {
  #navbarNav {
    display: block !important;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../RIM_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  padding-top: 50px !important;
  color: var(--white);
  font-size: 2.54rem;
  margin-bottom: 1.58rem;
}

.hero .lead {
  color: var(--light-blue);
  font-size: 1.33rem;
  margin-bottom: 2rem;
}

.hero p {
  color: var(--light-blue);
  font-size: 1rem;
}

/* Decorative Elements */
.hero-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.hero-shape:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--secondary-gold);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.58rem;
}

/* About Section */
.about {
  background: var(--light-blue);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-12px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--secondary-gold);
  margin-bottom: 1.73rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 19px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-13px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-price {
  color: var(--secondary-gold);
  font-size: 1.58rem;
  font-weight: 700;
  margin-top: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--accent-green);
}

.service-features li::before {
  content: 'âœ“ ';
  color: var(--accent-green);
  font-weight: bold;
}

/* Price Plans */
.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 112px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-17px);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.05);
}

.price-card.featured h4,
.price-card.featured .price {
  color: var(--white);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-gold);
  margin: 1rem 0;
}

/* Team Section */
.team {
  background: var(--light-blue);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.65rem;
  border: 4px solid var(--secondary-gold);
}

.team-role {
  color: var(--secondary-gold);
  font-weight: 500;
  font-size: 0.99rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--secondary-gold);
  font-family: serif;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.66rem;
  padding-left: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
  text-align: right;
}

/* FAQ Section */
.faq {
  background: var(--light-blue);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.5rem;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-secondary);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-light);
  margin: 0;
}

/* Gallery */
.gallery {
  background: var(--light-blue-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact .section-title h2,
.contact .section-title .section-subtitle {
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-control {
  border: 2px solid var(--light-blue);
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 0.2rem rgba(246, 159, 30, 0.25);
}

.btn-primary {
  background: var(--gradient-secondary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-accent);
}

.contact-info {
  color: var(--light-blue);
}

.contact-info h4 {
  color: var(--white);
  margin-bottom: 1.56rem;
}

.contact-info p {
  color: var(--light-blue);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

.blog-link {
  color: var(--secondary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-blue);
}

/* Footer */
.footer {
  background: var(--primary-blue-dark);
  color: var(--light-blue);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.73rem;
}

.footer a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--primary-blue);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-blue);
}

.breadcrumb-img {
  max-height: 40px;
  width: auto;
}

/* Process/Timeline Items */
.process-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card,
.timeline-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.process-card:hover,
.timeline-card:hover {
  transform: translateY(-10px);
}

.process-number,
.timeline-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.29rem;
}

/* Career Section */
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.career-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-10px);
}

.career-role {
  color: var(--secondary-gold);
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.70rem;
}

/* Core Info Section */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-10px);
}

.coreinfo-card i {
  font-size: 2.59rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

/* Animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary { color: var(--primary-blue) !important; }
.text-secondary { color: var(--secondary-gold) !important; }
.text-accent { color: var(--accent-green) !important; }
.bg-primary { background: var(--gradient-primary) !important; }
.bg-secondary { background: var(--gradient-secondary) !important; }
.bg-light { background: var(--light-blue) !important; }

.section-spacing { margin: 3rem 0; }
.card-hover { transition: transform 0.3s ease; }
.card-hover:hover { transform: translateY(-10px); }

/* Image Sizing */
.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-bg {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
