@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global section alignment */
section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
}


body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  text-align: center;
}
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 80px;
  box-sizing: border-box;
  transition: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Mobile Header - Always Fixed and Visible */
@media (max-width: 900px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #e53935;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease-out;
  }
  
  /* Ensure body content doesn't hide behind fixed header */
  body {
    padding-top: 80px;
  }
  
  /* Adjust scroll offset for fixed header */
  html {
    scroll-padding-top: 80px;
  }
  
  /* Animation for header appearance */
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Ensure header elements are always visible */
  .header-flex {
    position: relative;
    z-index: 1001;
  }
  
  /* Make logo and actions more prominent */
  .logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  }
  
  .header-actions {
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 0.2rem;
  }
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 80px;
  box-sizing: border-box;
}

.logo img {
  height: 70px;
  width: auto;
  border-left: 4px solid #e53935;
  padding-left: 12px;
  flex-shrink: 0;
}
.nav {
  display: flex;
  gap: 2.5rem;
}
.nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
  padding: 0.5rem 0;
}
.nav a:hover, .nav a:focus {
  color: #e53935;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn {
  display: inline-flex;       
  align-items: center;        
  justify-content: center;    
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
  min-height: 48px;
  box-sizing: border-box;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  text-decoration:none;
}
.upmenubtn{
 display: inline-flex;       
  align-items: center;        
  justify-content: center;    
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  min-height: 32px;
  box-sizing: border-box;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  text-decoration:none;
  width: 6rem;
}

.btn-log {
  background: #e53935;
  color: #fff;
}
.btn-reg {
  background:#1976d2 ;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e53935;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #e53935;
  border: 2px solid #e53935;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e53935;
  color: #fff;
}
.icon-user, .icon-menu {
  width:48px;
  height: 48px;
  display: inline-flex; 
  justify-content: center;
  align-items: center;
  background: #eee;
  border-radius: 50%;
  text-decoration: none;
  color: #666;
  transition: all 0.3s ease;
  border: 2px solid #222;
}
.icon-user:hover {
  background: #1976d2;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}
.icon-user::before {
  content: '\1F464';
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 24px;
}
.icon-menu::before {
  content: '\2630';
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 24px;
}

/* Hero animated ocean background and ship */
/* Update hero background to modern ocean blue gradient */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 6rem 0 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0d47a1 0%, #1976d2 40%, #4fc3f7 100%);
}
/* Smoother, ocean-matching hero animation */
.hero-anim-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-red-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d47a1 0%, #1976d2 40%, #4fc3f7 100%);
  z-index: 2;
  animation: heroBlueFadeOut 2.8s cubic-bezier(0.4,0,0.2,1) 0.7s forwards;
}
@keyframes heroBlueFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
/* Fix seamless looping and alignment of hero waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300vw;
  height: 38vh;
  min-height: 180px;
  max-height: 320px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.wave1, .wave2, .wave3 {
  width: 300vw;
}
.wave1 { animation: waveMove1 22s linear infinite; }
.wave2 { animation: waveMove2 18s linear infinite; }
.wave3 { animation: waveMove3 14s linear infinite; }
@keyframes waveMove1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33vw); }
}
@keyframes waveMove2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-66.66vw); }
}
@keyframes waveMove3 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100vw); }
}
/* Size up the cargo ship in the hero section */
.hero-ship {
  position: absolute;
  left: -400px;
  bottom: 13vh;
  width: 340px;
  height: 110px;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(34,34,34,0.18));
  animation: shipSail 40s cubic-bezier(0.4,0,0.2,1) infinite, shipBob 4s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes shipSail {
  0% { left: -400px; transform: translateY(0); }
  5% { left: -400px; transform: translateY(0); }
  95% { left: 100vw; transform: translateY(0); }
  100% { left: 100vw; transform: translateY(0); }
}
@keyframes shipBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 900px) {
  .hero-ship { width: 180px; height: 60px; bottom: 8vh; }
}
@media (max-width: 700px) {
  .hero-ship { width: 110px; height: 36px; bottom: 5vh; }
}
.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}
.hero h1, .hero p {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
/* Size up hero heading and subtext */
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  max-width: 900px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  opacity: 0.95;
}
@media (max-width: 700px) {
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 900px) {
  .hero-waves { height: 22vh; min-height: 90px; }
}
@media (max-width: 700px) {
  .hero { padding: 2rem 0 1rem 0; min-height: 60vh; }
  .hero h1 { font-size: 1.2rem; }
  .hero-anim-bg { min-height: 60vh; }
  .hero-waves { height: 14vh; min-height: 50px; }
  .hero-ship { width: 44px; height: 22px; bottom: 5vh; }
}

/* Hero cloud and airplane animation */
.hero-cloud {
  position: absolute;
  z-index: 3;
  filter: blur(0.5px) drop-shadow(0 2px 8px rgba(0,0,0,0.04));
  pointer-events: none;
}
.cloud1 { left: -100px; top: 5vh; animation: cloudMove1 48s linear infinite; }
.cloud2 { left: -120px; top: 10vh; animation: cloudMove2 62s linear infinite; }
.cloud3 { left: -80px; top: 15vh; animation: cloudMove3 38s linear infinite; }
.cloud4 { left: -90px; top: 8vh; animation: cloudMove4 54s linear infinite; }
.cloud5 { left: -60px; top: 18vh; animation: cloudMove5 44s linear infinite; }
@keyframes cloudMove1 { 0% { left: -100px; } 100% { left: 110vw; } }
@keyframes cloudMove2 { 0% { left: -120px; } 100% { left: 105vw; } }
@keyframes cloudMove3 { 0% { left: -80px; } 100% { left: 100vw; } }
@keyframes cloudMove4 { 0% { left: -90px; } 100% { left: 108vw; } }
@keyframes cloudMove5 { 0% { left: -60px; } 100% { left: 102vw; } }
.hero-plane {
  position: absolute;
  top: 3vh;
  right: -250px;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero-cloud { top: 2vh; }
  .cloud1 { width: 60px; height: 20px; }
  .cloud2 { width: 50px; height: 16px; }
  .cloud3 { width: 40px; height: 12px; }
  .cloud4 { width: 45px; height: 14px; }
  .cloud5 { width: 35px; height: 10px; }
  .hero-plane { width: 140px; height: 48px; }
}

/* Disable previously added moving background layer */
.shipping-animation{display:none!important;}

.card {
      z-index: 0;
      background-color: #ECEFF1;
      padding-bottom: 20px;
      margin-top: 90px;
      margin-bottom: 90px;
      border-radius: 10px;
    }

    .top {
      display: flex;
      padding-top: 40px;
      padding-left: 13% !important;
      padding-right: 13% !important;
    }

    #progressbar {
      margin-bottom: 30px;
      overflow: hidden;
      color: #455A64;
      padding-left: 0px;
      margin-top: 30px;
    }

    #progressbar li {
      list-style-type: none;
      font-size: 13px;
      width: 25%;
      float: left;
      position: relative;
      font-weight: 400;
    }

    #progressbar .step0:before {
      font-family: FontAwesome;
      content: "\f10c";
      color: #fff;
    }

    #progressbar li:before {
      width: 40px;
      height: 40px;
      line-height: 45px;
      display: block;
      font-size: 20px;
      background: #C5CAE9;
      border-radius: 50%;
      margin: auto;
      padding: 0px;
    }

    #progressbar li:after {
      content: '';
      width: 100%;
      height: 12px;
      background: #C5CAE9;
      position: absolute;
      left: 0;
      top: 16px;
      z-index: -1;
    }

    #progressbar li:last-child:after {
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px;
      position: absolute;
      left: -50%;
    }

    #progressbar li:nth-child(2):after,
    #progressbar li:nth-child(3):after {
      left: -50%;
    }

    #progressbar li:first-child:after {
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
      position: absolute;
      left: 50%;
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
      background: #651FFF;
    }

    #progressbar li.active:before {
      font-family: FontAwesome;
      content: "\f00c";
    }

    .icon {
      width: 60px;
      height: 60px;
      margin-right: 15px;
    }

    .icon-content {
      padding-bottom: 20px;
      display: flex;
      justify-content: space-between;
    }

/* Track Shipment */
.track-shipment {
  background: linear-gradient(135deg,#ffffff 0%,#f5f7fa 100%); /* subtle gradient */
  padding: 3rem 2rem; /* reduced padding to move section up */
  text-align: center;
  display:flex;                /* new */
  flex-direction:column;       /* new */
  justify-content:center;      /* vertically center */
  align-items:center;          /* horizontally center */
}
.track-shipment .container{    /* ensure container doesn't limit centering */
  width:100%;
  max-width:900px;
}
.track-shipment h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1976d2;
}
.track-shipment p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Professional Track Box Redesign */
.track-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,34,34,0.07);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
  border: 1.5px solid #f5c6cb;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Visually hidden utility for accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Track box form layout */
