/* ===================================

   GSGOC Website - Main Stylesheet

   =================================== */



/* ===================================

   CSS Variables (Design System)

   =================================== */

:root {

  /* Color Palette */

  --primary-navy: #1B1F3B;

  --accent-blue: #28A745;

  --green-accent: #28A745;

  --green-light: #34D058;

  --green-dark: #1E7E34;

  --light-gray: #F6F8FA;

  --gold-accent: #FFD700;

  --white: #FFFFFF;

  --dark-gray: #333333;

  --text-muted: #6C757D;

  --border-color: #E9ECEF;

  

  /* Typography */

  --font-primary: 'Poppins', sans-serif;

  --font-fallback: 'Inter', sans-serif;

  --font-size-base: 1rem;

  --line-height-base: 1.6;

  

  /* Spacing */

  --section-padding: 80px 0;

  --container-padding: 0 15px;

  

  /* Shadows */

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);

  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);

  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

  

  /* Transitions */

  --transition-base: all 0.3s ease;

  --transition-fast: all 0.15s ease;

}



/* ===================================

   Base Styles & Reset

   =================================== */

/* Partner Logo Styles */
.partner-logo {
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

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

.partner-logo img {
  transition: all 0.3s ease;
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo:hover img {
  transform: scale(1.05);
}

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

}



body {

  font-family: var(--font-primary), var(--font-fallback), sans-serif;

  font-size: var(--font-size-base);

  line-height: var(--line-height-base);

  color: var(--dark-gray);

  background-color: var(--white);

  overflow-x: hidden;

}



/* ===================================

   Typography

   =================================== */

h1, h2, h3, h4, h5, h6 {

  font-weight: 600;

  line-height: 1.2;

  margin-bottom: 1rem;

  color: var(--primary-navy);

}



h1 { font-size: 3rem; }

h2 { font-size: 2.5rem; }

h3 { font-size: 2rem; }

h4 { font-size: 1.5rem; }

h5 { font-size: 1.25rem; }

h6 { font-size: 1rem; }



p {

  margin-bottom: 1rem;

  color: var(--text-muted);

}



a {

  color: var(--accent-blue);

  text-decoration: none;

  transition: var(--transition-base);

}



a:hover {

  color: var(--primary-navy);

}



/* ===================================

   Buttons

   =================================== */

.btn {

  display: inline-block;

  padding: 12px 30px;

  border-radius: 50px;

  font-weight: 500;

  text-align: center;

  text-decoration: none;

  border: none;

  cursor: pointer;

  transition: var(--transition-base);

  font-size: 1rem;

  line-height: 1.5;

}



.btn-primary {

  background: linear-gradient(135deg, var(--accent-blue), #1E7E34);

  color: var(--white);

  box-shadow: var(--shadow-md);

}



.btn-primary:hover {

  transform: translateY(-2px);

  box-shadow: var(--shadow-lg);

  color: var(--white);

}



.btn-secondary {

  background: var(--white);

  color: var(--primary-navy);

  border: 2px solid var(--primary-navy);

}



.btn-secondary:hover {

  background: var(--primary-navy);

  color: var(--white);

  transform: translateY(-2px);

}



.btn-lg {

  padding: 15px 40px;

  font-size: 1.1rem;

}



/* ===================================

   Navigation

   =================================== */

.navbar {

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  box-shadow: var(--shadow-sm);

  transition: var(--transition-base);

  padding: 1rem 0;

}



.navbar-brand {

  font-weight: 700;

  font-size: 1.5rem;

  color: var(--primary-navy) !important;

}



.navbar-brand .green-text {

  color: var(--green-accent) !important;

}



.navbar-nav .nav-link {

  color: var(--primary-navy) !important;

  font-weight: 500;

  margin: 0 10px;

  position: relative;

  transition: var(--transition-base);

}



.navbar-nav .nav-link:hover {

  color: var(--accent-blue) !important;

}



.navbar-nav .nav-link::after {

  content: '';

  position: absolute;

  bottom: -5px;

  left: 50%;

  width: 0;

  height: 2px;

  background: var(--accent-blue);

  transition: var(--transition-base);

  transform: translateX(-50%);

}



.navbar-nav .nav-link:hover::after {

  width: 100%;

}



/* ===================================

   Hero Section

   =================================== */

.hero-section {

  min-height: 100vh;

  background: linear-gradient(rgba(27, 31, 59, 0.7), rgba(40, 167, 69, 0.3)), 
              url('../img/hero/hero-bg.png') center center/cover no-repeat;

  display: flex;

  align-items: center;

  position: relative;

  overflow: hidden;

}

/* SIRA Certified Logo Overlay - Seal Stamp Style */
.sira-certified-overlay {
  position: absolute;
  top: 60%;
  right: 10%;
  transform: rotate(-30deg);
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: none;
  border: none;
  z-index: 10;
  transition: all 0.4s ease;
  animation: sealStamp 2s ease-out;
  width: auto;
  height: auto;
}

.sira-certified-overlay:hover {
  transform: rotate(-30deg) scale(1.1);
  box-shadow: none;
  border-color: transparent;
}

.sira-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.sira-text {
  color: #dc3545;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

@keyframes sealStamp {
  0% {
    transform: rotate(-30deg) scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: rotate(-30deg) scale(1.2) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: rotate(-30deg) scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Responsive adjustments for SIRA overlay */
@media (max-width: 768px) {
  .sira-certified-overlay {
    width: auto;
    height: auto;
    padding: 0;
    top: 55%;
    right: 8%;
  }
  
  .sira-logo {
    width: 60px;
    height: 60px;
  }
  
  .sira-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .sira-certified-overlay {
    width: auto;
    height: auto;
    padding: 0;
    gap: 8px;
    top: 50%;
    right: 5%;
  }
  
  .sira-logo {
    width: 50px;
    height: 50px;
  }
  
  .sira-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
}

.hero-content {

  text-align: center;

  color: #ffffff;

  z-index: 2;

  position: relative;

}



.hero-title {

  font-size: 3.5rem;

  font-weight: 700;

  margin-bottom: 1.5rem;

  animation: fadeInUp 1s ease-out;

  color: #ffffff;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}



.hero-subtitle {

  font-size: 1.25rem;

  margin-bottom: 2rem;

  color: #ffffff;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);

  animation: fadeInUp 1s ease-out 0.2s both;

}



.hero-buttons {

  animation: fadeInUp 1s ease-out 0.4s both;

}



.hero-buttons .btn {

  margin: 0 10px;

}



/* ===================================

   Sections

   =================================== */

.section {

  padding: var(--section-padding);

}



.section-title {

  text-align: center;

  margin-bottom: 3rem;

}



.section-subtitle {

  text-align: center;

  color: var(--text-muted);

  margin-bottom: 4rem;

  font-size: 1.1rem;

}



/* ===================================

   Cards

   =================================== */

.card {

  border: none;

  border-radius: 15px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition-base);

  overflow: hidden;

  background: var(--white);

}



.card:hover {

  transform: translateY(-5px);

  box-shadow: var(--shadow-lg);

}



.card-body {

  padding: 2rem;

}



.card-icon {

  width: 60px;

  height: 60px;

  background: linear-gradient(135deg, var(--green-accent), var(--green-dark));

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 1.5rem;

  color: var(--white);

  font-size: 1.5rem;

}



/* ===================================

   Badges/Features

   =================================== */

.feature-badge {

  text-align: center;

  padding: 2rem;

  background: var(--white);

  border-radius: 15px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition-base);

}



.feature-badge:hover {

  transform: translateY(-3px);

  box-shadow: var(--shadow-md);

}



.feature-icon {

  width: 80px;

  height: 80px;

  background: linear-gradient(135deg, var(--green-accent), var(--green-dark));

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1rem;

  color: var(--white);

  font-size: 2rem;

}



/* ===================================

   Testimonials

   =================================== */

.testimonial-card {

  background: var(--white);

  padding: 2rem;

  border-radius: 15px;

  box-shadow: var(--shadow-sm);

  margin: 1rem;

  position: relative;

}



.testimonial-text {

  font-style: italic;

  margin-bottom: 1.5rem;

  color: var(--dark-gray);

}



.testimonial-author {

  font-weight: 600;

  color: var(--primary-navy);

}



.testimonial-position {

  color: var(--text-muted);

  font-size: 0.9rem;

}



/* ===================================

   Footer

   =================================== */

.footer {

  background: var(--primary-navy);

  color: var(--white);

  padding: 3rem 0 1rem;

}



.footer h5 {

  color: var(--white);

  margin-bottom: 1.5rem;

}



.footer a {

  color: rgba(255, 255, 255, 0.8);

  transition: var(--transition-base);

}



.footer a:hover {

  color: var(--green-accent);

}



.footer-bottom {

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding-top: 1rem;

  margin-top: 2rem;

  text-align: center;

  color: rgba(255, 255, 255, 0.6);

}

/* Reduced line spacing for footer contact info */
.footer .col-lg-4:nth-child(2) p {
  margin-bottom: 8px;
  line-height: 1.4;
}



/* ===================================

   Utilities

   =================================== */

.bg-light-gray {

  background-color: var(--light-gray);

}



.text-primary {

  color: var(--primary-navy) !important;

}



.text-accent {

  color: var(--accent-blue) !important;

}



.text-gold {

  color: var(--gold-accent) !important;

}



.text-green {

  color: var(--green-accent) !important;

}



.text-green-light {

  color: var(--green-light) !important;

}



.mb-0 { margin-bottom: 0 !important; }

.mt-5 { margin-top: 3rem !important; }

.mb-5 { margin-bottom: 3rem !important; }



/* ===================================

   Animations

   =================================== */

@keyframes fadeInUp {

  from {

    opacity: 0;

    transform: translateY(30px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



@keyframes fadeIn {

  from { opacity: 0; }

  to { opacity: 1; }

}



/* ===================================

   Loader Animation

   =================================== */

.loader {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--white);

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 9999;

  transition: opacity 0.5s ease-out;

}



.loader.hidden {

  opacity: 0;

  pointer-events: none;

}



.spinner {

  width: 50px;

  height: 50px;

  border: 3px solid var(--light-gray);

  border-top: 3px solid var(--green-accent);

  border-radius: 50%;

  animation: spin 1s linear infinite;

}



@keyframes spin {

  0% { transform: rotate(0deg); }

  100% { transform: rotate(360deg); }

}



/* ===================================

   Back to Top Button

   =================================== */

.back-to-top {

  position: fixed;

  bottom: 30px;

  right: 30px;

  width: 50px;

  height: 50px;

  background: var(--accent-blue);

  color: var(--white);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: var(--transition-base);

  opacity: 0;

  visibility: hidden;

  z-index: 1000;

}



.back-to-top.show {

  opacity: 1;

  visibility: visible;

}



.back-to-top:hover {

  background: var(--primary-navy);

  transform: translateY(-3px);

}



/* ===================================

   WhatsApp Button

   =================================== */

.whatsapp-button {

  position: fixed;

  bottom: 90px;

  right: 30px;

  width: 60px;

  height: 60px;

  background: #25D366;

  color: var(--white);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: var(--transition-base);

  z-index: 1000;

  box-shadow: var(--shadow-md);

}



.whatsapp-button:hover {

  transform: scale(1.1);

  color: var(--white);

}



/* ===================================

   Responsive Design

   =================================== */

@media (max-width: 768px) {

  .hero-title {

    font-size: 2.5rem;

  }

  

  .hero-subtitle {

    font-size: 1.1rem;

  }

  

  .section {

    padding: 60px 0;

  }

  

  .card-body {

    padding: 1.5rem;

  }

  

  .hero-buttons .btn {

    margin: 10px;

    display: block;

    width: 100%;

  }

  

  .back-to-top, .whatsapp-button {

    right: 20px;

  }

  

  .back-to-top {

    bottom: 20px;

  }

  

  .whatsapp-button {

    bottom: 80px;

  }

}



@media (max-width: 576px) {

  h1 { font-size: 2rem; }

  h2 { font-size: 1.75rem; }

  h3 { font-size: 1.5rem; }

  

  .hero-title {

    font-size: 2rem;

  }

  

  .section {

    padding: 40px 0;

  }

}



/* ===================================

   Print Styles

   =================================== */

@media print {

  .navbar,

  .back-to-top,

  .whatsapp-button,

  .loader {

    display: none !important;

  }

  

  .hero-section {

    min-height: auto;

    padding: 2rem 0;

  }

} 

/* ===================================
   Company Cards
   =================================== */
.company-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.company-card:hover::before {
  transform: scaleX(1);
}

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

.company-logo {
  margin-bottom: 1.5rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  transition: var(--transition-base);
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.company-card:hover .company-logo img {
  transform: scale(1.1);
}

.company-name {
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.3;
}

.company-description {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.company-features {
  margin-top: auto;
}

.company-features .badge {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for company cards */
@media (max-width: 768px) {
  .company-card {
    padding: 2rem 1.5rem;
  }
  
  .company-name {
    font-size: 1rem;
  }
  
  .company-description {
    font-size: 0.85rem;
  }
  
  .company-logo {
    min-height: 80px;
  }
  
  .company-logo img {
    max-height: 80px;
  }
}

/* ===================================
   Service Tabs
   =================================== */
.service-tabs {
  margin-bottom: 3rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.service-tabs .nav-link {
  color: var(--text-gray);
  border: none;
  padding: 1.2rem 2rem;
  margin: 0 0.3rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid transparent;
}

.service-tabs .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-blue));
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.service-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  color: var(--white);
  border-color: var(--accent-blue);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  transform: translateY(-2px);
}

.service-tabs .nav-link:hover {
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
  color: var(--white);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.service-tabs .nav-link i {
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.service-tabs .nav-link:hover i,
.service-tabs .nav-link.active i {
  transform: scale(1.1);
}

/* Enhanced service items */
.service-item {
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(40, 167, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-blue), var(--green-accent));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent rgba(40, 167, 69, 0.1) transparent transparent;
  transition: all 0.3s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover::after {
  border-color: transparent rgba(40, 167, 69, 0.2) transparent transparent;
}

.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(40, 167, 69, 0.2);
}

.service-item i {
  color: var(--accent-blue);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-item i::before {
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-item:hover i {
  transform: scale(1.1) rotate(5deg);
}

.service-item h5 {
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-item:hover h5 {
  color: var(--accent-blue);
}

.service-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.service-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(40, 167, 69, 0.1);
  transition: border-color 0.3s ease;
}

.service-item:hover .service-details {
  border-color: rgba(40, 167, 69, 0.2);
}

.service-details ul {
  margin: 0;
  padding: 0;
}

.service-details ul li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
}

.service-details ul li:hover {
  color: var(--primary-navy);
  transform: translateX(5px);
}

.service-details ul li i {
  color: var(--green-accent);
  font-size: 0.85rem;
  margin-right: 0.8rem;
  min-width: 16px;
  transition: all 0.3s ease;
}

.service-details ul li:hover i {
  transform: scale(1.2);
  color: var(--green-light);
}

/* Service category intro enhancement */
.service-category-intro {
  background: linear-gradient(135deg, rgba(27, 31, 59, 0.02) 0%, rgba(40, 167, 69, 0.02) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  border: 1px solid rgba(40, 167, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.service-category-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-blue), var(--green-accent));
}

.service-category-intro h3 {
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.service-category-intro h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--green-accent));
  border-radius: 2px;
}

.service-category-intro p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .service-tabs {
    padding: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .service-tabs .nav-link {
    padding: 1rem 1.5rem;
    margin: 0 0.2rem;
    font-size: 0.85rem;
  }
  
  .service-tabs .nav-link i {
    font-size: 0.9rem;
  }
  
  .service-item {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-item i {
    font-size: 2rem;
  }
  
  .service-item h5 {
    font-size: 1.1rem;
  }
  
  .service-item p {
    font-size: 0.9rem;
  }
  
  .service-details ul li {
    font-size: 0.85rem;
  }
  
  .service-category-intro {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .service-category-intro h3 {
    font-size: 1.8rem;
  }
  
  .service-category-intro p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .service-tabs .nav-link {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
    margin: 0.1rem;
  }
  
  .service-item {
    padding: 1.5rem 1.2rem;
  }
  
  .service-item i {
    font-size: 1.8rem;
  }
  
  .service-category-intro {
    padding: 1.5rem 1.2rem;
  }
  
  .service-category-intro h3 {
    font-size: 1.5rem;
  }
} 

/* ===================================
   Infrastructure Section
   =================================== */
.infrastructure-card {
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.infrastructure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), #1E7E34, var(--accent-blue));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.infrastructure-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.3);
}

.infrastructure-card:hover::before {
  animation: shimmer 1s ease-in-out infinite;
}

.infrastructure-icon {
  font-size: 4rem;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.infrastructure-card:hover .infrastructure-icon {
  transform: scale(1.1) rotate(5deg);
  color: #1E7E34;
}

.infrastructure-card h4 {
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.infrastructure-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.location-info {
  background: rgba(40, 167, 69, 0.05);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-blue);
  margin-top: 1rem;
}

.location-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.location-info p:last-child {
  margin-bottom: 0;
}

.location-info strong {
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-info strong i {
  color: var(--accent-blue);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.infrastructure-card:hover .location-info strong i {
  color: #1E7E34;
  transform: scale(1.1);
}

.counter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.infrastructure-card:hover .counter {
  transform: scale(1.1);
  color: #1E7E34;
}

.counter-label {
  color: var(--text-gray);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.counter-label i {
  color: var(--accent-blue);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.infrastructure-card:hover .counter-label i {
  color: #1E7E34;
  transform: scale(1.1);
}

/* Vehicle fleet grid styling */
.infrastructure-card .row {
  margin-top: 1rem;
}

.infrastructure-card .col-6 {
  padding: 0.75rem;
}

/* Animation for counters */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .infrastructure-card {
    padding: 2rem;
    margin-bottom: 1rem;
  }
  
  .infrastructure-icon {
    font-size: 3rem;
  }
  
  .counter {
    font-size: 2.5rem;
  }
  
  .infrastructure-card h4 {
    font-size: 1.2rem;
  }
}

/* ===================================
   Leadership Team
   =================================== */

/* Global Contact Information within Infrastructure Card */
.infrastructure-card .location-info {
  background: rgba(40, 167, 69, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-blue);
  margin-top: 1.5rem;
  text-align: left;
}

.infrastructure-card .location-info h6 {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.infrastructure-card .location-info h6 i {
  color: var(--accent-blue);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.infrastructure-card .location-info p.small {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.infrastructure-card .location-info p.small:last-child {
  margin-bottom: 0;
}

.infrastructure-card .location-info a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.infrastructure-card .location-info a:hover {
  color: #1E7E34;
  text-decoration: underline;
}

.infrastructure-card:hover .location-info h6 i {
  color: #1E7E34;
  transform: scale(1.1);
}

.infrastructure-card:hover .location-info {
  background: rgba(40, 167, 69, 0.08);
  border-left-color: #1E7E34;
}

/* Responsive adjustments for contact info */
@media (max-width: 768px) {
  .infrastructure-card .location-info {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .infrastructure-card .location-info h6 {
    font-size: 0.9rem;
  }
  
  .infrastructure-card .location-info p.small {
    font-size: 0.8rem;
  }
}

.team-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent-blue);
}

.team-name {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-email {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.team-description {
  color: var(--text-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  font-style: italic;
}

/* ===================================
   Certificates Section
   =================================== */
.certificate-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  text-align: center;
}

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

.certificate-icon {
  font-size: 3rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.certificate-title {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.certificate-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ===================================
   Clients Section
   =================================== */
.client-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  border: 1px solid var(--light-gray);
}

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

.client-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.client-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
} 

/* ===================================
   Service Cards
   =================================== */
.service-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-base);
}

.service-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card .card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h4 {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features .badge {
  font-size: 0.7rem;
  padding: 0.4rem 0.6rem;
  border-radius: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card .btn {
  border-radius: 25px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: var(--transition-base);
}

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

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
  .service-card .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-card .card-icon i {
    font-size: 1.5rem;
  }
  
  .service-card h4 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
  }
  
  .service-features .badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }
} 

/* ===================================
   Service Page Elements
   =================================== */
.hero-stats {
  margin-top: 3rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
  color: var(--accent-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.feature-card h4 {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}





/* Responsive adjustments */
@media (max-width: 768px) {
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .stat-item p {
    font-size: 0.8rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .service-item {
    padding: 1.5rem;
  }
  
  .service-item i {
    font-size: 1.5rem;
  }
} 

/* Additional enhancements for service portfolio */
.service-tabs {
  position: relative;
  z-index: 2;
}

.service-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  z-index: -1;
}

.tab-content {
  position: relative;
  z-index: 1;
}

.tab-pane {
  animation: fadeInUp 0.6s ease-out;
}

.tab-pane.fade {
  transition: opacity 0.3s ease-in-out;
}

.tab-pane.fade.show {
  opacity: 1;
}

/* Enhanced service item animations */
.service-item {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

/* Improved service item hover effects */
.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(40, 167, 69, 0.2);
}

.service-item:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(40, 167, 69, 0.3));
}

/* Enhanced service details */
.service-details ul li {
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}

.service-details ul li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--green-accent));
  transition: width 0.3s ease;
}

.service-details ul li:hover::before {
  width: 8px;
}

.service-details ul li:hover {
  color: var(--primary-navy);
  transform: translateX(8px);
  padding-left: 5px;
}

/* Enhanced service category intro */
.service-category-intro {
  position: relative;
  overflow: hidden;
}

.service-category-intro::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Improved responsive design */
@media (max-width: 768px) {
  .service-tabs {
    margin-bottom: 2rem;
  }
  
  .service-tabs .nav-link {
    margin-bottom: 0.5rem;
  }
  
  .service-item {
    margin-bottom: 1.5rem;
  }
  
  .service-category-intro {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .service-tabs .nav-link {
    font-size: 0.75rem;
    padding: 0.7rem 1rem;
  }
  
  .service-item {
    padding: 1.5rem 1rem;
  }
  
  .service-item i {
    font-size: 1.6rem;
  }
  
  .service-category-intro {
    padding: 1.5rem 1rem;
  }
  
  .service-category-intro h3 {
    font-size: 1.4rem;
  }
} 

/* ===================================
   Team Credentials Page Styles
   =================================== */

.profile-photo-large {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.profile-photo-large i {
  font-size: 4rem;
  color: var(--white);
}

.profile-photo-large:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(40, 167, 69, 0.3);
}

.profile-name {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-position {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.profile-contact p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.profile-contact i {
  color: var(--accent-blue);
  width: 20px;
}

.profile-details h4 {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-blue);
  display: inline-block;
}

.profile-details p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.profile-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.profile-details ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.profile-details ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-size: 0.9rem;
}

.expertise-tags .badge {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  transition: var(--transition-base);
}

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

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-base);
}

.breadcrumb-item a:hover {
  opacity: 1;
  color: var(--accent-blue);
}

.breadcrumb-item.active {
  color: var(--white);
  opacity: 0.6;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .profile-photo-large {
    width: 150px;
    height: 150px;
  }
  
  .profile-photo-large i {
    font-size: 3rem;
  }
  
  .profile-details h4 {
    font-size: 1.1rem;
  }
  
  .expertise-tags .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
} 

/* ===================================
   About Navigation Cards
   =================================== */

.about-nav-card {
  transition: var(--transition-base);
  border: none;
  box-shadow: var(--shadow-md);
}

.about-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-nav-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-base);
}

.about-nav-card .card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.about-nav-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
}

/* ===================================
   Project Cards
   =================================== */

.project-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.project-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.project-image i {
  font-size: 2rem;
  color: var(--white);
}

.project-card:hover .project-image {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
}

.project-content h4 {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-category {
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-details .badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
}

/* ===================================
   Achievement Cards
   =================================== */

.achievement-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-base);
}

.achievement-icon i {
  font-size: 2rem;
  color: var(--white);
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
}

.achievement-card h3 {
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.achievement-card p {
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* ===================================
   Activity Cards
   =================================== */

.activity-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.activity-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.activity-header i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
  font-size: 1.2rem;
}

.activity-header h4 {
  color: var(--primary-navy);
  font-weight: 600;
  margin: 0;
}

.activity-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.activity-progress {
  margin-top: auto;
}

.progress {
  height: 8px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.progress-bar {
  background: linear-gradient(90deg, var(--accent-blue), var(--green-accent));
  border-radius: 10px;
  transition: width 0.6s ease;
}

.progress-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===================================
   Responsive Adjustments
   =================================== */

@media (max-width: 768px) {
  .about-nav-card .card-icon,
  .project-image,
  .achievement-icon {
    width: 60px;
    height: 60px;
  }
  
  .about-nav-card .card-icon i,
  .project-image i,
  .achievement-icon i {
    font-size: 1.5rem;
  }
  
  .achievement-card h3 {
    font-size: 2rem;
  }
  
  .activity-header i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .project-card,
  .achievement-card,
  .activity-card {
    padding: 1.5rem;
  }
}

/* ===================================
   Contact Card Styles
   =================================== */

.contact-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--green-accent));
  transform: scaleX(0);
  transition: var(--transition-base);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

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

.contact-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
}

.contact-icon {
  margin-bottom: 1rem;
  display: inline-block;
  padding: 1rem;
  border-radius: 50%;
  background: var(--light-gray);
  transition: var(--transition-base);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-header h4 {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact-details p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.contact-details i {
  min-width: 20px;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-header {
    margin-bottom: 1rem;
  }
  
  .contact-icon {
    padding: 0.75rem;
  }
  
  .contact-header h4 {
    font-size: 1.1rem;
  }
  
  .contact-details p {
    font-size: 0.9rem;
  }
}

/* ===================================
   Footer Contact Section Styles
   =================================== */

.footer-contact-section h6 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact-section p.small {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.footer-contact-section h6.text-primary {
  color: var(--primary-navy) !important;
}

.footer-contact-section h6.text-success {
  color: var(--green-accent) !important;
}

.footer-contact-section h6.text-info {
  color: var(--accent-blue) !important;
}

@media (max-width: 768px) {
  .footer-contact-section h6 {
    font-size: 0.85rem;
  }
  
  .footer-contact-section p.small {
    font-size: 0.75rem;
  }
} 