/* Workday Website Replica - CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

:root {
  --workday-blue: #004d99;
  --workday-dark-blue: #003366;
  --workday-orange: #ff6b35;
  --workday-gray: #f5f5f5;
  --workday-dark-gray: #333;
  --workday-text: #1a1a1a;
  --workday-light-text: #1a1a1a;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--workday-text);
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Announcement Strip */
.announcement-strip {
  background: linear-gradient(90deg, #FF851B 0%, #FFB866 25%, #FFF1CC 50%, #C8EACD 75%, #2AA5E6 100%);
  color: #333;
  padding: 25px 0;
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 999;
  font-size: 18px;
}

.strip-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: left;
  padding-left: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement-strip a {
  color: #333;
  text-decoration: underline;
  font-weight: 600;
}

.announcement-strip a:hover {
  text-decoration: none;
  color: #FF851B;
}

.close-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #FF851B;
}



.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 70px;
  width: 100%;
  box-sizing: border-box;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--workday-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 56px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--workday-light-text);
  font-size: 18px;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--workday-blue);
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--workday-text);
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s;
  font-size: inherit;
}

.nav-link:hover {
  color: var(--workday-blue);
}

.nav-cta {
  background: var(--button-color, var(--workday-blue));
  color: var(--button-text-color, white);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--button-hover-color, var(--workday-dark-blue));
}

/* Dropdown Menu - Click-based for all screen sizes */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--workday-text);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--workday-blue);
}

.dropdown-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.dropdown-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-link i {
  font-size: 12px;
  margin-left: 5px;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  padding: 175px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--workday-text);
}

.hero-content p {
  font-size: 20px;
  color: var(--workday-light-text);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--workday-blue);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--workday-dark-blue);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--workday-blue);
  padding: 16px 32px;
  border: 2px solid var(--workday-blue);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--workday-blue);
  color: white;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Specialization Section */
.specialization-section {
  padding: 100px 0;
  background: white;
}

.section-header .section-divider {
  margin: 20px 0 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.section-header .divider-line {
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #2AA5E6 0%, #5BB3E8 30%, #8CC5EA 60%, #FFCC99 85%, #FFD9B3 100%);
  border-radius: 2px;
}

.section-header .divider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.section-header .divider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.section-header .divider-dots .dot:nth-child(1) { background: #FFE6CC; }
.section-header .divider-dots .dot:nth-child(2) { background: #FFF0E6; }
.section-header .divider-dots .dot:nth-child(3) { background: #FFF5F0; }
.section-header .divider-dots .dot:nth-child(4) { background: #FFF8F5; }
.section-header .divider-dots .dot:nth-child(5) { background: #FFFBFA; }

.specialization-container {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  padding: 5px 0;
}

.specialization-grid {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
  width: 100%;
}

.spec-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s ease;
  flex: 0 0 calc(33.333% - 27px);
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  border: 1px solid #4da6ff;
  box-shadow: 0 8px 24px rgba(0, 115, 230, 0.12);
  transform: translateY(-4px);
}

.spec-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
}

.spec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.spec-card:hover .spec-image img {
  transform: scale(1.05);
}

.spec-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--workday-text);
  line-height: 1.3;
}

.spec-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--workday-light-text);
  margin-bottom: 24px;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  flex: 1;
}

.spec-link {
  color: var(--workday-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.spec-link:hover {
  color: var(--workday-dark-blue);
}

.spec-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.spec-card:hover .spec-link i {
  transform: translateX(4px);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: var(--workday-blue);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--workday-dark-blue);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

.carousel-btn:disabled:hover {
  transform: none;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: white;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  box-sizing: border-box;
}

.services-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  border-bottom: 2px solid #e5e5e5;
  position: relative;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--workday-light-text);
  padding: 12px 0 14px 0;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  position: relative;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--workday-blue);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--workday-blue);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 24px 24px 16px;
  color: var(--workday-text);
  font-family: 'Poppins', sans-serif;
}