.track-box form {
  display: flex;
  flex: 1;
  gap: 1.2rem;
  align-items: center;
  width: 100%;
}
.track-box input[type="text"] {
  flex: 1 1 0;
  padding: 1rem 1.2rem 1rem 2.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafafa url('data:image/svg+xml;utf8,<svg fill="%23e53935" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.57 4.23l4.92 4.92a1 1 0 0 1-1.41 1.41l-4.92-4.92A6.5 6.5 0 1 1 9.5 3zm0 2A4.5 4.5 0 1 0 9.5 12a4.5 4.5 0 0 0 0-9z"/></svg>') no-repeat 0.8rem center;
  background-size: 1.2rem 1.2rem;
}
.track-box input[type="text"]:focus {
  border-color: #e53935;
  box-shadow: 0 0 0 2px rgba(229,57,53,0.10);
  outline: none;
  background-color: #fff;
}
.track-box .btn {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(229,57,53,0.08);
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.track-box .btn svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}
#trackingSpinner, #trackingResult, #trackingTimeline {
  margin-top: 1.2rem;
}
#trackingResult {
  font-size: 1.08rem;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
}
.tracking-timeline {
  margin-top: 1.2rem;
  border-left: 3px solid #e53935;
  padding-left: 1.2rem;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.timeline-dot {
  width: 16px;
  height: 16px;
  background: #e53935;
  border-radius: 50%;
  margin-top: 2px;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(229,57,53,0.10);
}
.timeline-content {
  flex: 1;
  background: #fafafa;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  box-shadow: 0 1px 4px rgba(34,34,34,0.04);
}
.timeline-date {
  font-size: 0.95rem;
  color: #e53935;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
/* Mobile-first responsive design for Tracking section - PERFECTED */
@media (max-width: 900px) {
  .track-shipment {
    padding: 2.5rem 1rem;
  }
  
  .track-shipment .container {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .track-shipment h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    padding: 0 0.5rem;
  }
  
  .track-shipment p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    line-height: 1.4;
  }
  
  .track-box {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.2rem;
    gap: 1rem;
    margin: 1rem 0.5rem 0 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(34,34,34,0.06);
  }
  
  .track-box form {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0;
    width: 100%;
  }
  
  .track-box input[type="text"] {
    font-size: 1rem;
    padding: 0.9rem 1rem 0.9rem 2.5rem;
    border-radius: 6px;
    border: 1.5px solid #e0e0e0;
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .track-box .btn {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .track-shipment {
    padding: 2rem 0.8rem;
  }
  
  .track-shipment .container {
    padding: 0 0.3rem;
  }
  
  .track-shipment h2 {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    padding: 0 0.3rem;
  }
  
  .track-shipment p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    padding: 0 0.3rem;
    line-height: 1.4;
  }
  
  .track-box {
    padding: 1.2rem 1rem;
    gap: 0.8rem;
    margin: 0.8rem 0.3rem 0 0.3rem;
    border-radius: 10px;
  }
  
  .track-box form {
    gap: 0.8rem;
  }
  
  .track-box input[type="text"] {
    font-size: 0.95rem;
    padding: 0.8rem 0.8rem 0.8rem 2.2rem;
    border-radius: 5px;
    min-height: 44px;
  }
  
  .track-box .btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    min-height: 44px;
  }
}

@media (max-width: 600px) {
  .track-shipment {
    padding: 1.5rem 0.5rem;
  }
  
  .track-shipment .container {
    padding: 0 0.2rem;
  }
  
  .track-shipment h2 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    padding: 0 0.2rem;
    line-height: 1.3;
  }
  
  .track-shipment p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0 0.2rem;
    line-height: 1.3;
  }
  
  .track-box {
    padding: 1rem 0.8rem;
    gap: 0.7rem;
    margin: 0.6rem 0.2rem 0 0.2rem;
    border-radius: 8px;
    box-shadow: 0 1px 15px rgba(34,34,34,0.04);
  }
  
  .track-box form {
    gap: 0.7rem;
  }
  
  .track-box input[type="text"] {
    font-size: 0.9rem;
    padding: 0.7rem 0.7rem 0.7rem 2rem;
    border-radius: 4px;
    min-height: 42px;
    border: 1px solid #e0e0e0;
  }
  
  .track-box .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    min-height: 42px;
  }
}

@media (max-width: 480px) {
  .track-shipment {
    padding: 1rem 0.3rem;
  }
  
  .track-shipment .container {
    padding: 0 0.1rem;
  }
  
  .track-shipment h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    padding: 0 0.1rem;
    line-height: 1.2;
  }
  
  .track-shipment p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    padding: 0 0.1rem;
    line-height: 1.3;
  }
  
  .track-box {
    padding: 0.8rem 0.6rem;
    gap: 0.6rem;
    margin: 0.5rem 0.1rem 0 0.1rem;
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(34,34,34,0.03);
  }
  
  .track-box form {
    gap: 0.6rem;
  }
  
  .track-box input[type="text"] {
    font-size: 0.85rem;
    padding: 0.6rem 0.6rem 0.6rem 1.8rem;
    border-radius: 3px;
    min-height: 40px;
  }
  
  .track-box .btn {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    border-radius: 3px;
    min-height: 40px;
  }
}

/* Why Choose */
.why-choose {
  background: #fff;
  padding: 3rem 0 2.5rem 0;
  text-align: center;
}
.why-choose h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1976d2;
}
/* Professional card design for Why Choose Jet Shipping features */
.features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 300px;
  min-width: 250px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(25, 118, 210, 0.05);
}
.feature:hover {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.14);
  transform: translateY(-4px) scale(1.02);
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd 60%, #bbdefb 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.07);
}
.feature-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}
.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 0.6rem;
}
.feature p {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .features {
    gap: 1.2rem;
  }
  .feature {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}
@media (max-width: 700px) {
  .features {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .feature {
    width: 100%;
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

/* Main Box Packages */
.main-packages {
  background: #fff;
  padding: 5rem 0 4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-packages h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1976d2;
}
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.package-box {
  width: 160px;
  height: 140px;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Services */
.services {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 25%, #42a5f5 75%, #64b5f6 100%);
  color: #fff;
  padding: 6rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Professional background pattern */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
  animation: professionalFloat 15s ease-in-out infinite;
}

@keyframes professionalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(0.5deg); }
  66% { transform: translateY(10px) rotate(-0.5deg); }
}

/* Professional grid lines overlay */
.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.services-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.services-info {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
}

.services-info h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  letter-spacing: -1px;
  position: relative;
}

.services-info h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  border-radius: 2px;
  animation: titleUnderline 4s ease-in-out infinite;
}

@keyframes titleUnderline {
  0%, 100% { width: 120px; }
  50% { width: 180px; }
}

.services-info p {
  margin-bottom: 3rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

/* Enhanced Service Slider */
.service-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  height: 400px;
  background: transparent;
  border-radius: 32px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.15),
    0 8px 32px rgba(25, 118, 210, 0.2);
  padding: 0 4rem;
  z-index: 2;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.service-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: subtleFloat 8s ease-in-out infinite;
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(0.5deg); }
}

.service-slider-btn {
  align-self: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  margin: 0 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.2),
    0 4px 12px rgba(25, 118, 210, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
  position: relative;
  overflow: hidden;
}

.service-slider-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.service-slider-btn:hover::before {
  left: 100%;
}

.service-slider-btn:hover, .service-slider-btn:focus {
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
  transform: scale(1.15) translateY(-2px);
  box-shadow: 
    0 12px 32px rgba(0,0,0,0.25),
    0 6px 16px rgba(25, 118, 210, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.service-slide {
  min-height: 320px;
  height: 320px;
  min-width: 500px;
  max-width: 100%;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 24px;
  padding: 0;
  opacity: 0;
  position: absolute;
  left: 0; right: 0;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(80px) scale(0.9) rotateY(5deg);
  perspective: 1000px;
}

.service-slide.active {
  display: flex;
  opacity: 1;
  position: relative;
  z-index: 2;
  transform: translateX(0) scale(1) rotateY(0deg);
}

.service-slide-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 28px;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  height: 320px;
  max-width: 520px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  backdrop-filter: blur(15px);
  transform-style: preserve-3d;
  box-shadow: 
    0 16px 48px rgba(0,0,0,0.15),
    0 8px 24px rgba(25, 118, 210, 0.1);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.service-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 50%, #fff 100%);
  border-radius: 28px 28px 0 0;
  animation: premiumShine 3s ease-in-out infinite;
}

@keyframes premiumShine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.service-slide-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 30px;
  z-index: -1;
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.service-slide-card:hover {
  transform: translateY(-8px) scale(1.03) rotateX(2deg);
  box-shadow: 
    0 24px 64px rgba(0,0,0,0.2),
    0 12px 32px rgba(25, 118, 210, 0.15);
}

.service-slide-icon {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.15),
    0 4px 12px rgba(25, 118, 210, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-slide-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.service-slide-icon:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(0,0,0,0.2),
    0 6px 16px rgba(25, 118, 210, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.service-slide-icon svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-slide-icon:hover svg {
  transform: scale(1.1) rotateY(5deg);
}

.service-slide-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -0.5px;
  line-height: 1.3;
  position: relative;
}

.service-slide-card h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  border-radius: 1px;
}

.service-slide-card p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  font-weight: 500;
  max-width: 400px;
}

