:root {
    --color-1: #00c996;
    --color-1-10: #00C9961A;
    --color-1-20: #00C99630;
    --color-2: #DDF1EC;
    --color-3: #282c34;
    --color-4: #64748B;
    --color-4-50: #64748B50;
    --color-5: #E5E7EB;
    --color-6: #0F7167;
    --color-7: #4A5565;
    --color-8: #C2FFF980;
    --color-gold: #EAB308;
    --white-50: #FFFFFF80;
    --color-9: #101828;
}

@font-face {
  font-family: 'Font_1';
  src: url('./assets/fonts/Lexend-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@keyframes moveY {
  0%, 25%, 100% {
    transform: translateY(0);
  }
  50%, 75% {
    transform: translateY(-6px);  /* move down */
  }
}

.moveY {
    animation: moveY 2.5s ease-in-out infinite;
}

@keyframes scaleZoom {
  0%, 25%, 100% {
    transform: scale(1);
    transform-origin: 50% 0%; 
  }
  50%, 75% {
    transform: scale(1.1);
    transform-origin: 50% 0%; 
  }
}

.scaleZoom {
    animation: scaleZoom 2.5s ease-in-out infinite;
}

@keyframes rotateZ {
  0%, 30%, 100% {
    transform: rotateZ(0);
    transform-origin: 0% 60%; 
  }
  50%, 80% {
    transform: rotateZ(2deg);
    transform-origin: 0% 60%; 
  }
}

.rotateZ {
    animation: rotateZ 4.5s ease-in-out infinite;
}


img {
    max-width: 90%;
}

input.form-control:focus {
    outline: none;
    box-shadow: none;
}

* {
    box-sizing: border-box;
    transition: all .3s;
}
body {
    margin: 0;
    font-family: 'Font_1', 'Calibri', sans-serif;
}
a {
    text-decoration: none;
    cursor: pointer;
}

.info {
    background-color: var(--color-1-10);
    color: var(--color-1);
}

.main-btn {
    background-color: transparent;
    border: none;
    border-radius: 10rem;
    padding: .5rem 1rem;
    line-height: 24px;
    color: var(--color-3);
    font-family: 'Font_1', 'Calibri', sans-serif;
}
.main-btn:hover, .main-btn.active {
    background-color: var(--color-1);
    color: white;
}
.main-btn-gradient {
    background-color: transparent;
    line-height: 24px;
    color: var(--color-3);
    border: 2px solid var(--color-1-20);
}
.main-btn-gradient:hover, .main-btn-gradient.active {
    background: linear-gradient(to bottom right, var(--color-1),#78EDE2);
    color: white;
    border: 2px solid transparent;
}

.slider-control-btn {
    color: #808080;
}
.slider-control-btn:hover {
    color: #3E66DF;
}

.black-btn {
    padding: 14px 40px;
    font-size: 18px;
    transform-origin: 0% 50%;
    border-radius: 10rem;
    background-color: black;
    color: white;
    border: none;
}
.black-btn:hover {
    transform: scale(1.2);
    transform-origin: 0% 50%;
}

.white-btn {
    background-color: white;
    color: var(--color-1);
    box-shadow: 0px 10px 30px -10px #FFFFFF4D;
    border: none;
    padding: 12px 32px;
    border-radius: 5rem;
    font-weight: bolder;
}

.text-color-1 {
    color: var(--color-1);
}
.text-color-3 {
    color: var(--color-3);
}
.text-color-4 {
    color: var(--color-4);
}
.text-color-5 {
    color: var(--color-5);
}
.text-color-7 {
    color: var(--color-7);
}
.text-color-9 {
    color: var(--color-9);
}
.text-gold {
    color: var(--color-gold);
}
.bg-color-1 {
    background-color: var(--color-1);
}
.bg-color-1-10 {
    background-color: var(--color-1-10);
}
.bg-color-1-20 {
    background-color: var(--color-1-20);
}
.bg-color-2 {
    background-color: var(--color-2);
}
.bg-color-3 {
    background-color: var(--color-3);
}
.bg-color-4 {
    background-color: var(--color-4);
}
.bg-color-5 {
    background-color: var(--color-5);
}
.bg-white-50 {
    background-color: var(--white-50);
}
.bg-color-8 {
    background-color: var(--color-8);
}
.border-color-1-10 {
    border: 1px solid var(--color-1-10) !important;
}
.fs-12px {
    font-size: 12px;
}
.fs-14px {
    font-size: 14px;
}
.fs-18px {
    font-size: 18px;
}
.fs-20px {
    font-size: 20px;
}
.fs-24px {
    font-size: 24px;
}
.fs-30px {
    font-size: 30px;
}
.fs-48px {
    font-size: 48px;
}
.fs-56px {
    font-size: 56px;
}
.box-shadow-1 {
    box-shadow: 0 10px 30px -10px #38E5D44D;
}
.box-shadow-2 {
    box-shadow: 0px 4px 6px -4px #2B7FFF1A;
    box-shadow: 0px 10px 15px -3px #2B7FFF1A;
    backdrop-filter: blur(8px)
}
.mw-800 {
    max-width: 800px;
}
.mw-550 {
    max-width: 550px;
}
.break-line {
    height: 2px ;
    background-color: white;
    margin: 1rem 0;
}
.lh-28px {
    line-height: 28px;
}
.lh-36px {
    line-height: 36px;
}
.lh-60px {
    line-height: 60px;
}
.bg-gradient-1{
    background: linear-gradient(to bottom right, var(--color-1),#78EDE2);
}
.size-16{
    width: 16px;
    height: 16px;
}
.size-18{
    width: 18px;
    height: 18px;
}
.size-24{
    width: 24px;
    height: 24px;
}
.size-32{
    width: 32px;
    height: 32px;
}
.size-36{
    width: 36px;
    height: 36px;
}
.size-40{
    width: 40px;
    height: 40px;
}
.size-42{
    width: 42px;
    height: 42px;
}

@media (max-width: 767px) {
    .fs-56px {
        font-size: 36px !important;
    }
    .fs-48px {
        font-size: 32px !important;
    }
    .fs-30px {
        font-size: 24px !important;
    }
    .fs-24px {
        font-size: 20px !important;
    }
    .lh-60px {
    line-height: 45px;
    }
}

@keyframes dotMove {
  0%, 12.5% {
    transform: translate(0px, 0px);
  }
  12.6%, 25% {
    transform: translate(40px, -7px);
  }
  25.1%, 37.5% {
    transform: translate(80px, -6px);
  }
  37.6%, 50% {
    transform: translate(120px, 0.5px);
  }
  50.1%, 62.5% {
    transform: translate(170px, -7px);
  }
  62.6%, 75% {
    transform: translate(220px, -3.5px);
  }
  75.1%, 87.5% {
    transform: translate(270px, -1px);
  }
  87.6%, 100% {
    transform: translate(318px, -8px);
  }
}
@keyframes dotMoveXm {
  0%, 12.5% {
    transform: translate(0px, 0px);
  }
  12.6%, 25% {
    transform: translate(20px, -7px);
  }
  25.1%, 37.5% {
    transform: translate(40px, -8.5px);
  }
  37.6%, 50% {
    transform: translate(60px, -2.3px);
  }
  50.1%, 62.5% {
    transform: translate(90px, -3.5px);
  }
  62.6%, 75% {
    transform: translate(120px, -8px);
  }
  75.1%, 87.5% {
    transform: translate(160px, 0px);
  }
  87.6%, 100% {
    transform: translate(200px, -8.5px);
  }
}
.dot-move{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12px;
}
.dot-move .dot{
    width: .2rem;
    height: .2rem;
    border-radius: .2rem;
    background-color: black;
    position: absolute;
    left: 0%;
    top: 70%;
    animation: dotMove 4.5s ease-in-out infinite;
}
.dot-move img {
    max-width: 400px;
    width: 100%;
}
@media (max-width: 767px) {
    .dot-move .dot{
        animation: dotMoveXm 4.5s ease-in-out infinite;
        
    }
    .dot-move img {
        max-width: 200px;
        width: 100%;
    }
}

/* Navbar Css */

nav.navbar {
    position: fixed;
    background-color: transparent !important;
    padding: 2rem 0;
}
nav.navbar .container-fluid {
    justify-content: center;
}
nav.navbar .main-nav-bar {
    background-color: white;
    display: flex;
    position: absolute;
    top: 2rem;
    border-radius: 10rem;
    padding: 0 1rem;
    align-items: center;
}
nav.navbar .main-nav-bar .navbar-nav {
    gap: .5rem;
}
nav.navbar .main-nav-bar .download-btn {
    background-color: var(--color-1);
    padding: .3rem .8rem;
    border-radius: 10rem;
    color: white;
}
@media (max-width: 991px) {
    nav.navbar .main-nav-bar .download-btn {
        margin: .5rem 0;
    }
    nav.navbar .main-nav-bar {
        width: 95%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    nav.navbar .main-nav-bar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    nav.navbar .main-nav-bar .navbar-nav {
        flex-direction: column;
        padding: 1rem;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--color-1);
}

.navbar-nav .nav-link.active{
    color: var(--bs-navbar-active-color);
    border-bottom: 2px solid var(--color-1);
}

#navBar .nav-item .dropdown-menu .active {
    border-left: 2px solid var(--color-1);
    background-color: var(--color-8);
}
#navBar .nav-item .dropdown-menu li:hover {
    border-left: 2px solid var(--color-1);
}
#navBar .nav-item .dropdown-menu li:hover a{
    transform: translateX(2px);
}

/* Header Css */

#HomePage.header {
    background: linear-gradient(to bottom right, var(--color-1), #2CFFC9, #FFFFFF);
}

.header {
    min-height: 418px;
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.header .header-info {
    color: #364153;
    font-size: 14px;
    border: 1px solid #E5E7EB99;
    font-weight: 500;
    padding: .5rem;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

.header h1 {
    font-size: 3rem;
}

.header .header-btn {
    width: 210px;
    height: 75px;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
}
.header .header-btn i {
    font-size: 2rem;
    margin-right: 1rem;
}

/* Main Css */

section.main {
    padding: 120px 0;
}


/* Footer Css */

footer {
    padding-top: 2rem;
    background-color: var(--color-1);
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

/* Process cards */

.process-cards {
    margin-bottom: 62px;
}

.process-cards .process-card {
    max-width: 434px;
    
    padding: 32px;
    border: 1px solid var(--color-5);
    box-shadow: 0 1px 2px #0000000D;
    border-radius: 12px;
}
.process-cards .process-card.active {
    transform: scale(1.05);
    border-color: var(--color-1);
    box-shadow: 5px 8px 12px var(--color-1-20);
}

.process-cards .process-card.active >div {
    background: linear-gradient(to bottom right, var(--color-1),#78EDE2);
}
.process-cards .process-card.active >div i {
    color: white;
}

.process-cards .process-card > div {
    width: 62px;
    height: 62px;
    border-radius: 100%;
    background: #2CFFC9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.process-cards .process-card > div i {
    font-size: 35px;
    color: var(--color-6);
}
.process-cards .process-card.active .extra-info {
    display: block;
}
.process-cards .process-card .extra-info {
    display: none;
    margin-top: 1rem;
    padding-left: 1.8rem;
    font-size: 14px;
    color: var(--color-4);
}
.process-cards .process-card .extra-info li::marker {
    content: "✅ ";
}

.process-orders > div {
    display: flex;
    align-items: center;
    box-shadow: 0px 10px 30px -10px #38E5D44D;
}

@media (max-width: 424px) {
    .process-orders {
        transform: scale(.75);
    }
    /* .process-orders > div {
        flex-direction: column;
    }
    .process-orders > div .fa-light{
        transform: rotateZ(90deg);
    } */
}

.process-orders .process-order {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 102px;
}
.process-orders .process-order > div {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: var(--color-1-10);
    color: var(--color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Property Cards */

.property-cards {
    display: flex;
    justify-content: center;
    gap: 12px;
}
@media (max-width: 767px) {
    .property-cards {
        flex-direction: column;
        align-items: center;
    }
}
.property-cards .property-card{
    width: 198.39px;
    height: 202px;
    border: 1px solid var(--color-5);
    border-radius: 12px;
    padding: 24px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 2px #0000000D;
    color: var(--color-3);
}

.property-cards .property-card > div {
    width: 62px;
    height: 62px;
    border-radius: 100%;
    background-color: var(--color-1-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.property-cards .property-card > div i {
    font-size: 32px;
}
.property-cards .property-card h5 {
    font-weight: bolder;
    font-size: 20px;
}
.property-cards .property-card p {
    font-size: 14px;
    opacity: 70%;
}

.main.bg-gradient-1 .property-cards .property-card{
    background-color: white;
    color: var(--color-1);
}

.track-card {
    font-size: 14px;
    background-color: #FFFFFF80;
    max-width: 448px;
}
.track-card .track-btn {
    width: 81.75px;
    height: 40px;
    line-height: 40px;
    border: none;
    background-color: #C2FFF9;
    padding: 0 3px;
}
.track-card .track-btn:hover {
    background: var(--color-1);
    color: white;
}

.tracking-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 0.5rem;
    display: none;
    animation: shake 0.5s ease-in-out;
}

.input-error {
    border: 2px solid #ff4444 !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.modify {
    background: linear-gradient(to bottom right, var(--color-1),#78EDE2);
    color: white;
    padding: 2px 12px;
}

.download-img-bg {
    background-color: var(--color-1-10);
    width: 450px;
    height: 450px;
    border-radius: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .download-img-bg {
        background-color: var(--color-1-10);
        width: 300px;
        height: 300px;
        border-radius: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .download-img-bg img {
        width: 175px;
        height: 200px;
    }
}

.download-card {
    min-width: 220px;
    padding: 25px;
    border-radius: .5rem;
    border: 1px solid var(--color-5);
    margin: .5rem auto;
}

.download-card .mobile-icon {
    background-color: #22C55E1A;
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
}

.download-card .mobile-icon-blue {
    background: #3B82F61A;
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
    color: #2563EB;
}

.download-card .download-btn {
    border: none;
    border-radius: 10rem;
    padding: .5rem 1rem;
    line-height: 24px;
}

.download-card .download-btn.transparent-btn {
    background-color: transparent;
    color: var(--color-1);
    border: 1px solid var(--color-1);
}

.message-card {
    background-color: white;
    color: #364153;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    font-size: 18px;
    line-height: 28px;
    padding: 36px 33px;
    margin-bottom: 32px;
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

/* Service Timeline */
.service-timeline > div.service:nth-child(even) {
    flex-direction: row-reverse;
}
.service-timeline .service-content {
    padding-top: 55px;
}
.service-timeline .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-timeline .timeline img {
    width: 48px;
    height: 48px;
}
.service-timeline .service-line {
    width: 4px;
    height: 450px;
    background-color: #E5E7EB;
}

.service-timeline .timeline.tl-50 .service-line {
    height: 200px;
}
.service-timeline .service>div{
    /* display: flex; */
}
.service-timeline .service-img {
    padding: 10px;
    text-align: center;
}
.service-timeline .service-img img {
    max-width: 100%;
    max-height: 342;
    animation: scaleZoom 2.5s ease-in-out infinite;
}
@media (max-width: 767px) {
    .service-timeline div.timeline {
        display: none;
    }
    .service-timeline .service-content {
        padding-top: 32px;
    }
}

.header .badge {
    display: flex;
    align-items: center;
}
.badge {
    color: #364153;
    font-size: 14px;
    line-height: 14px;
    border: 1px solid #E5E7EB99;
    font-weight: 500;
    padding: .5rem .8rem;
    box-shadow: 0px 1px 2px 0px #0000000D;
}
.header .badge i, .header .badge img {
    margin-right: 6px;
}

/* FAQs Css */
#faqs_accordion  {
    border-bottom: 1px solid black;
}
#faqs_accordion .faq {
    border-top: 1px solid black;
}
#faqs_accordion .faq .faq-header a{
    font-size: 24px;
    line-height: 150%;
    color: black;
    justify-content: space-between;
    padding: 26px 24px;
}
#faqs_accordion .faq .faq-header a:active {
    border-color: transparent;
}

#faqs_accordion .faq .faq-body {
    color: var(--color-3);
    padding: 0 24px;
    padding-bottom: 26px;
    font-size: 18px;
    line-height: 180%;
}

.join-img {
    margin: auto;
}

#accordion button.main-btn {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    padding: 8px 16px;
}

.contact-info{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1399px) {
    #JTSCT .join-img{
        width: 360px;
        height: 264px;
    }
}

@media (max-width: 767px) {
     #JTSCT .img-group {
        margin-left: 10%;
     }
    #JTSCT .join-img{
        width: 250px;
        height: 185px;
    }
    #accordion button.main-btn {
        font-size: 16px;
    }
    .contact-info{
        justify-content: start;
        padding-left: 5%;
    }
}

@media (max-width: 374px) {
    #JTSCT .join-img{
        width: 210px;
        height: 154px;
    }
}