.service-card p {
  color: var(--workday-light-text);
  margin: 0 24px 24px;
  line-height: 1.6;
  font-size: 16px;
  flex: 1;
}

.service-card .spec-link {
  margin: 0 24px 24px;
  margin-top: auto;
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background: var(--workday-gray);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.solution-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-4px);
}

.solution-image {
  height: 200px;
  background: linear-gradient(135deg, var(--workday-blue), var(--workday-dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-image i {
  font-size: 48px;
  color: white;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.solution-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-content p {
  flex: 1;
}

.blog-date {
  color: var(--workday-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.solution-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--workday-text);
}

.solution-content p {
  color: var(--workday-light-text);
  margin-bottom: 20px;
}

.blog-cta {
  text-align: center;
  margin-top: 50px;
}

.view-all-blogs-btn {
  background: var(--workday-blue);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 77, 153, 0.3);
}

.view-all-blogs-btn:hover {
  background: var(--workday-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 77, 153, 0.4);
}

.view-all-blogs-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.view-all-blogs-btn:hover i {
  transform: translateX(4px);
}

/* Resources Section */
.resources {
  padding: 100px 0;
  background: white;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.resource-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-4px);
}

.resource-image {
  height: 180px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-content {
  padding: 24px;
  background: white;
}

.resource-tag {
  background: var(--workday-blue);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.resource-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--workday-text);
}

.resource-content p {
  color: var(--workday-light-text);
  font-size: 14px;
}

/* Company Section */
.company {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
  position: relative;
}

.company::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 77, 153, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  pointer-events: none;
}

.company-slogan {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.company-slogan blockquote {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: white;
  margin: 0 auto 20px;
  max-width: 800px;
  font-style: italic;
  position: relative;
}

.company-slogan .fa-quote-left,
.company-slogan .fa-quote-right {
  color: var(--workday-orange);
  font-size: 20px;
  opacity: 0.8;
}

.company-slogan .fa-quote-left {
  margin-right: 10px;
}

.company-slogan .fa-quote-right {
  margin-left: 10px;
}

.company-slogan cite {
  font-size: 16px;
  color: var(--workday-orange);
  font-weight: 600;
  font-style: normal;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.company-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.company-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: 
    linear-gradient(135deg, rgba(255, 107, 53, 0.7) 0%, rgba(74, 144, 226, 0.7) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&h=400&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  position: relative;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

.stats-row .stat {
  text-align: center;
  flex: 1;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: var(--workday-dark-gray);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  padding: 2px 0;
}

.footer-section a:hover {
  color: var(--workday-orange);
  text-decoration: none;
}

.footer-section a:visited {
  color: #ccc;
}

.footer-section a:active {
  color: var(--workday-orange);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 30px;
  text-align: center;
  color: #999;
}

.loading-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
}

/* Desktop - Hide hamburger menu */
.mobile-menu-toggle {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .announcement-strip {
    padding: 10px 0;
    font-size: 12px;
    top: 60px;
  }
  
  .strip-container {
    padding: 0 8px;
    padding-left: 8px;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
  }
  
  .nav-container {
    padding: 0 8px;
    position: relative;
    height: 60px;
    max-width: 100%;
  }
  
  .hero-container {
    padding: 0 8px;
  }
  
  .container {
    padding: 0 8px;
  }
  
  .nav-left {
    gap: 12px;
    flex: 1;
    min-width: 0;
  }
  
  .nav-right {
    gap: 8px;
    flex-shrink: 0;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Product page cards responsive */
  .service-card h3 {
    font-size: 18px;
  }
  
  .service-card p {
    font-size: 14px;
  }
  
  .spec-card h3 {
    font-size: 18px;
  }
  
  .spec-card p {
    font-size: 14px;
  }
  
  .company-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .company-text h2 {
    font-size: 28px;
  }
  
  .company-slogan blockquote {
    font-size: 20px;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Hide desktop navigation items on mobile */
  .nav-menu {
    display: none;
  }
  
  .desktop-social,
  .desktop-cta {
    display: none;
  }
  
  /* Mobile Menu Styles */
  .mobile-menu-toggle {
    display: block !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
  }
  
  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000000;
    margin-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    border-radius: 2px;
    box-shadow: none;
  }
  
  .hamburger span:last-child {
    margin-bottom: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #000000;
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #000000;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    backdrop-filter: blur(10px);
  }
  
  .nav-menu.mobile-open {
    transform: translateX(0);
  }
  
  .nav-item {
    width: 100%;
    margin-bottom: 2px;
  }
  
  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    background: #f0f8ff;
    border: none;
    transition: all 0.3s ease;
    margin-bottom: 1px;
    color: #2c3e50;
  }
  
  .nav-link::after {
    content: '→';
    font-size: 14px;
    color: #7c8ba1;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background: #f5f5f5;
    color: var(--workday-blue);
    transform: none;
    box-shadow: none;
  }
  
  .nav-link:hover::after {
    color: var(--workday-blue);
    transform: none;
  }
  
  .dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 12px 20px !important;
    border-radius: 12px;
    background: #f0f8ff;
    border: none;
    transition: all 0.3s ease;
    margin-bottom: 1px;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
  }
  
  .dropdown-toggle::after {
    content: none;
  }
  
  .dropdown-toggle:hover {
    background: #f5f5f5;
    color: var(--workday-blue);
    transform: none;
    box-shadow: none;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    margin: 2px 0 4px 0;
    border-radius: 12px;
    padding: 6px;
    width: 100%;
    flex-direction: column;
    display: none;
    border: none;
  }
  
  .dropdown-menu.show {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin-bottom: 1px;
    transition: all 0.3s ease;
    border: none;
    color: #495057;
  }
  
  .dropdown-menu a::after {
    content: '→';
    font-size: 12px;
    color: #adb5bd;
    transition: all 0.3s ease;
  }
  
  .dropdown-menu a:hover {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    transform: none;
  }
  
  .dropdown-menu a:hover::after {
    color: white;
    transform: none;
  }
  
  .dropdown-menu a:last-child {
    margin-bottom: 0;
  }
  
  .dropdown-submenu .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #e9ecef;
    margin-top: 10px;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    flex-direction: column;
  }
  
  .submenu-title {
    display: block;
    padding: 8px 0;
    color: var(--workday-blue);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }
  
  .mobile-social {
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid rgba(0, 77, 153, 0.1);
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
  }
  
  .mobile-social .social-icons {
    justify-content: center;
    margin-bottom: 20px;
    gap: 16px;
  }
  
  .mobile-social .social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--workday-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 77, 153, 0.3);
  }
  
  .mobile-social .social-link:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 77, 153, 0.4);
  }
  
  .mobile-cta {
    display: inline-block;
    width: auto;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--workday-orange), #e55a2b);
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
  }
  
  .mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  }
  
  .desktop-social,
  .desktop-cta {
    display: none;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-link {
    font-size: 16px;
  }
  
  .hero {
    padding: 90px 0 80px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-social {
    display: none;
  }
  
  .desktop-social,
  .desktop-cta {
    display: flex;
  }
  
  .desktop-cta {
    display: inline-block;
  }
  
  /* Desktop dropdown - click-based for all screens */
  .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  
  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Horizontal submenu for products/industries */
  .dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    flex-direction: column;
  }
}