.gift-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 300px;
}

.gift-feature {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.gift-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.gift-feature:hover::before {
  left: 100%;
}

.gift-feature:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  width: 100%;
}

.service-slider-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  outline: none;
  position: relative;
  overflow: hidden;
}

.service-slider-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-slider-dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.service-slider-dot.active::before {
  width: 6px;
  height: 6px;
  background: #1976d2;
}

.service-slider-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

/* Enhanced Service Features */
.service-features {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.service-feature.slide-in {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.service-feature.slide-in::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.service-feature.slide-in:hover::before {
  left: 100%;
}

.service-feature.slide-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-feature.slide-in:nth-child(1) { transition-delay: 0.1s; }
.service-feature.slide-in:nth-child(2) { transition-delay: 0.2s; }
.service-feature.slide-in:nth-child(3) { transition-delay: 0.3s; }
.service-feature.slide-in:nth-child(4) { transition-delay: 0.4s; }

.service-feature.slide-in:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Professional Service Actions */
.service-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-actions .btn {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.service-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.service-actions .btn:hover::before {
  left: 100%;
}

.service-actions .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.service-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.service-actions .btn-primary {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  color: #1976d2;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-actions .btn-primary:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Professional Responsive Design */
@media (max-width: 1200px) {
  .services-info h2 {
    font-size: 3rem;
  }
  .service-slider {
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  .services {
    padding: 5rem 0 4rem 0;
  }
  .services-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }
  .services-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  .service-slider {
    min-height: 360px;
    height: 360px;
    padding: 0 2rem;
    max-width: 600px;
  }
  .service-slider-btn {
    height: 56px;
    width: 56px;
    margin: 0 1rem;
    font-size: 1.6rem;
  }
  .service-slide {
    min-width: 0;
    height: 280px;
    min-height: 280px;
  }
  .service-slide-card h2 {
    font-size: 1.8rem;
  }
  .service-slide-card p {
    font-size: 1.1rem;
  }
  .service-actions {
    gap: 1rem;
  }
  .service-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .services {
    padding: 4rem 0 3rem 0;
  }
  .services-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .services-info p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .service-slider {
    min-height: 320px;
    height: 320px;
    padding: 0 1.5rem;
    max-width: 100%;
  }
  .service-slider-btn {
    height: 48px;
    width: 48px;
    margin: 0 0.5rem;
    font-size: 1.4rem;
  }
  .service-slide {
    height: 260px;
    min-height: 260px;
  }
  .service-slide-card h2 {
    font-size: 1.6rem;
  }
  .service-slide-card p {
    font-size: 1rem;
  }
  .service-features {
    gap: 1rem;
  }
  .service-feature.slide-in {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  .service-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .service-actions .btn {
    width: 100%;
    max-width: 300px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

.services-img {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.services-img svg {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  animation: servicesImgFloat 6s ease-in-out infinite;
}

@keyframes servicesImgFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 900px) {
  .services-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .services-info {
    text-align: center;
  }
  .services-img {
    order: -1;
  }
} 

/* About */
.about {
  background: #fff;
  padding: 2.5rem 0 5rem 0;
  text-align: center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about h2 span {
  color: #e53935;
}
.about p {
  margin-bottom: 0.7rem;
  color: #444;
}

/* Size up About section heading and text (override) */
.about h2 {
  font-size: 2.5rem !important;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: #1976d2;
}

/* About Content Layout */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-main {
  margin-bottom: 3rem;
}

.about-intro {
  font-size: 1.3rem !important;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1976d2;
}

.about-description {
  font-size: 1.1rem !important;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Features Grid */
.about-features {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #1976d2 #e3f2fd;
}

/* Custom scrollbar for webkit browsers */
.about-features::-webkit-scrollbar {
  height: 6px;
}

.about-features::-webkit-scrollbar-track {
  background: #e3f2fd;
  border-radius: 3px;
}

.about-features::-webkit-scrollbar-thumb {
  background: #1976d2;
  border-radius: 3px;
}

.about-features::-webkit-scrollbar-thumb:hover {
  background: #1565c0;
}

.about-feature {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 1.5rem 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(25, 118, 210, 0.1);
  flex: 1;
  min-width: 200px;
  max-width: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.about-feature:hover::before {
  left: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.15);
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
  .about-feature:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
  }
  
  .about-feature::before {
    display: none;
  }
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.about-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.3));
  transition: transform 0.3s ease;
}

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



.about-feature h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 0.8rem;
}

.about-feature p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1200px) {
  .about-features {
    gap: 0.8rem;
  }
  
  .about-feature {
    min-width: 180px;
    padding: 1.2rem 0.8rem;
  }
}

@media (max-width: 900px) {
  .about-features {
    gap: 0.6rem;
  }
  
  .about-feature {
    min-width: 160px;
    padding: 1rem 0.6rem;
  }
  
  .about-feature h3 {
    font-size: 1.1rem;
  }
  
  .about-feature p {
    font-size: 0.9rem;
  }
  
  .about-intro {
    font-size: 1.2rem !important;
  }
  
  .about-description {
    font-size: 1rem !important;
  }
}

/* Mobile-first responsive design for About section - PERFECTED */
@media (max-width: 900px) {
  .about {
    padding: 2rem 0 3rem 0;
  }
  
  .about h2 {
    font-size: 2rem !important;
    margin-bottom: 1.2rem;
    padding: 0 1rem;
  }
  
  .about-content {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .about-main {
    margin-bottom: 2rem;
  }
  
  .about-intro {
    font-size: 1.1rem !important;
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
  }
  
  .about-description {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    max-width: 100%;
  }
  
  .about-features {
    flex-direction: column;
    gap: 1.2rem;
    overflow-x: visible;
    justify-content: center;
    padding: 0 0.5rem;
    margin-top: 1.5rem;
  }
  
  .about-feature {
    min-width: auto;
    max-width: 100%;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    flex: none;
    width: 100%;
  }
  
  .about-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }
  
  .about-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .about-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .about-feature p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 1.5rem 0 2.5rem 0;
  }
  
  .about h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
    padding: 0 0.8rem;
  }
  
  .about-content {
    gap: 1.5rem;
    padding: 0 0.8rem;
  }
  
  .about-main {
    margin-bottom: 1.5rem;
  }
  
  .about-intro {
    font-size: 1rem !important;
    margin-bottom: 1rem;
    padding: 0 0.3rem;
  }
  
  .about-description {
    font-size: 0.9rem !important;
    margin-bottom: 1.2rem;
    padding: 0 0.3rem;
    line-height: 1.6;
  }
  
  .about-features {
    gap: 1rem;
    padding: 0 0.3rem;
    margin-top: 1.2rem;
  }
  
  .about-feature {
    padding: 1rem 0.8rem;
    border-radius: 10px;
  }
  
  .about-icon {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
  }
  
  .about-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .about-feature h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .about-feature p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 1rem 0 2rem 0;
  }
  
  .about h2 {
    font-size: 1.6rem !important;
    margin-bottom: 0.8rem;
    padding: 0 0.5rem;
    line-height: 1.3;
  }
  
  .about-content {
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  
  .about-main {
    margin-bottom: 1.2rem;
  }
  
  .about-intro {
    font-size: 0.95rem !important;
    margin-bottom: 0.8rem;
    padding: 0 0.2rem;
    line-height: 1.5;
  }
  
  .about-description {
    font-size: 0.85rem !important;
    margin-bottom: 1rem;
    padding: 0 0.2rem;
    line-height: 1.6;
  }
  
  .about-features {
    gap: 0.8rem;
    padding: 0 0.2rem;
    margin-top: 1rem;
  }
  
  .about-feature {
    padding: 0.8rem 0.6rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);
  }
  
  .about-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .about-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .about-feature h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
  }
  
  .about-feature p {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #555;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 0.8rem 0 1.5rem 0;
  }
  
  .about h2 {
    font-size: 1.4rem !important;
    margin-bottom: 0.6rem;
    padding: 0 0.3rem;
    line-height: 1.2;
  }
  
  .about-content {
    gap: 1rem;
    padding: 0 0.3rem;
  }
  
  .about-main {
    margin-bottom: 1rem;
  }
  
  .about-intro {
    font-size: 0.9rem !important;
    margin-bottom: 0.6rem;
    padding: 0 0.1rem;
    line-height: 1.4;
  }
  
  .about-description {
    font-size: 0.8rem !important;
    margin-bottom: 0.8rem;
    padding: 0 0.1rem;
    line-height: 1.5;
  }
  
  .about-features {
    gap: 0.6rem;
    padding: 0 0.1rem;
    margin-top: 0.8rem;
  }
  
  .about-feature {
    padding: 0.6rem 0.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 8px rgba(25, 118, 210, 0.06);
  }
  
  .about-icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
  
  .about-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .about-feature h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
  }
  
  .about-feature p {
    font-size: 0.75rem;
    line-height: 1.3;
    color: #555;
  }
}