.contact-input {
    width: 100%;
    border: none;
    background-color: #FBFBFB;
    padding: 15px;
    margin-bottom: 30px;
}

textarea.contact-input {
    height: 150px;
}

.contact-input:focus {
    outline: none;
}

#userInfo {
    background-color: #101828;
}

.user-item{
    border-radius: 12px;
    padding: 24px;
    background-color: white;
    margin: .5rem 1rem;
}

.user-item .user-avatar{
    width: 80px;
    height: 80px;
    border: 3px solid #3E66DF4D;
    border-radius: 80px;
    margin-right: 16px;
    background-position: center;
    background-size: cover;
}
.user-item .user-info {
    display: flex;
    align-items: center;
}

.user-item .user-name {
    margin-bottom: 5px;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    color: var(--color-1);
}

.user-item .user-roll {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0px;
}

.user-item .content {
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
}

@media (max-width: 424px) {
    .user-item .user-info {
        flex-direction: column;
    }
}

#contactMap {
    background-image: url(./assets/img/contact\ map.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    min-height: 320px;
}

/* Tracking Modal */
.tracking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.tracking-modal.show {
    display: flex;
}

.tracking-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.tracking-header {
    background: linear-gradient(135deg, var(--color-1), #78EDE2);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.tracking-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tracking-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.tracking-body {
    padding: 2rem;
}

.tracking-timeline {
    position: relative;
    padding-left: 2rem;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-1), #78EDE2);
    border-radius: 2px;
}

