html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
  font-size: 14px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #2c3e50;
  margin-bottom: 320px; /* Height of footer */
}

main {
  margin-top: 56px; /* Height of navbar */
  /* padding-bottom: 91px; */ /* Spacing before footer */
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 320px;
  background: linear-gradient(to right, #1a1a1a, #2c3e50);
  padding: 2.5rem 0 1.5rem;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-section {
  position: relative;
  background-color: #1a1a1a;
  color: white;
  padding: 120px 0;
  margin-top: -56px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.service-hero {
  height: 400px;
  display: flex;
  align-items: center;
  text-align: left;
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-hero {
  background-image: url('/img/contact-hero.jpg');
  background-position: center;
}

:root {
  --primary: #2c3e50;
  --secondary: #34495e;
  --accent: #3498db;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --text: #2c3e50;
  --gray: #95a5a6;
}
}

/* Pillar Cards */
.pillar-card {
  transition: transform 0.3s ease-in-out;
}

.pillar-card:hover {
  transform: translateY(-10px);
}

.card.shadow-hover {
  transition: box-shadow 0.3s ease-in-out;
}

.card.shadow-hover:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.card-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.pillar-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.2));
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(44, 62, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar-icon i {
  font-size: 1.75rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

/* Contact Form Styling */
.contact-hero {
  background-image: url('/img/contact-hero.jpg');
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.scroll-down-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down-arrow i {
  font-size: 2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Timeline Styling */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 15px 0;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-content {
    margin: 0 40px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 2px solid white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), 0.2);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -36px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -36px;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    top: 50%;
    right: -8px;
    transform: translateY(-50%) rotate(-45deg);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    top: 50%;
    left: -8px;
    transform: translateY(-50%) rotate(135deg);
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
        left: 0 !important;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .timeline-content::before {
        left: -37px !important;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .timeline-content::after {
        left: -8px !important;
        transform: translateY(-50%) rotate(135deg) !important;
    }
}
}
}

/* Service Pages Hero */
.service-hero {
  background-size: cover;
  background-position: center;
  padding: 160px 0 100px;
  position: relative;
}

.logistics-hero {
    min-height: 600px;
    margin-bottom: 2rem;
    background-image: url('https://source.unsplash.com/NYxxuBSQzp4/1920x1080');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.logistics-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.logistics-hero .hero-stat {
    transition: transform 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.logistics-hero .hero-stat:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.85));
  z-index: 1;
}

.stats-container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.features-list .feature-item {
  transition: transform 0.3s ease;
}

.features-list .feature-item:hover {
  transform: translateX(5px);
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
  --secondary: #34495e;
  --accent: #3498db;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --text: #2c3e50;
  --gray: #95a5a6;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  padding: 0.8rem 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 1.4rem;
}

.navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  padding: 1rem 1.2rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

footer.bg-dark {
  background-color: var(--primary) !important;
  color: var(--light) !important;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

footer a {
  color: var(--light) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent) !important;
  text-decoration: none;
}

/* Scroll Indicator Styles */
.mouse-scroll {
  margin: 0 auto;
  padding-bottom: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.mouse-scroll:hover {
  opacity: 1;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  border: 2px solid #fff;
  margin: 0 auto 20px;
  display: block;
  position: relative;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #fff;
  position: relative;
  animation: mousescroll 1.2s ease infinite;
}

@keyframes mousescroll {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

.m-scroll-arrows {
  display: block;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 0 3px 6px;
}

.unu {
  animation: mouse-scroll 1s infinite;
  animation-delay: .1s;
}

.doi {
  animation: mouse-scroll 1s infinite;
  animation-delay: .2s;
}

.trei {
  animation: mouse-scroll 1s infinite;
  animation-delay: .3s;
}

@keyframes mouse-scroll {
  0% { opacity: 0; }
  50% { opacity: .5; }
  100% { opacity: 1; }
}

/* Logistics Page Styles */
.service-features {
    margin: 2rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    color: var(--gray);
    font-size: 0.875rem;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.partner-logo-placeholder {
    background: var(--light);
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-logo-placeholder:hover {
    transform: translateY(-5px);
}

.placeholder-text {
    color: var(--gray);
    font-size: 0.875rem;
    text-align: center;
}

/* Contact Page Styles */
.contact-hero {
    background-image: url('https://source.unsplash.com/1600x400/?office,modern,business');
}

.contact-info i {
    width: 24px;
}

.contact-info a {
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent) !important;
}

.contact-section .card {
    transition: transform 0.3s ease;
}

.contact-section .card:hover {
    transform: translateY(-5px);
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-label {
    font-weight: 500;
}

.alert {
    border: none;
    border-radius: 8px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

@media (max-width: 768px) {
    .feature-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Professional styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
}

/* Pillars Section Styles */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pillar-card {
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.card-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-img-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(44, 62, 80, 0.2) 0%, rgba(44, 62, 80, 0.8) 100%);
}

.pillar-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
}

/* Real Estate Page Styles */
.service-hero {
    position: relative;
    background: url('https://source.unsplash.com/1600x600/?skyline,city,modern') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    margin-top: 76px;
}

.real-estate-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.9));
}

.investment-card {
    transition: transform 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-10px);
}