/* iPad Air and Medium Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .announcement-strip {
    font-size: 15px;
    padding: 15px 0;
  }
  
  .nav-container {
    padding: 0 15px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .strip-container {
    padding: 0 15px;
    padding-left: 15px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .address-content {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .address-map {
    width: 100% !important;
    height: 200px !important;
  }
  
  .nav-left {
    gap: 10px;
    flex: 1;
    min-width: 0;
  }
  
  .nav-right {
    gap: 8px;
    flex-shrink: 0;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .tab-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .contact-cta-section {
    padding: 50px 0;
  }
  
  .contact-form-container {
    padding: 25px;
  }
  
  .address-card {
    padding: 18px;
  }
  
  .contact-container {
    padding: 0 15px;
  }
  
  /* Product page cards responsive */
  .service-card h3 {
    font-size: 22px;
  }
  
  .service-card p {
    font-size: 15px;
  }
  
  .spec-card h3 {
    font-size: 22px;
  }
  
  .spec-card p {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .announcement-strip {
    font-size: 16px;
    padding: 18px 0;
  }
  
  .nav-container {
    padding: 0 20px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .strip-container {
    padding: 0 20px;
    padding-left: 20px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .services-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tab-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .company-text h2 {
    font-size: 36px;
  }
  
  .company-slogan blockquote {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .footer {
    padding: 50px 0 25px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .contact-cta-section {
    padding: 55px 0;
  }
  
  .contact-container {
    padding: 0 20px;
  }
}

/* Enhanced Services/Products Page Responsiveness */
@media (max-width: 1200px) {
  .services-section {
    padding: 80px 0;
  }
  
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .service-card h3 {
    font-size: 22px;
  }
  
  .service-card p {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .services-tabs {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .tab-btn {
    padding: 10px 16px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .service-card h3 {
    font-size: 20px;
    margin: 20px 20px 12px;
  }
  
  .service-card p {
    font-size: 14px;
    margin: 0 20px 20px;
  }
  
  .service-card .spec-link {
    margin: 0 20px 20px;
  }
  
  .services-tabs {
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .tab-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 0;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-card h3 {
    font-size: 18px;
    margin: 16px 16px 10px;
  }
  
  .service-card p {
    font-size: 13px;
    margin: 0 16px 16px;
  }
  
  .service-card .spec-link {
    margin: 0 16px 16px;
    font-size: 14px;
  }
  
  .tab-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* Enhanced Home Page Responsiveness */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 48px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .specialization-grid {
    gap: 30px;
  }
  
  .spec-card {
    padding: 30px 24px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .carousel-nav {
    margin-top: 30px;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .specialization-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .spec-card {
    max-width: 100%;
    padding: 25px 20px;
  }
  
  .spec-card h3 {
    font-size: 20px;
  }
  
  .spec-card p {
    font-size: 14px;
  }
  
  .spec-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .spec-card {
    padding: 20px 16px;
  }
  
  .spec-image {
    height: 160px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
/* Enhanced Solutions/Blog Section Responsiveness */
@media (max-width: 1200px) {
  .solutions {
    padding: 80px 0;
  }
  
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 60px 0;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solution-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .solution-content {
    padding: 25px;
  }
  
  .solution-content h3 {
    font-size: 18px;
  }
  
  .solution-content p {
    font-size: 14px;
  }
  
  .blog-cta {
    margin-top: 40px;
  }
  
  .view-all-blogs-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .solutions {
    padding: 40px 0;
  }
  
  .solution-card {
    max-width: 100%;
  }
  
  .solution-image {
    height: 160px;
  }
  
  .solution-content {
    padding: 20px;
  }
  
  .solution-content h3 {
    font-size: 16px;
  }
  
  .solution-content p {
    font-size: 13px;
  }
  
  .view-all-blogs-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Enhanced Company Section Responsiveness */
@media (max-width: 1200px) {
  .company {
    padding: 80px 0;
  }
  
  .company-slogan {
    margin-bottom: 60px;
  }
  
  .company-slogan blockquote {
    font-size: 26px;
  }
  
  .company-text h2 {
    font-size: 38px;
  }
  
  .company-text p {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .company-content {
    gap: 40px;
  }
  
  .company-slogan blockquote {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .company {
    padding: 60px 0;
  }
  
  .company-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .company-text h2 {
    font-size: 28px;
  }
  
  .company-text p {
    font-size: 16px;
  }
  
  .company-slogan {
    margin-bottom: 50px;
  }
  
  .company-slogan blockquote {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .company {
    padding: 40px 0;
  }
  
  .company-text h2 {
    font-size: 24px;
  }
  
  .company-text p {
    font-size: 15px;
  }
  
  .company-slogan blockquote {
    font-size: 18px;
  }
  
  .company-slogan .fa-quote-left,
  .company-slogan .fa-quote-right {
    font-size: 16px;
  }
}
.contact-section {
  background: 
    linear-gradient(135deg, rgba(0, 77, 153, 0.8) 0%, rgba(0, 115, 230, 0.8) 50%, rgba(255, 179, 102, 0.8) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&h=400&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.contact-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.contact-image {
  flex: 0 0 300px;
}

.contact-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-text {
  flex: 1;
}

.contact-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.contact-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-btn {
  background: var(--workday-blue);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: var(--workday-dark-blue);
}

@media (max-width: 768px) {
  .contact-container {
    padding: 0 8px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .contact-image {
    flex: none;
  }
  
  .contact-text h2 {
    font-size: 24px;
  }
}
/* Contact Banner Styles */
.contact-banner {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    position: relative;
    margin-top: 70px;
}

.banner-overlay {
    display: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.banner-left {
    text-align: left;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

/* Contact Form Grid Responsive */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
    .contact-banner {
        height: 350px;
        margin-top: 70px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
        text-align: center;
        padding: 0px 20px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .contact-banner {
        height: 350px;
    }
    
    .banner-content {
        padding: 0 30px;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 300px;
        margin-top: 70px;
    }
    
    .banner-content {
        padding: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-banner {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #004d99 0%, #0066cc 50%, #ff6b35 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1200&h=800&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 153, 0.8);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-left {
    color: white;
}

.banner-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.banner-quote .fa-quote-left {
    font-size: 2rem;
    color: #ff6b35;
    margin-right: 10px;
}

.banner-quote .fa-quote-right {
    font-size: 2rem;
    color: #ff6b35;
    margin-left: 10px;
}

.banner-left cite {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
}

.banner-right {
    text-align: center;
    color: white;
}

.banner-right h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-right p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-icon i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 5px;
}

.tech-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.story-text h3 {
    font-size: 2rem;
    color: #004d99;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004d99, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: #004d99;
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004d99, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #004d99;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0px 20px;
    }
    
    .banner-quote {
        font-size: 1.2rem;
    }
    
    .banner-right h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-icons {
        gap: 20px;
    }
    
    .tech-icon i {
        font-size: 2rem;
    }
}

/* Contact CTA Section */
.contact-cta-section {
  background: 
    linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 26, 51, 0.95) 100%),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1200&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-header p {
  font-size: 16px;
  opacity: 0.9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-addresses {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.address-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.address-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--workday-orange);
}

.address-card h3 i {
  margin-right: 8px;
}

.address-card p {
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 14px;
}

.address-content {
  display: flex !important;
  gap: 16px !important;
  align-items: flex-start !important;
  flex-direction: row !important;
}

.address-text {
  flex: 1 !important;
}

.address-map {
  width: 250px !important;
  height: 150px !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0 !important;
}

.address-map iframe {
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.3s ease;
}

.address-map:hover iframe {
  filter: grayscale(0%) contrast(1.2);
}

.address-card p i {
  margin-right: 8px;
  color: var(--workday-orange);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form select {
  color: white;
}

.contact-form select option {
  background: var(--workday-dark-blue);
  color: white;
}

.submit-btn {
  background: var(--workday-orange);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 40px 0;
  }
  
  .contact-header h2 {
    font-size: 24px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .address-content {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .address-map {
    width: 100% !important;
    height: 200px !important;
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .address-card {
    padding: 16px;
  }
  
  .address-card h3 {
    font-size: 16px;
  }
  
  .address-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .announcement-strip {
    padding: 10px 0;
    font-size: 12px;
  }

  .nav-container {
    padding: 0 5px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .strip-container {
    padding: 0 5px;
    padding-left: 5px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .contact-cta-section {
    padding: 30px 0;
  }
  
  .contact-header h2 {
    font-size: 20px;
  }
  
  .contact-header p {
    font-size: 14px;
  }
  
  .address-card {
    padding: 12px;
  }
  
  .contact-form-container {
    padding: 16px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .submit-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
/* Product Page Styles */
.product-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-info {
  max-width: 600px;
}

.product-category {
  background: var(--workday-blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.product-info h1 {
  font-size: 48px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-tech-stack {
  margin-bottom: 40px;
}

.product-tech-stack h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: #e2e8f0;
  color: #4a5568;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

.product-actions {
  display: flex;
  gap: 16px;
}

.product-image {
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-features {
  padding: 80px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--workday-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--workday-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 24px;
  color: white;
}

.feature-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
}

.product-details {
  padding: 80px 0;
  background: #f8f9fa;
}

.details-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.details-content h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
}

.content-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .product-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .product-info h1 {
    font-size: 32px;
  }
  
  .product-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Testimonials Section Enhanced */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content .fa-quote-left {
  color: var(--workday-blue);
  font-size: 24px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--workday-text);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--workday-text);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 14px;
  color: var(--workday-blue);
  font-weight: 500;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .specialization-grid {
    gap: 30px;
  }
  
  .spec-card {
    padding: 30px 24px;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-content p {
    font-size: 15px;
  }
  
  .author-info h4 {
    font-size: 16px;
  }
  
  .author-info span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 0;
  }
  
  .testimonial-card {
    padding: 20px 16px;
  }
  
  .testimonial-content .fa-quote-left {
    font-size: 20px;
  }
  
  .testimonial-content p {
    font-size: 14px;
  }
}
/* Specializations Page Styles - Modern Card Design */
.specializations {
  padding: 80px 0;
  background: white !important;
  color: #333 !important;
}

.specializations-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.specialization-item {
  background: #f8f9fa !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  height: 450px;
  position: relative;
  gap: 20px;
}

.specialization-item:hover {
  transform: translateY(-8px);
}

.spec-image {
  flex: 0 0 45%;
  height: 450px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.spec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.specialization-item:hover .spec-image img {
  transform: scale(1.05);
}

.spec-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: white !important;
  color: #333 !important;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 450px;
  overflow: visible;
}

.spec-header {
  margin-bottom: 20px;
}

.spec-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #1a1a1a;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333 !important;
  margin-bottom: 12px;
  line-height: 1.2;
}

.spec-content > p {
  color: #666 !important;
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: 14px;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-tag {
  background: #e2e8f0;
  color: #4a5568;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.spec-tag:hover {
  background: #cbd5e0;
  transform: translateY(-2px);
}

.spec-sections {
  margin-bottom: 15px;
}

.spec-sections h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-sections h4:before {
  content: "⚡";
  font-size: 14px;
}

.sections-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.section-item {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

.section-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.section-item p {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.section-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-items li {
  color: #64748b;
  font-size: 12px;
  padding: 2px 0;
  position: relative;
  padding-left: 12px;
}

.section-items li:before {
  content: "•";
  color: #3b82f6;
  position: absolute;
  left: 0;
}

.spec-stats {
  display: flex;
  gap: 20px;
  color: #718096;
  font-size: 14px;
  margin-top: auto;
}

.spec-stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-stat i {
  color: #e67e22;
}

/* Section Header for Dark Background */
.specializations .section-header h2 {
  color: rgb(15, 1, 1);
}

.specializations .section-header p {
  color: #03070d;
}

.specializations .divider-line {
  background: #8096bc;
}

.specializations .dot {
  background: #e67e22;
}

/* Enhanced Specializations Responsiveness */
@media (max-width: 1200px) {
  .specializations {
    padding: 70px 0;
  }
  
  .specializations-list {
    gap: 25px;
  }
  
  .specialization-item {
    height: 400px;
  }
  
  .spec-image {
    height: 400px;
  }
  
  .spec-content {
    height: 400px;
    padding: 25px;
  }
}

@media (max-width: 1024px) {
  .specializations-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .specialization-item {
    background: white;
    flex-direction: column;
    height: auto;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .specialization-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  
  .spec-image {
    width: 100%;
    height: 200px;
    flex: none;
    border-radius: 20px 20px 0 0;
    box-shadow: none;
  }
  
  .spec-content {
    padding: 20px;
    height: auto;
    border-radius: 0 0 20px 20px;
    box-shadow: none;
  }
  
  .spec-content h3 {
    font-size: 20px;
  }
  
  .sections-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .specializations {
    padding: 50px 0;
  }
  
  .specializations-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .spec-image {
    height: 180px;
  }
  
  .spec-content {
    padding: 18px;
  }
  
  .spec-category {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 9px;
  }
  
  .spec-content h3 {
    font-size: 18px;
  }
  
  .spec-tags {
    gap: 6px;
  }
  
  .spec-tag {
    padding: 4px 8px;
    font-size: 11px;
  }
  
  .sections-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .section-item {
    padding: 8px;
  }
  
  .spec-stats {
    gap: 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .specializations {
    padding: 40px 0;
  }
  
  .spec-image {
    height: 160px;
  }
  
  .spec-content {
    padding: 15px;
  }
  
  .spec-content h3 {
    font-size: 16px;
  }
  
  .spec-content > p {
    font-size: 13px;
  }
  
  .spec-tag {
    padding: 3px 6px;
    font-size: 10px;
  }
}

/* Specialization Page Styles */
.specializations {
  padding: 80px 0;
  background: #ffffff;
}

.specializations .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  text-align:left;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 40px;
  text-align:left;

}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.divider-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 1px;
}

.divider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #3498db;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
.dot:nth-child(4) { animation-delay: 0.6s; }
.dot:nth-child(5) { animation-delay: 0.8s; }

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.specializations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(800px, 1fr));
  gap: 40px;
}

.specialization-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 450px;
}

.specialization-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
 
  opacity: 0;
  transition: opacity 0.3s ease;
}

.specialization-item:hover::before {
  opacity: 1;
}

.specialization-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.spec-image {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

.spec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.specialization-item:hover .spec-image img {
  transform: scale(1.05);
}

.spec-content {
  width: 50%;
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.spec-category {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}

.spec-header {
  margin-bottom: 20px;
}

.spec-header h3 {
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.spec-header p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.spec-tag {
  background: #f5f5f5;
  color: #555;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.spec-sections {
  margin-bottom: 20px;
  flex: 1;
}

.spec-sections h4 {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.sections-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.section-item h5 {
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.section-description {
 margin-left:20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-description p {
  color: #666;
  font-size: 0.7rem;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.section-item {
  background: #fafafa;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.2s ease;
  cursor: pointer;
}

.section-item:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.section-item h5 {
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.section-items {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}

.section-items li {
  color: #666;
  font-size: 0.65rem;
  margin-bottom: 2px;
  padding-left: 10px;
  position: relative;
  line-height: 1.2;
}

.section-items li::before {
  content: '•';
  color: #999;
  position: absolute;
  left: 0;
  font-size: 0.7rem;
}

.items-preview {
  margin-top: 6px;
}

.preview-text {
  color: #888;
  font-size: 0.65rem;
  font-style: italic;
}

.spec-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.spec-stats {
  display: flex;
  justify-content: center;
}

.stat-text {
  color: #888;
  font-size: 0.7rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .specializations .container {
    padding: 0 20px;
  }
  
  .specializations-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .specialization-item {
    flex-direction: column;
    height: auto;
  }
  
  .spec-image {
    width: 100%;
    height: 200px;
    border-radius: 16px 16px 0 0;
  }
  
  .spec-content {
    width: 100%;
    padding: 20px;
  }
  
  .spec-header h3 {
    font-size: 1.2rem;
  }
  
  .spec-header p {
    font-size: 0.85rem;
  }
  
  .spec-tag {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  
  .section-item h5 {
    font-size: 0.8rem;
  }
  
  .section-item p {
    font-size: 0.7rem;
  }
  
  .section-items li {
    font-size: 0.65rem;
  }
  
  .spec-stats {
    flex-direction: row;
    gap: 8px;
  }
  
  .spec-stat {
    padding: 6px 10px;
  }
  
  .spec-stat span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .specializations {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .spec-image {
    height: 150px;
  }
  
  .spec-content {
    padding: 15px;
  }
}