.tracking-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.tracking-step:nth-child(1) { animation-delay: 0.1s; }
.tracking-step:nth-child(2) { animation-delay: 0.2s; }
.tracking-step:nth-child(3) { animation-delay: 0.3s; }
.tracking-step:nth-child(4) { animation-delay: 0.4s; }
.tracking-step:nth-child(5) { animation-delay: 0.5s; }
.tracking-step:nth-child(6) { animation-delay: 0.6s; }
.tracking-step:nth-child(7) { animation-delay: 0.7s; }

.tracking-step::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--color-1);
    z-index: 1;
}

.tracking-step.completed::before {
    background: var(--color-1);
    animation: pulse 2s infinite;
}

.tracking-step.current::before {
    background: var(--color-gold);
    border-color: var(--color-gold);
    animation: glow 2s infinite;
}

.step-title {
    font-weight: bold;
    color: var(--color-3);
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--color-4);
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.step-time {
    color: var(--color-1);
    font-size: 12px;
    font-weight: 500;
}

.tracking-info {
    background: var(--color-1-10);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.info-label {
    color: var(--color-4);
    font-size: 14px;
}

.info-value {
    color: var(--color-3);
    font-weight: 500;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--color-gold); }
    50% { box-shadow: 0 0 20px var(--color-gold), 0 0 30px var(--color-gold); }
}

@media (max-width: 768px) {
    .tracking-content {
        width: 95%;
        margin: 1rem;
    }
    
    .tracking-header {
        padding: 1.5rem;
    }
    
    .tracking-body {
        padding: 1.5rem;
    }
    
    .info-row {
        flex-direction: column;
        gap: 0.25rem;
    }
}