  /* Hero Banner Button Row */
  .hero-btn-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
  }
  .hero-btn-row .cta-btn {
    margin: 0;
  }
  .hero-call-btn {
    background: #1a365d !important;
  }
  .hero-call-btn:hover {
    background: #223e6d !important;
  }
  /* Modern color palette and variables */
  :root {
    --primary: #1a365d;
    --accent: #f59e0b;
    --accent-gradient: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    --background: #f8fafc;
    --card-bg: #fff;
    --text-main: #1e293b;
    --text-light: #64748b;
    --shadow: 0 4px 18px rgba(30,64,175,0.13), 0 1.5px 6px 0 rgba(0,0,0,0.08);
    --radius: 14px;
    --transition: 0.18s cubic-bezier(.4,0,.2,1);
  }
.hero h1 .highlight-yellow {
  color: #f59e0b !important;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
.hero-content .cta-btn[href^="tel:"] {
  margin-top: 12px !important;
}
/* Floating Action Buttons: WhatsApp & Call */
.floating-action-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.new{
    font-style: Merriweather;
}
.fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(30,64,175,0.13), 0 1.5px 6px 0 rgba(0,0,0,0.08);
  background: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  outline: none;
  position: relative;
  overflow: hidden;
}
.fab-btn:active,
.fab-btn:focus,
.fab-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.18), 0 2px 8px 0 rgba(30, 64, 175, 0.10);
}

/* WhatsApp Button */
.fab-btn.fab-whatsapp {
  background: #25D366;
  animation: fab-pulse 1.5s infinite;
}
.fab-btn.fab-whatsapp i {
  color: #fff;
  font-size: 2rem;
}

@keyframes fab-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Call Button */
.fab-btn.fab-call {
  background: #1a365d;
}
.fab-btn.fab-call i {
  color: #fff;
  font-size: 2rem;
}

@media (max-width: 600px) {
  .floating-action-buttons {
    bottom: 18px;
    right: 18px;
    gap: 12px;
  }
  .fab-btn {
    width: 48px;
    height: 48px;
  }
  .fab-btn i {
    font-size: 1.5rem;
  }
}
/* Modern Full-Width Hero Banner (Strict Center, Overlay, No Columns) */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('banner/banner.jfif') center/cover no-repeat;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  margin: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: 'Merriweather', sans-serif !important;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-family: 'Poppins', sans-serif !important;
  margin: 15px 0;
  font-size: 18px;
}

.btn, .hero-content .cta-btn {
  background: #f59e0b;
  padding: 12px 25px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 10px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover, .hero-content .cta-btn:hover {
  background: #d97706;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.08rem;
  }
  .btn, .hero-content .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
    padding: 0 0.5rem;
  }
  .hero-content {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 0.98rem;
  }
}
/* Strict Full-Width Hero Banner (No Columns) */
.hero {
  width: 100vw;
  height: 100vh;
  min-height: 400px;
  background: url('banner/banner.jfif') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  color: #fff;
  font-family: 'Merriweather', Merriweather !important;
}

.hero-content h1 {
  font-family: 'Merriweather', Merriweather !important;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  color: #fff;
}

.hero-content .cta-btn {
  background: #f59e0b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(245,158,11,0.13);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-content .cta-btn:hover {
  background: #d97706;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(245,158,11,0.22);
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.08rem;
  }
  .hero-content .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 400px) {
  .hero {
    min-height: 60vh;
    padding: 0 0.5rem;
  }
  .hero-content {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 0.98rem;
  }
}
/* Modern Homepage Hero Banner */
.hero {
  width: 100vw;
  min-height: 80vh;
  background: url('banner/banner.jfif') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 700px;

  color: #fff;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: hero-fade-in 1.2s ease 0.2s forwards;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  color: #fff;
}

