/* Bluedrops Design System */

/* Color System
 * Primary colors represent trust and professionalism
 * Secondary colors add vibrancy and highlight important elements
 * Neutral colors provide balance and structure
 */
:root {
  /* Primary Colors */
  --primary-navy: #001F3F;
  --primary-blue: #0056B3;
  --primary-light-blue: #007BFF;

  /* Secondary Colors */
  --secondary-teal: #20B2AA;
  --secondary-green: #2E8B57;
  
  /* Neutral Colors */
  --neutral-900: #212529;  /* Darkest - For main text */
  --neutral-800: #343A40;
  --neutral-700: #495057;
  --neutral-600: #6C757D;
  --neutral-500: #ADB5BD;  /* Mid grey - For disabled states */
  --neutral-400: #CED4DA;
  --neutral-300: #DEE2E6;  /* Light grey - For borders */
  --neutral-200: #E9ECEF;  /* Lighter grey - For backgrounds */
  --neutral-100: #F8F9FA;  /* Lightest - For subtle backgrounds */
  --neutral-white: #FFFFFF;

  /* Semantic Colors */
  --success: #28A745;
  --warning: #FFC107;
  --danger: #DC3545;
  --info: #17A2B8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-light-blue), var(--primary-blue));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-teal), var(--secondary-green));

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-navy);
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

/* Paragraphs and Text */
p {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-small {
  font-size: 0.875rem;
}

/* Links */
a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--neutral-white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--neutral-white);
  border: none;
}

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

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

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--neutral-white);
  color: var(--neutral-white);
}

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

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

/* Cards */
.card {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: var(--spacing-lg);
}

/* Forms */
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--neutral-900);
  background-color: var(--neutral-white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-light-blue);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Labels */
.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--neutral-700);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-3 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-4 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-5 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-3 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-4 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-5 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

.bg-light { background-color: var(--neutral-100); }
.bg-white { background-color: var(--neutral-white); }
.bg-primary { background-color: var(--primary-blue); }

.text-white { color: var(--neutral-white); }
.text-primary { color: var(--primary-blue); }
.text-muted { color: var(--neutral-600); }

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--radius-full);
  color: var(--neutral-white);
}

.badge-primary {
  background-color: var(--primary-blue);
}

.badge-secondary {
  background-color: var(--secondary-teal);
}

/* Alerts */
.alert {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* Lists */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
  margin-right: var(--spacing-md);
}

/* Tables */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--neutral-900);
  border-collapse: collapse;
}

.table th,
.table td {
  padding: var(--spacing-md);
  vertical-align: top;
  border-top: 1px solid var(--neutral-300);
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--neutral-300);
  background-color: var(--neutral-100);
}

.table tbody tr:hover {
  background-color: var(--neutral-100);
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--neutral-white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar.scrolled {
  background: var(--neutral-white);
  box-shadow: var(--shadow-sm);
}

.navbar-logo {
  height: 44px;
  width: auto;
}

.nav-link {
  color: var(--neutral-white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--neutral-200);
}

.navbar.scrolled .nav-link {
  color: var(--neutral-900);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary-blue);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--neutral-100);
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--neutral-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(rgba(0, 31, 63, 0.6), rgba(0, 31, 63, 0.9)); */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(76px + 4rem);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--neutral-white);
  
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  min-height: 80px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
}

.feature-item {
  color: var(--neutral-white);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

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

.social-link {
  color: var(--neutral-white);
  font-size: 1.5rem;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.8;
  color: var(--neutral-white);
}

/* Counter Banner */
.counter-banner {
  background: var(--gradient-primary);
  color: var(--neutral-white);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Solutions Section */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-600);
  margin-bottom: 3rem;
}

.solution-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.solution-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

/* Industry Cards */
.industry-card {
  padding: 2rem;
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
  transition: transform 0.3s ease;
}

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

.testimonial-avatar i {
  font-size: 2.5rem;
  color: var(--neutral-500);
}

.testimonial-text {
  font-style: italic;
  color: var(--neutral-700);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-white);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer h5 {
  color: var(--neutral-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer .nav-link {
  color: var(--neutral-400);
  padding: 0.5rem 0;
}

.footer .nav-link:hover {
  color: var(--neutral-white);
}

.footer .social-links a {
  color: var(--neutral-white);
  font-size: 1.5rem;
  transition: opacity 0.2s ease;
}

.footer .social-links a:hover {
  opacity: 0.8;
}

.footer .newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--neutral-white);
}