/* Quote */
.quote {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #333;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.12);
  overflow: hidden;
  gap: 0;
}

.quote-info {
  flex: 0 0 280px;
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  color: #fff;
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.quote-info::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.quote-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 200px;
}

.quote-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}

.quote-info-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.quote-info-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
  text-align: center;
}

.quote-info-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
  margin: 0;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.quote-form {
  flex: 1;
  padding: 2.5rem 2rem;
  background: #fff;
  color: #333;
  text-align: center;
  min-width: 0;
}

.quote-form h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #1976d2;
  text-align: center;
}

.quote-form p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #666;
  text-align: center;
  line-height: 1.4;
}
#quoteForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#quoteForm input, #quoteForm textarea {
  padding: 0.8rem 0.9rem;
  border: 2px solid #e3f2fd;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #f7fbff;
  color: #333;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#quoteForm input:focus, #quoteForm textarea:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 2px #bbdefb;
  background: #fff;
}

#quoteForm textarea {
  min-height: 90px;
  resize: vertical;
}
#quoteForm .btn {
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
  margin-top: 0.6rem;
}

#quoteForm .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
  #quoteForm .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
  }
}



/* Quote Responsive Styles - PERFECTED for Mobile */
@media (max-width: 900px) {
  .quote {
    padding: 2.5rem 0;
  }
  
  .quote-flex {
    flex-direction: column;
    max-width: 600px;
    margin: 0 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
  }
  
  .quote-info {
    flex: none;
    padding: 2rem 1.5rem;
    border-radius: 12px 12px 0 0;
  }
  
  .quote-info-item {
    margin-bottom: 1.5rem;
  }
  
  .quote-info-item:last-child {
    margin-bottom: 0;
  }
  
  .quote-form {
    padding: 2rem 1.5rem;
    border-radius: 0 0 12px 12px;
  }
  
  .quote-form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .quote-form p {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .quote {
    padding: 2rem 0;
  }
  
  .quote-flex {
    max-width: 100%;
    margin: 0 0.8rem;
    border-radius: 10px;
  }
  
  .quote-info {
    padding: 1.8rem 1.2rem;
    border-radius: 10px 10px 0 0;
  }
  
  .quote-info-item {
    margin-bottom: 1.2rem;
  }
  
  .quote-info-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.5rem;
  }
  
  .quote-info-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .quote-info-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .quote-info-content p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .quote-form {
    padding: 1.8rem 1.2rem;
    border-radius: 0 0 10px 10px;
  }
  
  .quote-form h2 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
  }
  
  .quote-form p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  #quoteForm {
    gap: 0.8rem;
  }
  
  #quoteForm input, #quoteForm textarea {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1.5px solid #e3f2fd;
  }
  
  #quoteForm textarea {
    min-height: 80px;
  }
  
  #quoteForm .btn {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 600px) {
  .quote {
    padding: 1.5rem 0;
  }
  
  .quote-flex {
    max-width: 100%;
    margin: 0 0.5rem;
    border-radius: 8px;
  }
  
  .quote-info {
    padding: 1.5rem 1rem;
    border-radius: 8px 8px 0 0;
  }
  
  .quote-info-item {
    margin-bottom: 1rem;
  }
  
  .quote-info-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.4rem;
  }
  
  .quote-info-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .quote-info-content h4 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }
  
  .quote-info-content p {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  
  .quote-form {
    padding: 1.5rem 1rem;
    border-radius: 0 0 8px 8px;
  }
  
  .quote-form h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  
  .quote-form p {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }
  
  .quote-form input,
  .quote-form textarea {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-bottom: 0.8rem;
  }
  
  .quote-form textarea {
    min-height: 100px;
  }
  
  .quote-form .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-top: 0.3rem;
  }
}

@media (max-width: 480px) {
  .quote {
    padding: 1rem 0;
  }
  
  .quote-flex {
    margin: 0 0.3rem;
    border-radius: 6px;
  }
  
  .quote-info {
    padding: 1.2rem 0.8rem;
    border-radius: 6px 6px 0 0;
  }
  
  .quote-info-item {
    margin-bottom: 0.8rem;
  }
  
  .quote-info-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
  }
  
  .quote-info-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .quote-info-content h4 {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }
  
  .quote-info-content p {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .quote-form {
    padding: 1.2rem 0.8rem;
    border-radius: 0 0 6px 6px;
  }
  
  .quote-form h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .quote-form p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .quote-form input,
  .quote-form textarea {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 5px;
    margin-bottom: 0.7rem;
  }
  
  .quote-form textarea {
    min-height: 90px;
  }
  
  .quote-form .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 5px;
    margin-top: 0.2rem;
  }
}
    box-shadow: 0 2px 15px rgba(25, 118, 210, 0.06);
  }
  
  .quote-info {
    padding: 1.5rem 1rem;
    border-radius: 8px 8px 0 0;
  }
  
  .quote-info-item {
    margin-bottom: 1rem;
  }
  
  .quote-info-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.4rem;
  }
  
  .quote-info-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .quote-info-content h4 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
  }
  
  .quote-info-content p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  .quote-form {
    padding: 1.5rem 1rem;
    border-radius: 0 0 8px 8px;
  }
  
  .quote-form h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }
  
  .quote-form p {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }
  
  #quoteForm {
    gap: 0.7rem;
  }
  
  #quoteForm input, #quoteForm textarea {
    padding: 0.6rem 0.7rem;
    font-size: 0.8rem;
    border-radius: 5px;
    border: 1px solid #e3f2fd;
    min-height: 44px;
  }
  
  #quoteForm textarea {
    min-height: 70px;
  }
  
  #quoteForm .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 5px;
    margin-top: 0.4rem;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .quote {
    padding: 1rem 0;
  }
  
  .quote-flex {
    margin: 0 0.3rem;
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(25, 118, 210, 0.04);
  }
  
  .quote-info {
    padding: 1.2rem 0.8rem;
    border-radius: 6px 6px 0 0;
  }
  
  .quote-info-item {
    margin-bottom: 0.8rem;
  }
  
  .quote-info-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
  }
  
  .quote-info-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .quote-info-content h4 {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
  }
  
  .quote-info-content p {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .quote-form {
    padding: 1.2rem 0.8rem;
    border-radius: 0 0 6px 6px;
  }
  
  .quote-form h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .quote-form p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  #quoteForm {
    gap: 0.6rem;
  }
  
  #quoteForm input, #quoteForm textarea {
    padding: 0.5rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 4px;
    min-height: 40px;
  }
  
  #quoteForm textarea {
    min-height: 60px;
  }
  
  #quoteForm .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-top: 0.3rem;
    min-height: 40px;
  }
}

/* Testimonial */
.testimonial {
  background: #fff;
  text-align: center;
  padding: 2rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial blockquote {
  font-size: 1.1rem;
  color: #222;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-user img {
  border-radius: 50%;
  background: #eee;
  padding: 0.2rem;
}

/* Modern Footer Styles */
.footer {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 25%, #42a5f5 75%, #64b5f6 100%);
  color: #fff;
  padding: 4rem 0 2rem;
  border-top: none;
  margin-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Footer background pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
  animation: footerFloat 20s ease-in-out infinite;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: footerGridMove 30s linear infinite;
}

@keyframes footerFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(0.3deg); }
  66% { transform: translateY(8px) rotate(-0.3deg); }
}

@keyframes footerGridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.footer-col {
  min-width: 180px;
}
.footer-col h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  border-left: 4px solid #fff;
  padding-left: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #fff;
  padding-left: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.2); */
  backdrop-filter: blur(10px);
}

.footer .footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 0.75rem auto;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  object-fit: contain;
}


