/* Base Styles */
:root {
  /* Colors */
  --primary: #2B4C7E;
  --primary-dark: #1a3b69;
  --primary-light: #3e5d8b;
  --secondary: #556B88;
  --accent: #1FD3BF;
  --accent-dark: #16a393;
  --accent-light: #44e1d1;
  --white: #FFFFFF;
  --light: #F8F9FC;
  --dark: #1A1F2C;
  --gray: #707989;
  --light-gray: #E5E8F0;
  --dark-gray: #3A4254;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  line-height: 1.3;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}
p {
  margin-bottom: 1rem;
  color: var(--secondary);
}
a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--accent);
}
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Utility Classes */
.text-center {
  text-align: center;
}
.mt-40 {
  margin-top: 40px;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: none;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}
.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border: none;
}
.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--white);
}
.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}
/* Section Styles */
section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.section-divider {
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  margin: 0 auto 30px;
}
.section-description {
  font-size: 1.125rem;
  color: var(--secondary);
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: padding 0.3s ease;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* space between icon and text */
}
.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.logo a:hover {
  color: var(--accent);
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
}
/* Desktop Navigation */
.desktop-nav {
  display: none;
}
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 30px;
  }
  
  .desktop-nav a {
    color: var(--primary);
    font-weight: 500;
    position: relative;
  }
  
  .desktop-nav a:hover, 
  .desktop-nav a.active {
    color: var(--accent);
  }
  .logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.logo-img {
  height: 40px;
  width: auto;
}
  .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
  }
  
  .desktop-nav a:hover::after,
  .desktop-nav a.active::after {
    width: 100%;
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .mobile-nav-toggle {
    display: none;
  }
}
.mobile-nav-menu {
  display: none;
  padding: 20px 0;
}
.mobile-nav-menu.active {
  display: block;
}
.mobile-nav-menu nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile-nav-menu a {
  color: var(--primary);
  font-weight: 500;
}
.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: var(--accent);
}
/* Hero Section */
.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--white);
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-text {
  max-width: 600px;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
    padding-left: 40px;
  }
}
/* About Intro Section */
.about-intro-section {
  background-color: var(--white);
}
.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--secondary);
  font-size: 1.125rem;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(43, 76, 126, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}
/* Projects Section */
.projects-section {
  background-color: var(--light);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.project-image {
  height: 240px;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-image img {
  transform: scale(1.05);
}
.project-content {
  padding: 25px;
}
.project-content h3 {
  margin-bottom: 10px;
}
.project-content p {
  margin-bottom: 20px;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-category {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
}
.project-link {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
/* Services Section */
.services-section {
  background-color: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 768px) {
  .service-card {
    flex-direction: row;
    align-items: flex-start;
  }
}
.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(43, 76, 126, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.service-content {
  flex-grow: 1;
}
.service-features {
  list-style: none;
  margin-left: 0;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.service-features i {
  color: var(--accent);
  margin-top: 4px;
}
/* Process Section */
.process-section {
  background-color: var(--white);
}
.process-container {
  position: relative;
}
.process-desktop {
  display: none;
}
@media (min-width: 768px) {
  .process-desktop {
    display: block;
    position: relative;
    padding: 30px 0;
  }
  
  
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
  }
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.process-mobile {
  display: block;
}
@media (min-width: 768px) {
  .process-mobile {
    display: none;
  }
}
.process-step-mobile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.step-number-mobile {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h3 {
  margin-bottom: 10px;
}
/* CTA Section */
.cta-section {
  background-color: var(--primary);
  color: var(--white);
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.125rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
/* Gallery Section */
.gallery-section {
  background-color: var(--light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-col h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.25rem;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 68, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color 0.3s ease;
}
.social-links a:hover {
  background-color: var(--primary-dark);
  color: var(--accent);
}
.footer-col ul {
  list-style: none;
  margin-left: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}
.footer-col ul a:hover {
  color: var(--white);
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.contact-info i {
  margin-top: 5px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}
/* Page Hero Section */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--white);
}
.page-hero .hero-content {
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 15px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}
/* Detailed Services Styles */
.services-overview-section {
  background-color: var(--white);
}
.detailed-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.detailed-service-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
  align-items: flex-start;
}

.detailed-service-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px) scale(1.02);
}

.service-sidebar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.service-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 60%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(43,76,126,0.12);
  transition: background 0.3s, box-shadow 0.3s;
}

.detailed-service-item:hover .service-icon-large {
  background: linear-gradient(135deg, var(--accent) 60%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(43,76,126,0.18);
}

.service-sidebar h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-content-detailed p {
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 1.05rem;
}

.service-features-box {
  background: rgba(43,76,126,0.04);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 10px;
}

.service-features-box h4 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

.service-features-list i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Classic design for software/tools section */
.software-tools-section {
  background: #f7f9fb;
  padding: 70px 0 60px 0;
}

.software-tools-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.tool-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 28px 28px 28px;
  text-align: center;
  width: 320px;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.03);
}

.tool-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 60%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(43,76,126,0.12);
  transition: background 0.3s, box-shadow 0.3s;
}

.tool-card:hover .tool-icon {
  background: linear-gradient(135deg, var(--accent) 60%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(43,76,126,0.18);
}

.tool-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 600;
}

.tool-card p {
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.92;
}

/* Classic About Page Design */

/* Values Section */
.values-section {
  background: #f7f9fb;
  padding: 70px 0 60px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 60%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 auto 18px auto;
  box-shadow: 0 4px 16px rgba(43,76,126,0.12);
  transition: background 0.3s, box-shadow 0.3s;
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--accent) 60%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(43,76,126,0.18);
}
.value-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
}
.value-card p {
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  background: #fff;
  padding: 70px 0 60px 0;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}