.card-img-overlay-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img-overlay-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-img-overlay-wrapper .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.investment-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--light);
    border-radius: 8px;
}

.highlight-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.highlight-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.advantage-content {
    flex: 1;
}

.advantage-content h3 {
    margin-bottom: 0.5rem;
}

.advantage-content p {
    margin-bottom: 0;
    color: var(--gray);
}

/* About Page Styles */
.about-hero {
    background-color: var(--light);
    padding: 120px 0 80px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pillar-icon {
    font-size: 2.5rem;
    height: 80px;
    width: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.pillar-block:hover .pillar-icon {
    transform: translateY(-10px);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--accent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-content {
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -50px;
}

.ethos-list {
    list-style: none;
    padding-left: 0;
}

.ethos-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ethos-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 80px;
    }
    
    .timeline-content::before {
        left: -40px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
    }
}

.display-4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.chevron {
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}

.chevron:nth-child(2) {
  animation-delay: 0.5s;
}

.chevron:nth-child(3) {
  animation-delay: 1s;
}

@keyframes move-chevron {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(45deg) scale(0.3);
  }
  50% {
    opacity: 1;
    transform: translateY(20px) rotate(45deg) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translateY(40px) rotate(45deg) scale(0.3);
  }
}

.btn {
  border-radius: 25px;
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255,255,255,0.2) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(255,255,255,0.2) 50%, 
    rgba(255,255,255,0.2) 75%, 
    transparent 75%, 
    transparent
  );
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
  animation: stripe-animation 12s linear infinite;
}

@keyframes stripe-animation {
  0% { background-position: 0 0; }
  100% { background-position: 50px 0; }
}

/* Playful hover effects */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--seuss-yellow);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.carousel-item {
  padding: 2rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}

.btn-primary:hover {
  background-color: #003d82;
  border-color: #003d82;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.section-heading {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #0056b3;
}

footer {
  background-color: #343a40;
}

/* Footer Styles */
.footer {
  background: linear-gradient(to right, #1a1a1a, #2c3e50);
  flex-shrink: 0;
  margin-top: auto;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.text-light-50 {
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: #fff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  padding: 0.75rem 1.5rem;
}

/* Footer Enhancements */
.footer h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-highlights {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-img-wrapper .overlay {
    opacity: 1;
}

/* Logistics Page Enhancements */
.metrics-section .metric-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.metrics-section .metric-item:hover {
    transform: translateY(-5px);
}

.process-step {
    position: relative;
    padding: 2rem;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -10px;
    width: 20px;
    height: 2px;
    background-color: var(--bs-primary);
    display: none;
}

@media (min-width: 768px) {
    .process-step::after {
        display: block;
    }
    
    .process-step:last-child::after {
        display: none;
    }
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.certification-item {
    padding: 1.5rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
}

.certification-item img {
    max-height: 80px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.certification-item:hover img {
    opacity: 1;
}

.cta-section {
    background: linear-gradient(45deg, var(--bs-primary), #1a365d);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

/* IT Consulting Page Styles */
.it-consulting-hero {
    min-height: 600px;
    margin-bottom: 2rem;
    background-image: url('https://source.unsplash.com/5U_28ojjgms/1920x1080');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.it-consulting-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.it-consulting-hero .hero-stat {
    transition: transform 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.it-consulting-hero .hero-stat:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.tech-icon {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-5px);
}

.tech-icon i {
    transition: color 0.3s ease;
}

.tech-icon:hover i {
    color: var(--bs-primary) !important;
}

/* Homepage Enhancements */
.stats-section {
    background: linear-gradient(45deg, var(--bs-primary), #1a365d);
}

.stat-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.advantage-item {
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-section {
    background: linear-gradient(45deg, var(--bs-primary), #1a365d);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

/* Add padding to last section before footer */
main > section:last-of-type,
main > div:last-of-type {
  padding-bottom: 4rem !important;
  margin-bottom: 2rem;
}

/* Ensure hamburger menu icon is visible on dark navbar */
.navbar-dark .navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}