* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    background: linear-gradient(to right, white, #22A15C);
    color: white;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    margin-top :5px;
  height:70px;
  width:170px;
}

.logo::before,
.logo::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #7ED957, #22A15C);
}

.logo::before {
    top: -6px;
}

.logo::after {
    bottom: -6px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    padding-top: 8px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    padding: 10px 5px; 
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    border-radius: 5px;
    background-color: white;
    color: #22A15C;
}

#toggle-menu {
    display: none;
}

.toggle-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

#label-menu{
    display: none;
}
.dropdown{
    position: relative;
}
.dropdown-menu{
    position: absolute;
    /* background-color: #22A15C; */
    background-color: #22A15C;
    display: none;
    border-radius: 5px;
    padding: 10px 0;
    max-width: 150px;
    z-index: 1000;
    list-style: none;
}
.dropdown-menu li a{
    display: block;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover{
    background-color: #1d8a4e;
    color: white;
}

.drop-label{
    color: white;
    cursor: pointer;
    padding-top: 5px;
    font-weight: bold;
}
#label-menu:checked + .drop-label + .dropdown-menu{
    display: block;
} 

@media (max-width: 768px) {
    .navbar {
        display: flex;
        position: sticky;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .toggle-menu {
        display: block;
        border: 1px solid white;
        padding: 5px 10px;
        border-radius: 10px;
    }

    #toggle-menu:checked+.toggle-menu+.nav-links {
        display: flex;
    }

    .drop-label{
        color: white;
        display: block;
    }
    .dropdown-menu{
        position: sticky;
    }
    
}


.carousel {
    position: relative;
    width: 100%;
    /* height: 80vh; */
    /* overflow: hidden; */
    display: block;
}

.carousel img {
    /* width: auto;
    max-width: 100%;
    max-height: 70vh; */
    width: 100%;
    height: auto;
    display: block;
}

.carousel .heading {
    display: flex;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 47, 2 , 41%);
    height: auto;
    width: auto;
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 0px 20px;
}

.carousel .heading h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Hero Animations ===== */