.team-member {
  background: #f7f9fb;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 22px 22px 22px;
  text-align: center;
  width: 300px;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-member:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.03);
}
.member-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--primary);
}
.member-info h3 {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}
.member-role {
  color: var(--accent);
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.member-description {
  color: var(--secondary);
  font-size: 0.98rem;
  opacity: 0.92;
}

/* Classic Design for Project Categories */
.project-categories-section {
  background: #f7f9fb;
  padding: 60px 0 40px 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 36px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 60%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(43,76,126,0.12);
  transition: background 0.3s, box-shadow 0.3s;
}
.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--accent) 60%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(43,76,126,0.18);
}
.category-card h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}
.category-card p {
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.92;
}

/* Classic Design for Featured Projects */
.featured-projects-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.featured-projects {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 36px;
}
.featured-project {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.featured-project:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.02);
}
.project-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7f9fb;
  padding: 18px 18px 0 18px;
}
.main-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(43,76,126,0.08);
}
.thumbnail-images {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}
.thumbnail-images img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 6px rgba(43,76,126,0.06);
  transition: transform 0.3s;
}
.thumbnail-images img:hover {
  transform: scale(1.07);
}
.project-details {
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
}
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.project-header h3 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.project-category {
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 4px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 12px;
}
.project-description p {
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.92;
  margin-bottom: 14px;
}
.project-description h4 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 18px 0 10px 0;
}
.project-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.project-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 7px;
}
.project-highlights i {
  color: var(--accent);
  font-size: 1.1rem;
}
.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 10px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}
.spec-label {
  color: var(--secondary);
  font-size: 0.97rem;
  opacity: 0.8;
}
.spec-value {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Section Header Classic Style */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-title {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0 auto 16px auto;
  border-radius: 2px;
}
.section-description {
  color: var(--secondary);
  font-size: 1.08rem;
  opacity: 0.92;
}

/* Responsive */
@media (min-width: 700px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-grid {
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .team-member {
    width: 100%;
    max-width: 350px;
  }
}
@media (min-width: 700px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }
  .featured-projects {
    gap: 56px;
  }
  .featured-project {
    flex-direction: row;
    min-height: 340px;
  }
  .project-images {
    flex: 1 1 45%;
    padding: 28px 18px 28px 28px;
    justify-content: center;
  }
  .project-details {
    flex: 1 1 55%;
    padding: 38px 38px 28px 18px;
  }
}
@media (max-width: 700px) {
  .category-card,
  .featured-project {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
  .main-image img {
    height: 180px;
  }
  .thumbnail-images img {
    width: 70px;
    height: 48px;
  }
}

/* Classic Design for Customer Service Page */

/* Service Commitment Section */
.service-commitment-section {
  background: #f7f9fb;
  padding: 60px 0 40px 0;
}
.commitment-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  margin-top: 36px;
}
.commitment-content {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 28px;
  max-width: 600px;
  font-size: 1.08rem;
}
.commitment-image img {
  width: 340px;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(43,76,126,0.10);
}
.testimonial {
margin: 24px 0 0 0;
  padding: 18px 22px;
  background: linear-gradient(90deg, #F4F4F4 70%, #ffffff 100%); /* Changed to fixed colors for consistency */
  color: #000000;
  border-radius: var(--radius-sm);
  font-style: italic;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px rgba(43, 76, 126, 0.10);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(30, 40, 60, 0.18);
}

/* Responsive for Commitment Section */
@media (min-width: 900px) {
  .commitment-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
  }
  .commitment-content, .commitment-image {
    flex: 1 1 50%;
  }
  .commitment-content {
    max-width: none;
  }
}

/* Service Standards Section */
.service-standards-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 36px;
}
.standard-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.standard-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.standard-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 60%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 14px auto;
  box-shadow: 0 4px 16px rgba(43,76,126,0.12);
  transition: background 0.3s, box-shadow 0.3s;
}
.standard-card:hover .standard-icon {
  background: linear-gradient(135deg, var(--accent) 60%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.standard-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}
.standard-card p {
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.92;
}

/* Responsive for Standards */
@media (min-width: 900px) {
  .standards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* Service Process Timeline */
.service-process-section {
  background: #f7f9fb;
  padding: 60px 0 40px 0;
}
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px 22px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.timeline-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.01);
}
.timeline-marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 60%, var(--accent) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(43,76,126,0.10);
  flex-shrink: 0;
}
.timeline-content h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 600;
}
.timeline-content p {
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.92;
}

/* FAQs Section */
.faqs-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.faqs-container {
  max-width: 900px;
  margin: 36px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.faq-item.active {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.01);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  background: #f7f9fb;
  transition: background 0.3s;
}
.faq-item.active .faq-question {
  background: linear-gradient(90deg, #ffffff 70%, #f0f2f5 100%);
  color: var(--primary);
}
.faq-toggle i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.faq-answer {
  padding: 0 24px 18px 24px;
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.92;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Section Header Classic Style */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-title {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2B4C7E 70%, #1FD3BF 100%); /* Changed to fixed colors for consistency */
  margin: 0 auto 16px auto;
  border-radius: 2px;
}
.section-description {
  color: var(--secondary);
  font-size: 1.08rem;
  opacity: 0.92;
}

/* Responsive for Mobile */
@media (max-width: 900px) {
  .commitment-grid {
    flex-direction: column;
    gap: 32px;
  }
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-timeline {
    gap: 24px;
  }
  .faq-item {
    font-size: 1rem;
  }
}