.brand p {
  margin: 1rem 0 1.5rem;
  max-width: 280px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.footer-social img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
  width: 24px;
  height: 24px;
}
.footer-social img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}
.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(5px);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  justify-content: space-between;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.contact-item {
  flex: 1 1 160px;
  min-width: 140px;
  margin-bottom: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.footer-bottom a:hover {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .footer {
    padding: 3rem 0 2rem;
    text-align: center;
     display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-contact {
    gap: 2rem;
    text-align: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-col {
    text-align: center;
    width: 100%;
  }
  .footer-col h4 {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #fff;
    padding-left: 0;
    padding-bottom: 0.5rem;
    margin: 0 auto 1.5rem auto;
  }
  .footer-social {
    justify-content: center;
  }
  
  /* Ensure footer is properly centered on tablets */
  .footer .container {
    justify-content: center;
   max-width: 100%;
  }
}
@media (max-width: 600px) {
  .footer {
    text-align: center;
    margin-left: 2.5rem;
 
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-contact {
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .contact-item {
    text-align: center;
    flex: 1 1 auto;
    min-width: auto;
    margin-bottom: 1rem;
    width: 100%;
  }
  .footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    padding-left: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.2rem;
    font-size: 0.95rem;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-col {
    text-align: center;
    min-width: auto;
    width: 100%;
  }
  .footer-col ul {
    text-align: center;
    width: 100%;
  }
  .footer-col ul li {
    text-align: center;
    width: 100%;
  }
  .footer-col ul li a {
    text-align: center;
    display: inline-block;
    width: 100%;
  }
  .brand p {
    text-align: center;
    margin: 1rem auto 1.5rem auto;
    max-width: 100%;
  }
  
  /* Ensure footer is properly centered on mobile */
  .footer .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .services-flex, .quote-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .services-img, .quote-img {
    align-self: center;
  }
  
  /* Header mobile optimization - keep logo, user icon, and menu in one line */
  .header-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 70px;
  }
  
  .logo img {
    height: 45px;
  }
  
  .nav {
    display: none;
  }
  
  .header-actions {
    gap: 0.8rem;
  }
  
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    min-height: 44px;
  }
  
  .icon-user, .icon-menu {
    width: 36px;
    height: 36px;
  }
  
  .icon-user::before, .icon-menu::before {
    font-size: 1.1rem;
    line-height: 36px;
  }
}

@media (max-width: 600px) {
  .container {
    width: 98%;
    padding: 0 0.5rem;
  }
  .features, .packages-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .feature, .package-box {
    width: 100%;
    min-width: 0;
  }
  
  /* Header mobile optimization - compact layout */
  .header {
    padding: 0.8rem 0;
    min-height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #e53935;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  /* Adjust body padding for fixed header */
  body {
    padding-top: 70px;
  }
  
  /* Adjust scroll offset for fixed header */
  html {
    scroll-padding-top: 70px;
  }
  
  .header-flex {
    gap: 0.6rem;
    min-height: 60px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .header-actions {
    gap: 0.6rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-height: 40px;
  }
  
  .icon-user, .icon-menu {
    width: 32px;
    height: 32px;
  }
  
  .icon-user::before, .icon-menu::before {
    font-size: 1rem;
    line-height: 32px;
  }
  
  .footer-flex {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
}

html {
  scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Additional responsive improvements for tablets */
@media (max-width: 768px) {
  .header {
    padding: 0.9rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #e53935;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  /* Adjust body padding for fixed header */
  body {
    padding-top: 80px;
  }
  
  /* Adjust scroll offset for fixed header */
  html {
    scroll-padding-top: 80px;
  }
  
  .header-flex {
    gap: 0.8rem;
  }
  
  .logo img {
    height: 42px;
  }
  
  .btn-primary {
    padding: 0.75rem 1.6rem;
    font-size: 0.92rem;
    min-height: 42px;
  }
  
  .icon-user, .icon-menu {
    width: 34px;
    height: 34px;
  }
  
  .icon-user::before, .icon-menu::before {
    font-size: 1.05rem;
    line-height: 34px;
  }
}

/* Ensure header elements are properly aligned on all devices */
@media (max-width: 900px) {
  .header-actions {
    flex-shrink: 0;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  /* Ensure the Book Now button doesn't wrap on smaller screens */
  .btn-primary {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Ensure header is always visible and accessible */
  .header {
    will-change: transform;
    backface-visibility: hidden;
  }
  
  /* Prevent header from being hidden by other elements */
  .header * {
    position: relative;
    z-index: 1001;
  }
  
  /* Ensure smooth scrolling behavior */
  .header {
    transform: translateZ(0);
  }
}

/* Mobile Nav */
.icon-menu {
  background: #eee;
  border: none;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-menu:hover {
  background: #e53935;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .icon-menu {
    display: flex;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: fixed;
    top: 80px; /* Position below fixed header */
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav.open {
    display: flex;
  }
  
  .nav a {
    padding: 1rem 2rem;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .nav a:hover, .nav a:focus {
    background: #f8f9fa;
    color: #e53935;
  }
}

/* Pricing Table */
.pricing {
  background: #fff;
  padding: 5rem 0 4rem 0;
  text-align: center;
    overflow: visible;  /* allow content to extend */
  display: flex;
  flex-direction: column;
}

.pricing h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1976d2;
}
.pricing-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.pricing-card {
    overflow: visible;  /* allow content to extend */
  display: flex;
  flex-direction: column;
  border: 2px solid #f5c6cb;
  border-radius: 12px;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 12px rgba(229,57,53,0.08);
  width: 100%;
  min-width: 0;
}
.pricing-card.popular {
  border-color: #e53935;
  box-shadow: 0 4px 24px rgba(229,57,53,0.15);
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(229,57,53,0.12);
}
.pricing-card h3, .price {
  color: #e53935;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-card li {
  margin-bottom: 0.4rem;
}

/* Responsive Pricing Table */
@media (max-width: 1200px) {
  .pricing-table {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
  }
}

@media (max-width: 992px) {
  .pricing-table {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 600px;
  }
  
  .pricing-card {
    padding: 1.5rem;
    min-height: 350px;
  }
}

@media (max-width: 600px) {
  .pricing-table {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
  }
  
  .pricing-card {
    padding: 1.2rem;
    min-height: 320px;
  }
  
  .pricing-card .box-image {
    height: 180px;
  }
  
  .pricing-card ul {
    font-size: 0.9rem;
  }
  
  .pricing-card .btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing-table {
    margin: 0 0.5rem;
    gap: 0.8rem;
    padding: 0 0.5rem;
  }
  
  .pricing-card {
    padding: 1rem;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .pricing-card .box-image {
    height: 160px;
    width: 100%;
    object-fit: cover;
  }
  
  .pricing-card h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .pricing-card ul {
    font-size: 0.85rem;
    text-align: left;
    padding: 0 0.5rem;
  }
  
  .pricing-card .pricing-actions {
    width: 100% !important;
    margin-top: 0.5rem !important;
    padding: 0 1rem 1rem 1rem !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  
  .pricing-card .pricing-actions .btn {
    width: 100% !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
    text-transform: none !important;
    letter-spacing: 0.2px !important;
    transition: all 0.2s ease !important;
    background: #f8f9fa !important;
    color: #333 !important;
    box-sizing: border-box !important;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
  }

  .pricing-card .pricing-actions .pricing-btn-login {
    background: #1976d2 !important;
    border-color: #1976d2 !important;
    color: white !important;
    box-shadow: none !important;
  }

  .pricing-card .pricing-actions .pricing-btn-order {
    background: #e53935 !important;
    border-color: #e53935 !important;
    color: white !important;
    box-shadow: none !important;
  }

  .pricing-card .pricing-actions .pricing-btn-register {
    background: white !important;
    border-color: #1976d2 !important;
    color: #1976d2 !important;
    box-shadow: none !important;
  }
}

/* Dynamic Pricing Cards - Enhanced Styles */
.pricing-card {
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;  overflow: visible;  /* allow content to extend */
  display: flex;
  flex-direction: column;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.pricing-card .box-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.pricing-card .pricing-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  flex-wrap: wrap;
  overflow: visible;
}

.pricing-card .pricing-actions .btn {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34,34,34,0.12);
}

.pricing-card.popular {
  border-color: #1976d2;
  box-shadow: 0 6px 28px rgba(25, 118, 210, 0.15);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  color: #1976d2;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

.amount {
  font-size: 2.5rem;
  color: #1976d2;
  font-weight: 700;
}

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

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-action {
  margin-top: auto;
}

.pricing-action .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: white;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing-action .btn:hover {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
}

/* Mobile Responsive for Pricing Section */
@media (max-width: 900px) {
  .pricing {
    padding: 3rem 0;
  }

   .hero {
    min-height: 75vh !important;
    height: 75vh !important;
  }

.feature {
    width: 75%;
    border: 2px black solid;

}
.feature:hover{
  box-shadow: none;
}
 
.pricing-card > h3,
  .pricing-card > ul,
  .pricing-card > p {
    display: none;  /* hide extra content */
  }
/* 
  .pricing-card .box-image {
    display: block;
    width: 100%;
    height: auto;
  } */

  .pricing-card .pricing-actions {
    display: flex !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
    flex-wrap: wrap !important;
  }

  .pricing-card .pricing-actions .btn {
    flex: 1 1 48% !important; /* allow buttons to fit side by side */
    min-width: 0 !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hmoetext{
    justify-content: center;
    align-items: center;
    display: inline;
  }

  
  .pricing h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-table {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
    min-height: 350px;
  }
  
  .pricing-header h3 {
    font-size: 1.3rem;
  }
  
  .amount {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 2.5rem 0;
  }
  
  .pricing h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .pricing-table {
    gap: 1.5rem;
    padding: 0 0.8rem;
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 400px;
    padding: 1.2rem;
  }
  
  .popular-badge {
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .pricing {
    padding: 2rem 0;
  }
  
  .pricing h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  
  .pricing-table {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .pricing-card {
    padding: 1rem;
    min-height: 300px;
  }
  
  .pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .amount {
    font-size: 1.8rem;
  }
  
  .currency {
    font-size: 1rem;
  }
  
  .pricing-features li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
  
  .pricing-action .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing {
    padding: 1.5rem 0;
  }
  
  .pricing h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .pricing-table {
    gap: 0.8rem;
    padding: 0 0.3rem;
  }
  
  .pricing-card {
    padding: 0.8rem;
    min-height: 500px;
  }
  
  .pricing-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .amount {
    font-size: 1.6rem;
  }
  
  .currency {
    font-size: 0.9rem;
  }
  
  .pricing-features li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
  }
  
  .pricing-action .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

.tracking-timeline .container {
  width: 70vw;
  max-width: none; /* override Bootstrap's max-width */
  padding: 2rem;
  margin: 0 auto;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.testimonial-slide.active {
  display: block;
  opacity: 1;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
}
.carousel-btn.prev {
  left: -50px;
}
.carousel-btn.next {
  right: -50px;
}
@media (max-width: 600px) {
  .carousel-btn.prev {
    left: 0;
  }
  .carousel-btn.next {
    right: 0;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  border: 2px solid #e53935;
  color: #222;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 250px;
  max-width: 90vw;
}

/* Tracking Timeline */
.tracking-timeline {
  margin-top: 1.5rem;
  text-align: left;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.timeline-dot {
  width: 16px;
  height: 16px;
  background: #e53935;
  border-radius: 50%;
  margin-top: 2px;
}
.timeline-content {
  flex: 1;
}
.timeline-date {
  font-size: 0.9rem;
  color: #888;
}

/* Form Validation */
.form-error {
  color: #e53935;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
input:invalid, textarea:invalid {
  border-color: #e53935;
}
input:focus, textarea:focus {
  border-color: #b71c1c;
  outline: none;
}

/* Spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e53935;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
  margin: 1rem auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Remove old animation classes and keyframes */
.fade-in, .fade-in.visible, .slide-in, .slide-in.visible, .animated-bg, .animated-bg .line, .btn.ripple, .btn .ripple-effect, .spinner {
  display: none !important;
  animation: none !important;
}

/* New sleek section entrance animation */
.in-view {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
section, .pricing, .testimonial, .register, .quote, .feature, .package-box, .pricing-card, .register-form, .quote-form, .modal-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Card and button hover: smooth scale and shadow */
.feature:hover, .package-box:hover, .pricing-card:hover, .btn:hover, .btn:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(229,57,53,0.13), 0 2px 8px #e5393533;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* Modal fade/scale in */
.modal-content {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal[style*="display: flex"] .modal-content {
  opacity: 1;
  transform: scale(1);
}

/* Remove spinner animation */
.spinner { display: none !important; }

/* Button ripple effect */
.btn.ripple {
  position: relative;
  overflow: hidden;
}
.btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(229,57,53,0.25);
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.why-choose img{
  color: #b71c1c;
}

.quote-form{
  background-color: #fff;
  padding: 2rem 1.8rem;
  font-weight: 400;
  color: #333;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border: 2px solid #e3f2fd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #1976d2;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.quote-form .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.quote-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.package-box{
  display: grid;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

.password-group {
  position: relative;
  display: flex;
  align-items: center;
}

#regPassword {
  flex: 1;
  padding-right: 60px; /* space for the button */
}

#showRegPassword {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  width: 50px; /* fixed width to prevent shifting */
  text-align: center;
}

/* Section entrance animations */
section, .pricing, .testimonial, .register, .quote {
  opacity: 0;
  transform: translateY(60px) scale(0.98) rotateX(6deg);
  transition: opacity 0.9s cubic-bezier(.4,2,.3,1), transform 0.9s cubic-bezier(.4,2,.3,1);
}
section.visible, .pricing.visible, .testimonial.visible, .register.visible, .quote.visible {
  opacity: 1;
  transform: none;
}

/* Modal popup animation */
.modal-content {
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.4,2,.3,1), opacity 0.4s cubic-bezier(.4,2,.3,1);
}
.modal[style*="display: flex"] .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Card hover/focus effects */
.feature:hover, .package-box:hover, .pricing-card:hover, .register-form:focus-within, .quote-form:focus-within {
  box-shadow: 0 0 16px 4px rgba(6, 124, 242, 0.1), 0 8px 32px #0703f433;
  border-color: rgba(25, 118, 210, 0.1);
  filter: brightness(1.03);
}

/* Popup Overlay */
.popup-overlay{
  position:fixed;
  top:0;left:0;width:100vw;height:100vh;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:1rem;
}
.popup-overlay.active{display:flex;}
.popup-content{
  background:#fff;
  border-radius:12px;
  max-width:600px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  padding:1.5rem 1.2rem;
  box-shadow:0 8px 32px rgba(0,0,0,0.25);
}
.popup-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:1rem;
}
.close-popup{
  background:none;border:none;font-size:1.5rem;cursor:pointer;color:#e53935;
}
.form-row{display:flex;gap:1rem;flex-wrap:wrap;}
.form-group{flex:1;display:flex;flex-direction:column;margin-bottom:0.8rem;}
.form-group input,.form-group select{padding:0.6rem;border:1px solid #ccc;border-radius:4px;font-size:1rem;}
.form-group label{margin-bottom:0.25rem;font-weight:600;}
.address-section h4{margin:1rem 0 0.5rem;font-size:1.1rem;color:#e53935;}
.form-actions{display:grid;justify-content:flex-end;gap:0.8rem;margin-top:1rem;}
@media(max-width:500px){.popup-content{max-width:100%;}}

/* === Override old footer link & icon colours for redesigned footer === */
.footer-links a {
  color: #ffffff;
}
.footer-social img {
  filter: invert(1) brightness(2);
}

.footer-bottom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo { height: 50px; margin-bottom: 0.8rem; } 

/* Slide-in animation for service features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.service-feature.slide-in {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-feature.slide-in.in-view {
  opacity: 1;
  transform: none;
}
.service-feature.slide-in:nth-child(1) { transition-delay: 0.05s; }
.service-feature.slide-in:nth-child(2) { transition-delay: 0.15s; }
.service-feature.slide-in:nth-child(3) { transition-delay: 0.25s; }
.service-feature.slide-in:nth-child(4) { transition-delay: 0.35s; } 

 

/* Ensure service slider text is black for readability */
.service-slider, .service-slider * {
  color: #222 !important;
} 

/* Mind-blowing hero background gradient animation */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 3rem 0 2rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0d47a1 0%, #1976d2 40%, #4fc3f7 100%);
  background-size: 200% 200%;
  animation: heroGradientMove 18s ease-in-out infinite;
}
@keyframes heroGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Animated glint on waves */
.hero-waves::after {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.0) 60%, rgba(255,255,255,0.18) 70%, rgba(255,255,255,0.0) 80%);
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: glintMove 7s linear infinite;
}
@keyframes glintMove {
  0% { background-position: -100vw 0; }
  100% { background-position: 100vw 0; }
}
/* Parallax effect (CSS variables, JS can update) */
.hero-cloud, .hero-ship, .hero-waves {
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.hero-cloud { transform: translateY(var(--cloud-parallax, 0px)); }
.hero-ship { transform: translateY(var(--ship-parallax, 0px)); }
.hero-waves { transform: translateY(var(--waves-parallax, 0px)); } 

/* Pop-up animation for track-box on scroll */
.track-box {
  opacity: 0;
  transform: scale(0.85) translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.track-box.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
} 

/* Professional pricing card design */
.pricing-table {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.pricing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
  padding: 2.2rem 1.6rem 1.6rem 1.6rem;
  max-width: 320px;
  min-width: 240px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.16);
  transform: translateY(-6px) scale(1.03);
}
.pricing-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd 60%, #bbdefb 100%);
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.07);
}
.pricing-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}
.badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(90deg, #1976d2 60%, #4fc3f7 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.3em 1em;
  border-radius: 1em;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 1.1rem;
  margin-top: 0.2rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-card li {
  font-size: 1.08rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .pricing-table {
    gap: 1.2rem;
  }
  .pricing-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}
@media (max-width: 700px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .pricing-card {
    width: 100%;
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
} 

/* Professional Main Box Packages card design */
.packages-grid {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.package-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
  padding: 2.2rem 1.6rem 1.6rem 1.6rem;
  max-width: 220px;
  min-width: 160px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.package-card:hover {
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.16);
  transform: translateY(-6px) scale(1.03);
}
.package-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd 60%, #bbdefb 100%);
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.07);
}
.package-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}
.package-label {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1976d2;
  margin-top: 0.2rem;
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  .packages-grid {
    gap: 1.2rem;
  }
  .package-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}
@media (max-width: 700px) {
  .packages-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .package-card {
    width: 100%;
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
} 

/* Professional service slider card design */
.service-slide-card {
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.25);
  padding: 2.5rem 2rem 2rem 2rem;
  width: 100%;
  height: 280px;
  max-width: 480px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.service-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
  background-size: 200% 100%;
  animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-slide-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 48px rgba(25, 118, 210, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-slide-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.service-slide-card:hover .service-slide-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.service-slide-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.service-slide-card:hover .service-slide-icon svg {
  transform: scale(1.05);
}

.service-slide-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-slide-card h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  border-radius: 1px;
}

.service-slide-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
}

@media (max-width: 900px) {
  .service-slide-card {
    max-width: 440px;
    min-width: 280px;
    height: 260px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .service-slide-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .service-slide-card p {
    font-size: 1rem;
  }
  .service-slide-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.2rem;
  }
  .service-slide-icon svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 700px) {
  .service-slide-card {
    max-width: 100%;
    min-width: 0;
    height: 240px;
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
  }
  .service-slide-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .service-slide-card p {
    font-size: 0.95rem;
  }
  .service-slide-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }
  .service-slide-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Professional Get Your Shipping Quote form design */
.quote-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
  padding: 2.2rem 2rem 1.6rem 2rem;
  max-width: 420px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.quote-form h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 1.2rem;
}
.quote-form p {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 2rem;
}
#quoteForm input, #quoteForm textarea {
  width: 100%;
  font-size: 1.08rem;
  padding: 0.9rem 1.1rem;
  border: 2px solid #e3f2fd;
  border-radius: 8px;
  margin-bottom: 1.1rem;
  background: #f7fbff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#quoteForm input:focus, #quoteForm textarea:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px #bbdefb;
  outline: none;
  background: #fff;
}
#quoteForm textarea {
  min-height: 90px;
  resize: vertical;
}
#quoteForm .btn {
  flex: 1 1 100%;
  max-width: 460px;
  margin-top: 0.5rem;
}
.quote-form .btn {
  width: 100%;
  padding: 1rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(90deg, #1976d2 60%, #4fc3f7 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.quote-form .btn:hover, .quote-form .btn:focus {
  background: linear-gradient(90deg, #1565c0 60%, #1976d2 100%);
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
}
@media (max-width: 700px) {
  .quote-form {
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  #quoteForm input, #quoteForm textarea {
    font-size: 1rem;
    padding: 0.7rem 0.8rem;
  }
  .quote-form .btn {
    font-size: 1rem;
    padding: 0.8rem 0;
  }
} 

/* Professional background for Get Your Shipping Quote section */
.quote {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 6rem 0 5rem 0;
}
@media (max-width: 700px) {
  .quote {
    padding: 2rem 0 1.5rem 0;
  }
} 

/* Horizontal layout for Get Your Shipping Quote section */
.quote-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2.5rem;
  justify-content: center;
}
.quote-form {
  flex: 1 1 340px;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .quote-flex {
    gap: 1.2rem;
  }
  .quote-form {
    max-width: 100%;
    min-width: 0;
  }
  .quote-visual {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .quote-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .quote-form, .quote-visual {
    width: 100%;
    max-width: 98vw;
    min-width: 0;
  }
} 

/* Enhanced Professional Tracking Styles */
.track-header {
  text-align: center;
  margin-bottom: 3rem;
}
.track-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.1);
}
.track-header h2 {
  font-size: 2.5rem;
  color: #1976d2;
  margin-bottom: 1rem;
  font-weight: 700;
}
.track-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Track Container */
.track-container {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.1);
  border: 1px solid rgba(25, 118, 210, 0.08);
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.track-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(25, 118, 210, 0.15);
}

/* Enhanced Track Form */
.track-form-wrapper {
  margin-bottom: 2rem;
}
.track-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.track-input-group {
  width: 100%;
  max-width: 500px;
}
.track-label {
  display: block;
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.track-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.track-input-icon {
  position: absolute;
  left: 1rem;
  z-index: 2;
}
.track-input-wrapper input {
  width: 100%;
  padding: 1.2rem 1rem 1.2rem 3rem;
  border: 2px solid #e3f2fd;
  border-radius: 12px;
  font-size: 1.1rem;
  background: #f8f9fa;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.track-input-wrapper input:focus {
  outline: none;
  border-color: #1976d2;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.track-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.track-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.track-btn:hover::before {
  left: 100%;
}
.track-btn:hover, .track-btn:focus {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.25);
  transform: translateY(-2px);
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
  .track-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
  }
  
  .track-container:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.12);
  }
}

/* Track Features */
.track-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(25, 118, 210, 0.1);
  flex-wrap: wrap;
}
.track-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  justify-content: center;
  min-width: 120px;
}
.track-feature svg {
  flex-shrink: 0;
}

/* Mobile Responsive for Enhanced Tracking - PERFECTED */
@media (max-width: 900px) {
  .track-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    padding: 0 0.5rem;
  }

  .track-header p {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 0 0.5rem;
    line-height: 1.4;
  }
  
  .track-container {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
    border-radius: 16px;
  }
  
  .track-features {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .track-feature {
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .track-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    padding: 0 0.3rem;
  }
  

  .track-header p {
    font-size: 0.95rem;
    padding: 0 0.3rem;
    line-height: 1.3;
  }
  
  .track-container {
    padding: 2rem 1.2rem;
    margin: 0 0.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
  }
  
  .track-features {
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
  
  .track-feature {
    font-size: 0.85rem;
  }
  
  .track-input-group {
    max-width: 100%;
  }
  
  .track-label {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .track-input-wrapper input {
    padding: 1rem 0.8rem 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 8px;
    min-height: 48px;
  }
  
  .track-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    min-height: 48px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .track-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    padding: 0 0.2rem;
    line-height: 1.3;
  }
  
  .track-header p {
    font-size: 0.9rem;
    padding: 0 0.2rem;
    line-height: 1.3;
  }
  
  .track-container {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(25, 118, 210, 0.06);
  }
  
  .track-features {
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .track-feature {
    font-size: 0.8rem;
  }
  
  .track-label {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  
  .track-input-wrapper input {
    padding: 0.8rem 0.7rem 0.8rem 2.2rem;
    font-size: 0.9rem;
    border-radius: 6px;
    min-height: 44px;
    border: 1.5px solid #e3f2fd;
  }
  
  .track-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
    min-height: 44px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {

  .upmenubtn{
    display: none;
  }

  

  .track-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    padding: 0 0.1rem;
    line-height: 1.2;
  }
  
  .track-header p {
    font-size: 0.85rem;
    padding: 0 0.1rem;
    line-height: 1.2;
  }
  
  .track-container {
    padding: 1.2rem 0.8rem;
    margin: 0 0.3rem;
    border-radius: 8px;
    box-shadow: 0 1px 10px rgba(25, 118, 210, 0.04);
  }
  
  .track-features {
    gap: 0.6rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
  }
  
  .track-feature {
    font-size: 0.75rem;
  }
  
  .track-label {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
  
  .track-input-wrapper input {
    padding: 0.7rem 0.6rem 0.7rem 2rem;
    font-size: 0.85rem;
    border-radius: 5px;
    min-height: 40px;
    border: 1px solid #e3f2fd;
  }
  
  .track-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 5px;
    min-height: 40px;
  }
} 

/* Premium Professional Service Slide Cards */
.service-slide-card {
  background: linear-gradient(145deg, #1976d2 0%, #42a5f5 50%, #1976d2 100%);
  border-radius: 28px;
  box-shadow: 
    0 16px 48px rgba(25, 118, 210, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  width: 100%;
  height: 320px;
  max-width: 520px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  color: #fff;
  transform-style: preserve-3d;
}

.service-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 25%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.8) 75%, #fff 100%);
  background-size: 200% 100%;
  animation: premiumShine 4s ease-in-out infinite;
}

@keyframes premiumShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-slide-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: cardGlow 6s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.service-slide-card:hover {
  transform: translateY(-8px) scale(1.03) rotateX(2deg);
  box-shadow: 
    0 24px 64px rgba(25, 118, 210, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-slide-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  z-index: 2;
}

.service-slide-card:hover .service-slide-icon {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-slide-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
  border-radius: 50%;
  z-index: -1;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.service-slide-icon svg {
  width: 56px;
  height: 56px;
  display: block;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-slide-card:hover .service-slide-icon svg {
  transform: scale(1.1) rotateY(5deg);
}

.service-slide-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.service-slide-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .service-slide-card {
    max-width: 480px;
    min-width: 360px;
    height: 320px;
    padding: 2.5rem 2rem 2rem 2rem;
  }
  .service-slide-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .service-slide-card p {
    font-size: 1rem;
  }
  .service-slide-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 1.5rem;
  }
  .service-slide-icon svg {
    width: 48px;
    height: 48px;
  }
  .gift-features {
    margin-top: 1.2rem;
    gap: 0.6rem;
  }
  .gift-feature {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 700px) {
  .service-slide-card {
    max-width: 100%;
    min-width: 0;
    height: 320px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .service-slide-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .service-slide-card p {
    font-size: 0.95rem;
  }
  .service-slide-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 1.2rem;
  }
  .service-slide-icon svg {
    width: 44px;
    height: 44px;
  }
  .gift-features {
    margin-top: 1rem;
    gap: 0.5rem;
  }
  .gift-feature {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }
}

/* Gift Features Styling */
.gift-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 300px;
}

.gift-feature {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.gift-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.gift-feature:hover::before {
  left: 100%;
}

.gift-feature:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced Service Slide Card for better centering */
.service-slide-card {
  background: linear-gradient(145deg, #1976d2 0%, #42a5f5 50%, #1976d2 100%);
  border-radius: 28px;
  box-shadow: 
    0 16px 48px rgba(25, 118, 210, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  width: 100%;
  height: 320px;
  max-width: 520px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  color: #fff;
  transform-style: preserve-3d;
}

.service-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 25%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.8) 75%, #fff 100%);
  background-size: 200% 100%;
  animation: premiumShine 4s ease-in-out infinite;
}

@keyframes premiumShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-slide-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: cardGlow 6s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.service-slide-card:hover {
  transform: translateY(-8px) scale(1.03) rotateX(2deg);
  box-shadow: 
    0 24px 64px rgba(25, 118, 210, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-slide-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  z-index: 2;
}

.service-slide-card:hover .service-slide-icon {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-slide-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
  border-radius: 50%;
  z-index: -1;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.service-slide-icon svg {
  width: 56px;
  height: 56px;
  display: block;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-slide-card:hover .service-slide-icon svg {
  transform: scale(1.1) rotateY(5deg);
}

.service-slide-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.service-slide-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .service-slide-card {
    max-width: 480px;
    min-width: 360px;
    height: 320px;
    padding: 2.5rem 2rem 2rem 2rem;
  }
  .service-slide-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .service-slide-card p {
    font-size: 1rem;
  }
  .service-slide-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 1.5rem;
  }
  .service-slide-icon svg {
    width: 48px;
    height: 48px;
  }
  .gift-features {
    margin-top: 1.2rem;
    gap: 0.6rem;
  }
  .gift-feature {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 700px) {
  .service-slide-card {
    max-width: 100%;
    min-width: 0;
    height: 320px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .service-slide-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .service-slide-card p {
    font-size: 0.95rem;
  }
  .service-slide-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 1.2rem;
  }
  .service-slide-icon svg {
    width: 44px;
    height: 44px;
  }
  .gift-features {
    margin-top: 1rem;
    gap: 0.5rem;
  }
  .gift-feature {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }
}

.gift-feature:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  width: 100%;
}

.service-slider-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  outline: none;
  position: relative;
  overflow: hidden;
}

.service-slider-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-slider-dot.active {
  background: #fff;
  border: 2px solid #fff;
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.service-slider-dot.active::before {
  width: 6px;
  height: 6px;
  background: #1976d2;
}

.service-slider-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Enhanced Service Features */
.service-features {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.service-feature.slide-in {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.service-feature.slide-in::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.service-feature.slide-in:hover::before {
  left: 100%;
}

.service-feature.slide-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-feature.slide-in:nth-child(1) { transition-delay: 0.1s; }
.service-feature.slide-in:nth-child(2) { transition-delay: 0.2s; }
.service-feature.slide-in:nth-child(3) { transition-delay: 0.3s; }
.service-feature.slide-in:nth-child(4) { transition-delay: 0.4s; }

.service-feature.slide-in:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Professional Services Section */
.services {
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 25%, #42a5f5 75%, #64b5f6 100%);
  color: #fff;
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Professional background pattern */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
  animation: professionalFloat 15s ease-in-out infinite;
}

@keyframes professionalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(0.5deg); }
  66% { transform: translateY(10px) rotate(-0.5deg); }
}

/* Professional grid lines overlay */
.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 3;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  letter-spacing: -1px;
  position: relative;
}

.services-header h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  border-radius: 2px;
  animation: titleUnderline 4s ease-in-out infinite;
}

@keyframes titleUnderline {
  0%, 100% { width: 120px; }
  50% { width: 180px; }
}

@keyframes titleUnderlinePulse {
  0%, 100% { 
    width: 60px; 
    opacity: 0.8;
    transform: translateX(-50%) scaleX(1);
  }
  25% { 
    width: 80px; 
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
  50% { 
    width: 100px; 
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1.4);
  }
  75% { 
    width: 80px; 
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
}

.services-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

/* Service Cards */
.service-card {
  background: rgba(255,255,255,0.98);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 
    0 16px 48px rgba(0,0,0,0.1),
    0 8px 24px rgba(25, 118, 210, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  color: #333;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1976d2 0%, #42a5f5 50%, #1976d2 100%);
  border-radius: 24px 24px 0 0;
  animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: radial-gradient(circle at center, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
  border-radius: 26px;
  z-index: -1;
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 32px 80px rgba(0,0,0,0.15),
    0 12px 40px rgba(25, 118, 210, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(25, 118, 210, 0.3);
}

/* Service Icons */
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 6px 18px rgba(25, 118, 210, 0.2),
    0 3px 8px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.3) 0%, transparent 70%);
  border-radius: 24px;
  z-index: -1;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.service-card:hover .service-icon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(25, 118, 210, 0.35),
    0 6px 16px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .service-icon svg {
  transform: scale(1.1) rotateY(5deg);
}

/* Service Content */
.service-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1976d2;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(25, 118, 210, 0.1);
  position: relative;
}

.service-content h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
  border-radius: 2px;
  animation: titleUnderlinePulse 2.5s ease-in-out infinite;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2px;
  position: relative;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
  max-width: 100%;
}

.service-content p::before {
  content: none;
}

/* Service Features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.5rem;
  width: 100%;
  min-height: 60px;
  align-content: flex-start;
}

.feature-tag {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.15) 0%, rgba(66, 165, 245, 0.1) 100%);
  color: #1976d2;
  padding: 0.8rem 1.4rem;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 800;
  border: 2px solid rgba(25, 118, 210, 0.3);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.4px;
  box-shadow: 
    0 4px 12px rgba(25, 118, 210, 0.15),
    0 2px 6px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.3);
  min-width: fit-content;
  flex-shrink: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.feature-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.1), transparent);
  transition: left 0.6s;
}

.feature-tag:hover::before {
  left: 100%;
}

.feature-tag:hover {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.15) 0%, rgba(66, 165, 245, 0.15) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
  border-color: rgba(25, 118, 210, 0.3);
}

/* Services CTA */
.services-cta {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 
    0 12px 36px rgba(0,0,0,0.12),
    0 8px 20px rgba(25, 118, 210, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 50%, #fff 100%);
  border-radius: 28px 28px 0 0;
  animation: cardShine 4s ease-in-out infinite;
}

.services-cta::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 30px;
  z-index: -1;
  animation: cardGlow 5s ease-in-out infinite;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  letter-spacing: -0.5px;
  position: relative;
}

.cta-content h3::after {
  content: '';
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  border-radius: 2px;
  animation: titleUnderline 3s ease-in-out infinite;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.cta-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

.cta-buttons .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  color: #1976d2;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Professional Responsive Design */
@media (max-width: 1200px) {
  .services-header h2 {
    font-size: 3rem;
  }
  .services-grid {
    gap: 1.5rem;
  }
  .service-card {
    min-width: 300px;
    max-width: 350px;
  }
}

@media (max-width: 900px) {
  .services {
    padding: 5rem 0 4rem 0;
  }
  .services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }
  .services-header p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .service-card {
    padding: 2.5rem 2rem;
    min-width: 100%;
    max-width: 500px;
  }
  .service-content h3 {
    font-size: 1.6rem;
  }
  .service-content p {
    font-size: 1rem;
  }
  .cta-content h3 {
    font-size: 1.8rem;
  }
  .cta-content p {
    font-size: 1.1rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 700px) {
  .services {
    padding: 4rem 0 3rem 0;
  }
  .services-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .services-header p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  .service-icon svg {
    width: 36px;
    height: 36px;
  }
  .service-content h3 {
    font-size: 1.4rem;
  }
  .service-content p {
    font-size: 0.95rem;
  }
  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .services-cta {
    padding: 2rem 1.5rem;
  }
  .cta-content h3 {
    font-size: 1.6rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
  .cta-buttons .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* Add Box Form Styles */
.add-box-form {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.add-box-form:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.add-box-form h3 {
  color: #1976d2;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 100%;
  min-width: 100%;
}

.form-group label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.add-box-form .btn {
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.add-box-form .btn:hover {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

#formMessage {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
}

#formMessage div {
  margin: 0;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .add-box-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .form-group {
    min-width: 100%;
  }
  
  .add-box-form h3 {
    font-size: 1.3rem;
  }
  
  .add-box-form .btn {
    width: 100%;
    padding: 1rem;
  }
}