.hero-content .cta-btn {
  background: #f59e0b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(245,158,11,0.13);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-content .cta-btn:hover {
  background: #d97706;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(245,158,11,0.22);
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.08rem;
  }
  .hero-content .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 60vh;
    padding: 0 0.5rem;
  }
  .hero-content {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 0.98rem;
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Always show phone and email in white */
.footer-contact-item a,
.footer-company-name a,
a[href^="tel:"],
a[href^="mailto:"] {
  color: #fff !important;
}
/* Home Page Modern Services Images */
.modern-service-img {
  width: 100%;
  max-width: 260px;
  height: 150px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,64,175,0.08);
}
/* Modern Services Section Styles */
.modern-services-section {
  background: #f8fafc;
  padding: 60px 0 40px 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.modern-services-heading {
  text-align: center;
  color: #1a365d;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}
.modern-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}
.modern-service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(30, 64, 175, 0.08), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  padding: 28px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.modern-service-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 28px 0 rgba(245, 158, 11, 0.18), 0 2px 8px 0 rgba(30, 64, 175, 0.10);
  border: 1.5px solid #f59e0b;
}
.modern-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.modern-service-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}
.modern-service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.modern-service-card p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .modern-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
  }
  .modern-service-card {
    min-height: 0;
    padding: 24px 16px 22px 16px;
  }
}
@media (max-width: 600px) {
  .modern-services-section {
    padding: 38px 0 24px 0;
  }
  .modern-services-heading {
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
  }
  .modern-services-grid {
    padding: 0 6px;
    gap: 1.1rem;
  }
  .modern-service-card {
    padding: 16px 6px 14px 6px;
    border-radius: 10px;
  }
  .modern-service-icon svg {
    width: 44px;
    height: 44px;
  }
  .modern-service-card h3 {
    font-size: 1.08rem;
  }
  .modern-service-card p {
    font-size: 0.98rem;
  }
}
/* Modern Footer Styles */
.modern-footer {
  background: #1a365d;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
  padding: 40px 0 0 0;
  margin-top: 2rem;
  border-top: 1.5px solid #e5e7eb;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}
.footer-company-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.footer-address, .footer-contact-item {
  font-size: 1rem;
  margin-bottom: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  margin-bottom: 2px;
}
.footer-links a:hover {
  color: #f59e0b;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.2s, transform 0.2s;
}
.footer-social-icon:hover {
  background: #f59e0b;
  transform: scale(1.08);
}
.footer-bottom {
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1rem;
  color: #e5e7eb;
  background: transparent;
  border-top: 1px solid #e5e7eb;
  margin-top: 0;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }
  .footer-col {
    min-width: 0;
  }
}
/*
  style.css - Fastway International Courier Services
  Comprehensive, responsive, and SEO-optimized stylesheet
  Color scheme: Deep Blue #1a365d, Orange/Gold #f59e0b, White, Light Gray
  Font: Poppins (Google Fonts)
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1a365d;
  --accent: #f59e0b;
  --white: #fff;
  --gray: #f4f6fa;
  --dark: #111827;
}

/* Home Page Hero Banner */
.hero {
  background: url('banner/banner.jfif') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(26,54,93,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: 'Poppins', Arial, sans-serif;
}

.hero-content a.cta-btn {
  display: inline-block;
  text-align: center;
  font-family: 'Merriweather', Arial, sans-serif;
}




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
  background: var(--background);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  transition: background 0.3s, color 0.3s;
}

section, .about-section, .services-list, .contact-section, .team-section, .stats-section, .achievements-section {
  padding: 56px 0 40px 0;
  margin-bottom: 0;
}

main {
  background: var(--background);
}
}

/* Global font override for all text */
h1, h2, h3, h4, h5, h6,
p, a, button, .cta-btn, .btn, .nav-links a, .footer-links a, .footer-company-name, .footer-contact-item, .footer-address, .hero-content, .hero-content * {
  font-family: 'Poppins', sans-serif !important;
}

/* Typography weights */
h1, .hero h1, .hero-content h1 {
  font-weight: 700 !important;
}
p, .hero p, .hero-content p {
  font-weight: 400 !important;
}
button, .cta-btn, .btn, .nav-links a {
  font-weight: 500 !important;
}

