*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --lime: #C8FF00; --black: #000; --white: #fff; --dark-bg: #1A1A1A;
    --card-dark: #2A2A2A; --beige: #F0EBDF; --muted: #999; --peach: #FDDCB5;
    --green-badge: #4ADE80; --pink-badge: #F472B6; --teal-badge: #2DD4BF; --orange-badge: #FB923C;
}
a:hover {color: #000; text-decoration: none; outline: none;}
body { font-family: "Overused-medium"; background: var(--black); color: #fff; overflow-x: hidden; }
p {font-family: "Overused-regular"; font-size: 18px; font-weight: 400; color: #fff;}
.section-title{text-align: center; font-family: "Radwave"; font-size: 52px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;}
section .header {margin-bottom: 60px;}
.btn-trial { display: inline-block; background: var(--lime); color: var(--black); padding: 10px 24px; border-radius: 50px; font-size: 16px; font-weight: 500; text-decoration: none; cursor: pointer; transition: transform 0.2s; }
.btn-trial:hover { transform: translateY(-1px);}

.hero { position: relative; top: -90px; height: 700px; overflow: hidden; border-radius: 15px; margin: 0 15px;}
.hero-bg { position: absolute; inset: 0; background: url('images/hero.webp'); background-size: cover; background-position: center; background-repeat: no-repeat;}
.hero-overlay {position: absolute; inset: 0;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 60%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 15%, transparent 40%); 
}
.hero-content { position: absolute; z-index: 10; max-width: 800px; padding: 0px 70px 120px; bottom: 0px; }
.hero-content h1 { font-size: 70px; font-weight: 500; line-height: 66px; letter-spacing: -0.02em; color: #fff; margin-bottom: 25px;}
.hero-content p { max-width: 400px; margin-bottom: 30px; color: #fff;}

.capability-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 0px 75px 100px;
}
.capability-section .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 160px;
}
.capability-section .header-content h2 {
    font-family: 'Overused-medium';
    font-size: 48px;
    font-weight: 500;
    line-height: 46px;
    text-align: left;
}
.capability-section .header-content p {
    font-size: 20px;
    line-height: 24px;
    text-align: left;
}
.feature-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: start;
}
.masonry-col:nth-child(2) {
    margin-top: -100px;
}
.feature-card-os {
    background: linear-gradient(to bottom, #252525 0%, #131313 100%);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}
.feature-card-os h3 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 12px;
}
.feature-card-os p {
    color: #DCDCDC; 
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 30px;
    max-width: 280px;
    margin: 0 auto;
}

.carrier-section {
    background-color: #000;
    position: relative;
    overflow: visible;
}
.carrier-section .envelop {
    position: relative;
    background-color: transparent; 
    padding: 0 30px 100px 30px;
    z-index: 1; 
}
.carrier-section .envelop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F9F7ED;
    clip-path: polygon(50% 20%, 100% 0, 100% 100%, 0 100%, 0 0);
    border-radius: 22px 22px 0 0;
}
.carrier-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.main-delivery-icon {
    width: 300px;
    height: 300px;
    background: linear-gradient(to bottom, #E9E5D0 0%, #F9F7ED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    position: absolute;
    top: 0px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.main-delivery-icon img {
    width: 150px;
}
.carrier-logo {
    position: absolute;
    background: #EFECDB;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
}
.carrier-logo img {
    height: 26px;
    width: auto;
}
.logo-delhivery { top: 300px; left: 13%; }
.logo-shiprocket { top: 300px; right: 15%; }
.logo-bluedart   { top: 450px; left: 0%; }
.logo-xpressbees { top: 450px; right: 0%; }
.logo-ecom       { bottom: -435px; left: 10%; }
.logo-express    { bottom: -435px; right: 10%; }
.carrier-content {
    padding-top: 100px;
}
.carrier-title {
    font-size: 56px;
    font-weight: 600;
    color: #000;
}
.carrier-subtitle {
    font-family: 'Overused-regular';
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #000;
}
.carrier-description {
    font-size: 20px;
    line-height: 22px;
    padding-bottom: 40px;
    color: #000;
    max-width: 620px;
    margin: 0 auto;
}
.carrier-content .btn-trial {
    border: 1px solid rgba(0,0,0,0.5);
}

.impact-section {
    background-color: #072E2E; 
    padding: 100px 0;
    color: #fff;
    text-align: center;
}
.impact-header {
    max-width: 600px;
    margin: 0 auto 120px;
}
.impact-header h2 {
    font-size: 56px;
    font-weight: 500;
    line-height: 58px;
    margin-bottom: 20px;
}
.impact-header p {
    font-size: 18px;
    line-height: 20px;
    color: #D1D1D1;
}
.stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.stat-card {
    position: relative;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
    background: linear-gradient(to right, #020E0E 0%, #072E2E 100%);
    width: 500px;
    height: 275px;
}
.stat-card:nth-child(1) {
    right: -50px;
}
.stat-card:nth-child(3) {
    left: -50px;
    background: linear-gradient(to left, #020E0E 0%, #072E2E 100%);
}
.main-card {
    width: 360px;
    height: 275px;
    background: none;
    background-color: #E3FF75;   
    z-index: 2;
    top: -50px;
    box-shadow: 0px 35px 26px 30px rgba(7, 46, 46, 0.7);
}
.dotted-border-card {
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;

} 
.stat-card:nth-child(1) .dotted-border-card {
    border-right: none;
}
.stat-card:nth-child(3) .dotted-border-card {
    border-left: none;
}
.main-card .dotted-border-card { 
    border: 1px dashed rgba(0, 0, 0, 0.3);
}
.stat-card h3 {
    font-size: 46px;
    color: #E3FF75; 
    margin-bottom: 10px;
}
.stat-card p {
    font-family: 'Overused-medium';
    font-size: 24px;
    line-height: 22px;
    font-weight: 600;
}
.main-card h3,
.main-card p {
    color: #000;
}
.powered-by {
    font-family: 'Overused-medium';
    font-size: 20px !important;
    line-height: 24px !important;
    font-weight: 500 !important;
    color: #000;
    margin-top: 20px;
}


.ndr-section {
    background-color: #000;
    padding: 100px 75px;
    color: #fff;
}
.ndr-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}
.ndr-header h2 {
    font-size: 56px;
    font-weight: 600;
    line-height: 52px;
    margin-bottom: 25px;
}
.ndr-header p {
    font-size: 22px;
    color: #D4D4D4;
    line-height: 28px;
    max-width: 675px;
    margin: 0 auto;
}
.ndr-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}
.ndr-card {
    grid-column: span 2;
    background-color: #1F1F1F;
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
    text-align: left;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.ndr-card:nth-child(4) { grid-column: 2 / span 2; }
.ndr-card:nth-child(5) { grid-column: 4 / span 2; }
.step-badge {
    position: absolute;
    top: 0px;
    left: 20px;
    background-color: #3F93A6; 
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 15px;
    letter-spacing: 2px;
}
.icon-wrap {
    margin-bottom: 15px;
}
.icon-wrap img {
    width: 40px;
    height: 40px;
}
.ndr-card h3 {
    font-size: 28px;
    line-height: 30px;
    font-weight: 500;
    color: #efefef;
    max-width: 275px;
}




@media (max-width: 768px) {
    .btn-trial {padding: 12px 24px;}
    .section-title {font-size: 26px; margin-bottom: 30px;}
    .hero {top: 0px; height: 100vh; position: relative;}
    .hero-bg { background: url('images/hero-mb.webp'); background-size: cover; background-position: center; background-repeat: no-repeat;}
    .hero-content { position: absolute; padding: 0px 20px; bottom: 100px; }
    .hero-content h1 { font-size: 36px; margin-top: 0px; margin-bottom: 20px; line-height: 34px;}
    .hero-content p { font-size: 12px; }
    .capability-section {padding: 50px 15px;}
    .feature-masonry { grid-template-columns: 1fr; }
    .masonry-col:nth-child(2) {margin-top: 0px;}
    .capability-section .header-content {flex-direction: column; margin-bottom: 35px;}
    .capability-section .header-content h2 {font-size: 28px; line-height: 28px; text-align: center; margin-bottom: 20px; }
    .capability-section .header-content p {font-size: 14px; line-height: 17px; text-align: center; }
    .feature-card-os {padding: 20px 15px;}
    .feature-card-os h3 {font-size: 24px; line-height: 24px; margin-bottom: 15px;}
    .feature-card-os p {font-size: 14px; line-height: 16px; padding-bottom: 25px;}
    .carrier-section .envelop {padding: 0 0 50px 0;}
    .carrier-section .envelop::before {clip-path: polygon(50% 9%, 100% 0, 100% 100%, 0 100%, 0 0); border-radius: 20px;}
    .main-delivery-icon {width: 140px; height: 140px;}
    .main-delivery-icon img {width: 60px;}
    .logo-cloud {height: 300px; margin: 0 20px;}
    .carrier-logo {padding: 10px 20px;}
    .carrier-logo img {height: 12px;}
    .logo-delhivery {top: 160px; left: 15%; }
    .logo-shiprocket {top: 160px; right: 20%; }
    .logo-bluedart {top: 230px; left: 0%; }
    .logo-xpressbees {top: 230px; right: 0%; }
    .logo-ecom {bottom: -40px; left: 18%; }
    .logo-express {bottom: -40px; right: 18%; }
    .carrier-title { font-size: 30px; }
    .carrier-subtitle {font-size: 18px;}
    .impact-section {padding: 50px 15px;}
    .impact-header {margin: 0 auto;}
    .impact-header h2 {font-size: 28px; line-height: 30px;}
    .impact-header p {font-size: 14px; line-height: 16px;}
    .stat-card {padding: 8px; width: unset; height: unset; min-width: 200px;}
    .dotted-border-card {padding: 15px;}
    .stat-card:nth-child(1) {right: -120px; margin-top: 150px; background: linear-gradient(to right, #020E0E 0%, #072E2E 100%);}
    .stat-card:nth-child(3) {left: -120px; margin-top: 150px; background: linear-gradient(to left, #020E0E 0%, #072E2E 100%); box-shadow: -15px 0px 19px 0px rgba(7, 46, 46, 1);}
    .main-card {margin: 0; min-width: 250px; height: auto; padding: 8px; box-shadow: none; top: -70px;}
    .powered-by {font-size: 14px !important; line-height: 16px !important; margin: 0px; }
    .stat-card h3 {font-size: 24px;}
    .stat-card:nth-child(1) h3 {position: relative; padding-top: 70px; left: -5px;}
    .stat-card:nth-child(1) p {position: relative; left: -5px;}
    .stat-card:nth-child(3) h3 {padding-top: 70px;}
    .stat-card p {font-size: 14px; line-height: 16px;}
    .side-card {width: 300px; }
    .ndr-section {padding: 50px 15px;}
    .ndr-grid {grid-template-columns: 1fr; gap: 15px;}
    .ndr-card {text-align: center; min-height: 225px;}
    .ndr-card, .ndr-card:nth-child(4), .ndr-card:nth-child(5) {grid-column: span 1; }
    .ndr-header {margin: 0 auto; padding-bottom:50px;}
    .ndr-header h2 { font-size: 28px; line-height: 28px; margin-bottom: 20px;}
    .ndr-header p {font-size: 14px; line-height: 16px; max-width: 375px; margin: 0 auto;}
    .step-badge {left: 50%; transform: translateX(-50%);}
    .ndr-card h3 {font-size: 20px; line-height: 22px; margin: 0 auto;}
}