/* Ken Burns effect - image slowly zooms while slide is shown */
.carousel-item img {
    animation: kenburns 9s ease-in-out forwards;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

/* Heading text - slides up & fades in when slide becomes active */
.carousel-item .heading h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-item.active .heading h2 {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(90deg, #ffffff, #7ED957, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textshine 3s linear infinite;
}

@keyframes textshine {
    to {
        background-position: 200% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item img,
    .carousel-item.active .heading h2 {
        animation: none;
        transition: none;
    }
    .carousel-item .heading h2 {
        opacity: 1;
        transform: none;
        background: none;
        -webkit-text-fill-color: white;
    }
}

@media (max-width: 768px) {
    .carousel {
        /* height: 30vh; */
    }

    .carousel .heading {
        padding: 10px;
        border-radius: 15px;
        margin-bottom: 5px;
    }

    .carousel .heading h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .carousel {
        /* height: 20vh; */
    }

    .carousel .heading h2 {
        font-size: 10px;
    }
}

/* About Section */
.about {
    position: relative;
}

.about-heading {
  position: relative;
}

.about-heading::after {
  content: "";
  display: block;
  width: 50px; /* line ki length */
  height: 4px;
  background-color: #22A15C;
  margin: 8px auto 0; /* center karega */
  border-radius: 2px;
}

.about img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.about img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}



/* Services Section */
.services {
    display: flex;

}

.services .card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* gradient glow border effect */
.services .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, #22A15C, #1d8a4e, #7ED957);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* hover main effect */
.services .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* border glow show on hover */
.services .card:hover::before {
    opacity: 1;
}

/* icon animation */
.services .card i {
    transition: 0.4s;
    color: #1d8a4e;
}

.services .card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #22A15C;
}

/* text smooth effect */
.services .card h5 {
    transition: 0.3s;
}

.services .card:hover h5 {
    letter-spacing: 1px;
}

.call {
    background-color: #22A15C;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
}

/* About Page */
.impact {
    position: relative;
}

.impact-box {
    background: #22A15C;
    color: white;
    width: 100%;
    height: auto;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.impact-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.impact-box i {
    font-size: 30px;
    padding: 15px;
    background-color: #1d8a4e;
    border-radius: 50%;
}

.impact-box:hover i {
    transform: rotate(360deg) scale(1.2);
    background-color: #ff006e;
}


/* Service page  */

.service-section {
    padding: 60px 0;
}

.service-title {
    text-align: center;
    margin-bottom: 40px;
}

.service-title h2 {
    font-weight: bold;
    color: #14532d;
}

.card-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-box:hover {
    transform: translateY(-10px);
    background: #14532d;
    color: #fff;
}

.card-box:hover h5,
.card-box:hover p {
    color: #fff;
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff6b00;
}

.card-box:hover .icon {
    color: #fff;
}

h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #14532d;
}

/* Network page */

.network-stats {
    padding: 60px 0;
    background: #f4f6fb;
}

.circle-box {
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

.circle-box h2 {
    font-size: 28px;
    font-weight: bold;
    color: #14532d;
    margin-bottom: 5px;
}

.circle-box p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Hover Effect 🔥 */
.circle-box:hover {
    transform: scale(1.1);
    background: #14532d;
    border-color: #ff6b00;
}

.circle-box:hover h2,
.circle-box:hover p {
    color: #fff;
}

/* Network Section */
.network-work {
    position: relative;
}
.network-work .card {
    padding: 10px 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}
.network-work .card:hover {
     transform: translateY(-8px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.network-work .card i {
  background-color: #7ED957;
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
}


.network-work .card:hover i {
  background-color: #22A15C;
  transform: scale(1.1);
}

/* Contact Page */
.hero-section {
    position: relative;
}

.hero-section img {
    width: 100%;
    max-height: 400px;
}

.hero-section .overlay {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 47, 2, 41%);
    padding: 10px 15px;
    border-radius: 20px;

}

.hero-section .overlay h2 {
    font-size: 40px;
    color: white;
}

@media (max-width: 576px) {
    .hero-section .overlay h2 {
        font-size: 20px;
    }
}


.contact-modern {
  background: #f8f9fa;
}

.contact-form-box {
  background: white;
  border-radius: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  border-radius: 25px;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.contact-form-box button {
  border-radius: 10px;
  padding: 10px;
}

/* Card box */
.contact-box {
  padding: 15px 15px;
  transition: 0.3s ease;
}

/* Icon circle */
.contact-box .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #14532d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
}

/* Heading */
.contact-box h5 {
  margin-bottom: 10px;
}

/* Hover effect */
.contact-box:hover {
  transform: translateY(-5px);
}


/* Tracking Page */
.tracking-section {
    background: #f4f4f4;
    padding-bottom: 80px;
}

.track-box{
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.track-left{
    background-color: #22A15C;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.track-tabs {
    display: flex;
    gap: 10px;
}
.track-tabs button {
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    background: #eee;
    cursor: pointer;
}
.track-tabs .active {
     background: #ddd;
     font-weight: bold;
}
.form-control{
    border-radius: 10px;
    padding: 10px;
}
.track-btn {
    background: #22A15C;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
}
.services-mini {
  background: linear-gradient(135deg, #f8f9fa, #e6f7ee);
}

/* Card Styling */
.services-mini .card {
  border-radius: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Effect Layer */
.services-mini .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(34,161,92,0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* Hover Effect */
.services-mini .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-mini .card:hover::before {
  opacity: 1;
}

/* Icon Styling */
.services-mini .icon {
  font-size: 28px;
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #22A15C, #7ED957);
  color: white;
  border-radius: 50%;
  transition: all 0.4s ease;
}

/* Icon Hover */
.services-mini .card:hover .icon {
  transform: rotate(10deg) scale(1.15);
}

/* Heading */
.services-mini h6 {
  margin-top: 10px;
  font-size: 16px;
}

/* Paragraph */
.services-mini p {
  font-size: 13px;
  color: #6c757d;
}

/* Calculage page */
.header {
  background-color: rgb(218, 234, 248);
  padding: 20px;
  text-align: center;
}

.breadcrumb a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 5px;
  color: gray;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.calc-card-new {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.calc-card-new:hover {
  transform: translateY(-5px);
}

.calc-card-new input {
  width: 100%;
  margin: 5px 0;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.calc-card-new button {
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: #1d8a4e;
  color: white;
}

.calc-card-new button:hover {
  background: #2c2a6a;
}


/* links */
.footer {
    /* background: linear-gradient(to right, #14532d, #1d8a4e, #22A15C);
    color: white; */
    background: linear-gradient(to right, white, #22A15C);
    color: #14532d;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    /* color: white; */
    color: #14532d;
    text-decoration: none;
    transition: 0.3s;
}


.footer-links a:hover {
    /* color: #7ED957; */
    color: #22A15C;
    padding-left: 5px;
}

/* social icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    /* color: white;
    background: rgba(255, 255, 255, 0.1); */
    color: #14532d;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    /* background: #7ED957;
    color: black; */
    background: #22A15C;
    color: white;
    transform: scale(1.2);
}

/* ===== Courier Tracking Page ===== */
.track-search {
    background: #f4f6fb;
}

.track-search-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.track-btn-green {
    background: #22A15C;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    white-space: nowrap;
}

.track-btn-green:hover {
    background: #1d8a4e;
    color: #fff;
}

.error-msg {
    color: #dc2626;
    font-weight: 600;
}

/* Shipment summary */
.ship-summary {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.status-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.status-badge.transit {
    background: #f0ad4e;
    color: #fff;
}

.status-badge.delivered {
    background: #22A15C;
    color: #fff;
}

.status-badge.outfor {
    background: #f0ad4e;
    color: #fff;
}

.status-badge.picked {
    background: #7ED957;
    color: #14532d;
}

.status-badge.booked {
    background: #6c757d;
    color: #fff;
}

.summary-label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.summary-value.green {
    color: #22A15C;
}

/* Progress stepper */
.track-steps {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin: 0 auto 8px;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step.done .step-ico {
    background: #22A15C;
    color: #fff;
}

.step.active .step-ico {
    background: #f0ad4e;
    color: #fff;
    animation: stepPulse 1.6s infinite;
}

.step::before {
    content: "";
    position: absolute;
    top: 23px;
    left: -50%;
    width: 100%;
    height: 4px;
    background: #e5e7eb;
}

.step:first-child::before {
    display: none;
}

.step.done::before,
.step.active::before {
    background: #22A15C;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.step.done .step-label {
    color: #14532d;
}

.step.active .step-label {
    color: #b45309;
    font-weight: 700;
}

@keyframes stepPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 173, 78, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(240, 173, 78, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(240, 173, 78, 0);
    }
}

@media (max-width: 576px) {
    .track-steps {
        flex-wrap: wrap;
        gap: 15px 0;
    }
    .step {
        min-width: 33%;
    }
    .step::before {
        display: none;
    }
}

/* Tracking timeline */
.track-timeline {
    position: relative;
    padding: 15px 20px 5px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.track-timeline::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background: #e5e7eb;
}

.timeline-item {
    position: relative;
    padding: 12px 20px 12px 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 18px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 2px solid #fff;
}

.timeline-item.done::before {
    background: #22A15C;
}

.timeline-item.current::before {
    background: #f0ad4e;
    box-shadow: 0 0 0 5px rgba(240, 173, 78, 0.2);
}

.timeline-date {
    font-size: 12px;
    color: #9ca3af;
}

.timeline-status {
    font-weight: 700;
    color: #111827;
}

.timeline-loc {
    font-size: 13px;
    color: #6b7280;
}

.timeline-item.current .timeline-status {
    color: #b45309;
}

/* Shipment details */
.detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.detail-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #14532d;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #6b7280;
}

.detail-value {
    font-weight: 600;
    color: #111827;
    text-align: right;
}