header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  margin-right: 0.75rem;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.cta-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(245,158,11,0.08);
  margin-left: 2rem;
}

.cta-btn:hover {
  background: #d97706;
  box-shadow: 0 4px 16px rgba(245,158,11,0.15);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--primary);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .navbar {
    padding: 1rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100vw;
    background: var(--white);
    flex-direction: column;
    width: 220px;
    height: calc(100vh - 70px);
    box-shadow: var(--shadow);
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    transition: right 0.3s;
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 1rem;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}

.hero {
  background: url('banner/banner.jfif') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(26,54,93,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  padding: 3rem 2rem;
}

  .hero-content h1 {
    font-size: 2.2rem;
  }
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.search-track {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 0.5rem 2.2rem 0.5rem;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100vw;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.search-track input[type="text"] {
  padding: 0.8rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 1rem;
  width: 100%;
  max-width: 350px;
}

.search-track button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26,54,93,0.08);
  margin-top: 18px;
}

.search-track button:hover {
  background: var(--accent);
}

.services-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem 1.7rem 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-height: 2fr;
  box-shadow: 0 8px 32px rgba(26,54,93,0.12);
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card img {
  height: 48px;
  margin-bottom: 0.7rem;
}

.why-choose {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
  justify-content: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.why-card:hover {
  box-shadow: 0 8px 32px rgba(26,54,93,0.12);
  transform: translateY(-6px) scale(1.02);
}

.why-card img {
  height: 40px;
  margin-bottom: 0.75rem;
}

.testimonials {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 3.5rem 2.2rem 3.5rem;
  margin-bottom: 2.2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1100px) {
  .testimonials {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 98vw;
  }
}
}

.testimonial {
  display: block;
  margin-bottom: 1.5rem;
}
.testimonial-stars {
  margin-bottom: 0.5rem;
  text-align: left;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial img {
  border-radius: 50%;
  height: 56px;
  width: 56px;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-content {
  flex: 1;
}

.cta-section {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 3.5rem 2.2rem 3.5rem;
  text-align: center;
  margin-bottom: 2.2rem;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1100px) {
  .cta-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 98vw;
  }
}
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section .cta-btn {
  background: var(--accent);
  color: var(--white);
  margin-top: 1rem;
}

/* About Page */
.about-section, .team-section, .stats-section, .achievements-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.stat {
  flex: 1 1 180px;
  text-align: center;
  margin-bottom: 1rem;
}

.stat h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Services Page */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-detail {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 370px;
}

.service-detail:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(26,54,93,0.12);
}

.service-detail img {
  width: 100%;
  max-width: 220px;
  height: 140px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,64,175,0.08);
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Page */
.contact-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1 1 260px;
}

.contact-form {
  flex: 2 1 340px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26,54,93,0.08);
}

.contact-form button:hover {
  background: var(--accent);
}

.map-embed {
  width: 100%;
  min-height: 220px;
  border: none;
  border-radius: var(--radius);
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 1rem 0.5rem 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  height: 54px;
  width: auto;
  margin-right: 0.75rem;
}

.footer-links, .footer-contact, .footer-social {
  flex: 1 1 180px;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social a {
  color: var(--white);
  margin-right: 1rem;
  font-size: 1.3rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

.copyright {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #e5e7eb;
  padding-bottom: 0.5rem;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  background: var(--accent);
  color: var(--white);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(245,158,11,0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1201;
}

.floating-btn:hover {
  background: #d97706;
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.22);
}
/* Icon inside floating button */

.floating-btn img {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(26,54,93,0.08);
}

.floating-btn .tooltip {
  position: absolute;
  right: 110%;
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, right 0.2s;
  white-space: nowrap;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  right: 120%;
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content {
    padding: 2rem 1rem;
  }
  .services-overview, .services-list {
    grid-template-columns: 1fr;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .service-card {
    max-width: 100%;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    min-height: 0;
  }
  .why-choose {
    flex-direction: column;
  }
  .footer-content {
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 0.2rem;
  }
  .contact-section {
    flex-direction: column;
  }
}