.footer .newsletter-form .form-control::placeholder {
  color: var(--neutral-400);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    
  }

  .hero-subtitle {
    font-size: 1.25rem;
    min-height: 100px;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-social {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .counter-number {
    font-size: 2rem;
  }

  .navbar {
    background: var(--neutral-white);
    padding: 0.5rem 0;
  }

  .navbar .nav-link {
    color: var(--neutral-900);
  }

  .navbar-collapse {
    background: var(--neutral-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    border-top: 1px solid var(--neutral-300);
  }

  .navbar-collapse .navbar-nav {
    width: 100%;
  }
  .navbar-collapse .nav-item {
    width: 100%;
  }
  .navbar-collapse .nav-link {
    padding: 0.75rem 1rem;
    color: var(--neutral-900) !important;
    border-bottom: 1px solid var(--neutral-200);
  }
  .navbar-collapse .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .navbar-collapse .dropdown-menu {
    position: static !important;
    float: none !important;
    width: auto !important;
    margin-top: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .navbar-collapse .dropdown-item {
    color: var(--neutral-700) !important;
    padding-left: 2rem;
  }
  .navbar-collapse .dropdown-item:hover {
    background-color: var(--neutral-200) !important;
  }
}

/* Page specific styles will go below or in separate files */

/* Add these new component styles after the existing styles */

/* Navbar Styles */
.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.navbar.scrolled .nav-link {
    color: var(--neutral-900) !important;
}

.navbar .btn-primary {
    background-color: white;
    color: var(--primary-navy);
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.navbar .btn-primary:hover {
    background-color: var(--neutral-100);
    transform: translateY(-1px);
}

.navbar.scrolled .btn-primary {
    background-color: var(--primary-navy);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary-navy);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Stats Section */
.stat-card {
    background: var(--neutral-white);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Services Section */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* BlueDrop Systems Section */
.bluedrop-systems {
    background-color: var(--neutral-100);
}

.bluedrop-systems .card {
    transition: transform 0.3s ease;
}

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

/* Case Studies Section */
.case-studies .card {
    transition: transform 0.3s ease;
}

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

/* Blog Section */
.blog-section .card {
    transition: transform 0.3s ease;
}

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

/* Placeholder Images */
.placeholder-img {
    background: linear-gradient(45deg, var(--neutral-200) 25%, var(--neutral-300) 25%, var(--neutral-300) 50%, var(--neutral-200) 50%, var(--neutral-200) 75%, var(--neutral-300) 75%, var(--neutral-300) 100%);
    background-size: 56.57px 56.57px;
    animation: placeholderAnimation 3s linear infinite;
}

@keyframes placeholderAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 56.57px 56.57px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--neutral-white);
    font-weight: 600;
}

.footer .nav-link {
    color: var(--neutral-300);
    padding: 0.25rem 0;
}

.footer .nav-link:hover {
    color: var(--neutral-white);
}

.footer .text-small {
    color: var(--neutral-400);
}

/* Section Spacing */
section {
    position: relative;
    overflow: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-navy);
}

/* Header styles for light backgrounds */
body.light-header .navbar {
    /* You might want to set a light background for the navbar itself if it's transparent */
    /* background-color: #f8f9fa; */ /* Example: light grey */
    /* border-bottom: 1px solid #dee2e6; */ /* Example: subtle border */
}

body.light-header .navbar-brand .navbar-logo {
    /* If logo needs to change, e.g., from a white version to a colored one */
    /* filter: none; */ /* Assuming the default logo might be inverted or styled for dark backgrounds */
}

body.light-header .navbar-nav .nav-link {
    color: #212529 !important; /* Bootstrap's default dark text color */
}

body.light-header .navbar-nav .nav-link:hover,
body.light-header .navbar-nav .nav-link:focus {
    color: #0056b3 !important; /* A slightly darker or accent color for hover */
}

body.light-header .navbar-nav .nav-link .bi-chevron-down {
    color: #212529 !important; /* Ensure dropdown icons are also dark */
}

body.light-header .navbar-toggler .navbar-toggler-icon {
    /* Default Bootstrap toggler is often an SVG background image. 
       This might need a different SVG or be styled differently if it's an icon font. 
       If it's a Bootstrap default, it might adapt, or you might need to replace/recolor it. */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Ensure the primary contact button in the header remains styled as a button if its text color changes */
body.light-header .navbar-nav .btn-primary {
    color: #fff !important; /* Keep text white for primary buttons */
}

/* Add some top padding to the main content when the header is light, 
   to ensure content doesn't hide under a potentially fixed or transparent navbar.
   Adjust this value based on your navbar's height. 
   This is a general approach; specific pages might need more fine-tuning. */
body.light-header + main {
    /* padding-top: 80px; */ /* Example: Adjust if navbar is fixed */
}

/* Client Logos Section */
.client-logos-section .client-logo {
  max-height: 100px; /* Increased size */
  width: auto;
  margin: 0.5rem;
  /* filter: grayscale(100%); */ /* Removed grayscale */
  /* opacity: 0.6; */ /* Removed opacity */
  transition: transform 0.3s ease-in-out; /* Keep a subtle hover for interactivity */
}

.client-logos-section .client-logo:hover {
  /* filter: grayscale(0%); */ /* Removed grayscale change on hover */
  /* opacity: 1; */ /* Removed opacity change on hover */
  transform: scale(1.05); /* Slightly scale on hover */
}

/* Awards Section */
.awards-section .award-item .card {
  border: none; /* Remove card border if image is the main focus */
  background-color: transparent; /* Make card background transparent */
}

.awards-section .award-item img {
  max-height: 200px; /* Adjust as needed for award images */
  width: auto;
  max-width: 100%;
  object-fit: contain; 
  transition: transform 0.3s ease;
  background-color: var(--neutral-white); /* Add a bg if images are transparent */
  border-radius: var(--radius-sm); /* Match card radius if image is inset */
}

.awards-section .award-item img:hover {
  transform: scale(1.05);
}

/* Media Section */
.media-section .media-card-item .card-img-top {
  aspect-ratio: 16 / 9; 
  object-fit: cover;
}

.media-section .media-card-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-section .media-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.media-section .media-image {
  max-height: 300px; /* Adjust as needed */
  width: auto;
  max-width: 100%;
  object-fit: contain; /* Or 'cover' depending on desired cropping */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-section .media-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    /* background-color: rgba(0, 0, 0, 0.5); */ /* Removed background color */
    border-radius: 50%;
    background-size: 50%;
}

