/* updated services-overview.css with animations and mobile menu */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styles */
.sticky-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 16px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* Desktop Navigation */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  transition: 0.2s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1a4a91;
  border-bottom: 2px solid #1a4a91;
  padding-bottom: 4px;
}

.call-btn {
  background: #d45d2c;
  color: white !important;
  padding: 12px 22px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(212, 93, 44, 0.2);
}

.call-btn:hover {
  background: #b74a1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 93, 44, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a4a91;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-only {
  display: none;
}

/* Page Header */
.page-header {
  padding: 60px 0 30px;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.page-header h1:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d45d2c;
  border-radius: 2px;
}

.page-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Services Grid Full */
.services-grid-full {
  padding: 60px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

.card-content {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  padding: 30px 25px;
  width: 100%;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .card-content {
  background: rgba(212, 93, 44, 0.85);
}

.service-icon {
  font-size: 2.5rem;
  color: #d45d2c;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: white;
  transform: scale(1.1);
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.card-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-link {
  color: #d45d2c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  background: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
}

.service-card:hover .service-link {
  background: #1a4a91;
  color: white;
  gap: 12px;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s ease;
}

.scroll-animate.left {
  transform: translateX(-50px);
}

.scroll-animate.right {
  transform: translateX(50px);
}

.scroll-animate.fade-up {
  transform: translateY(50px);
}

.scroll-animate.fade-down {
  transform: translateY(-50px);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* CTA Blue Section */
.cta-blue {
  background: linear-gradient(135deg, #f0f5ff 0%, #e6edfa 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #d0e0ff;
  border-bottom: 1px solid #d0e0ff;
}

.cta-blue h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 15px;
}

.cta-blue p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 35px;
}

.btn-primary {
  background: #d45d2c;
  color: white;
  padding: 16px 48px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #d45d2c;
  box-shadow: 0 4px 15px rgba(212, 93, 44, 0.2);
}

.btn-primary:hover {
  background: transparent;
  color: #d45d2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 93, 44, 0.3);
}

/* Footer */
footer {
  background: #0b1a33;
  color: #fff;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-description {
  color: #aaa;
  line-height: 1.6;
  margin-top: 15px;
}

footer h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
  border-left: 3px solid #d45d2c;
  padding-left: 15px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 12px;
}

footer a {
  color: #ddd;
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.95rem;
}

footer a:hover {
  color: #d45d2c;
  padding-left: 5px;
}

.accent-orange {
  color: #d45d2c;
  width: 24px;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid #203a5e;
  padding-top: 25px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-blue h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .desktop-only {
    display: none;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-menu a {
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
  }
  
  .mobile-only {
    display: block;
    margin-top: 20px;
  }
  
  .mobile-call-btn {
    background: #d45d2c;
    color: white !important;
    padding: 12px 20px;
    border-radius: 40px;
    text-align: center;
    font-weight: 600;
  }
  
  .page-header {
    padding: 40px 0 20px;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    min-height: 400px;
  }
  
  .card-content {
    padding: 25px 20px;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-blue {
    padding: 60px 0;
  }
  
  .cta-blue h2 {
    font-size: 1.8rem;
  }
  
  .cta-blue p {
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 14px 40px;
    font-size: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.6rem;
  }
  
  .service-card {
    min-height: 350px;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .service-icon {
    font-size: 2rem;
  }
  
  .cta-blue h2 {
    font-size: 1.5rem;
  }
}