/**********/
.service-card-box {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 30px;
	background: inherit;
	border: 1px solid currentColor;
	opacity: 0.95;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-box:hover {
	transform: translateY(-5px);
}

.service-card-title {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

.service-card-title span {
    display: block;
    font-size: 35px;
    font-family: 'Poppins';
}

.service-card-meta {
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px dashed currentColor;
}

.meta-label {
	display: block;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: 'Poppins';
}

.service-card-list {
	margin: 0;
	padding-left: 20px;
	list-style-type: square;
}


.service-card-list li:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.service-card-box {
		padding: 20px;
	}

	.service-card-title {
		font-size: 19px;
	}
}


/**********/


.process-timeline {
	position: relative;
	padding: 20px 0;
}

/* Center Line of Timeline */
.process-timeline::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 30px;
	/* Mobile standard layout tracking */
	height: 86%;
	width: 2px;
	border-left: 2px dashed currentColor;
	opacity: 0.25;
	z-index: 1;
}

/* Single Step Structure */
.timeline-step {
	position: relative;
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	z-index: 2;
}

.timeline-step:last-child {
	margin-bottom: 0;
}

/* Step Number Ring */
.step-number {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid currentColor;
	font-weight: 700;
	font-size: 20px;
	background: var(--primary);
}

.step-number span {
	opacity: 0.9;
}

/* Step Content Box */
.step-content {
	padding-top: 12px;
	flex-grow: 1;
}

.step-title {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
}


/* Nested Document List Section */
.step-meta {
	padding: 20px;
	border: 1px solid currentColor;
	opacity: 0.95;
	border-radius: 6px;
	max-width: 500px;
}

.meta-subtitle {
	display: block;
	font-weight: 600;
	margin-bottom: 12px;
	font-size: 14px;
	font-family: 'Poppins';
}

.step-list {
	margin: 0;
	padding-left: 20px;
	list-style-type: disc;
}


.step-list li:last-child {
	margin-bottom: 0;
}

/* --- Responsive Desktop Settings (Turns into Left-Right Alternate layout) --- */
@media (min-width: 992px) {
	.process-timeline::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.timeline-step {
		width: 50%;
	}

	/* Odd steps on Left Side */
	.timeline-step:nth-child(odd) {
		left: 0;
		padding-right: 40px;
		text-align: right;
		flex-direction: row-reverse;
	}

	/* Even steps on Right Side */
	.timeline-step:nth-child(even) {
		left: 50%;
		padding-left: 40px;
	}

	.timeline-step:nth-child(odd) .step-list {
		padding-left: 0;
		padding-right: 20px;
		list-style-type: none;
		/* Aligning list graphics properly */
	}

	.timeline-step:nth-child(odd) .step-list li {
		position: relative;
	}

	.timeline-step:nth-child(odd) .step-list li::after {
		content: "•";
		position: absolute;
		right: -15px;
		top: 0;
	}

	.timeline-step:nth-child(odd) .step-meta {
		margin-left: auto;
	}

	.step-number {
		position: absolute;
		left: auto;
		top: 6px;
	}

	.timeline-step:nth-child(odd) .step-number {
		right: -30px;
	}

	.timeline-step:nth-child(even) .step-number {
		left: -30px;
	}

	.step-content {
		padding-top: 20px;
	}
}

/* Mobile Devices Optimization */
@media (max-width: 768px) {
	.step-number {
		width: 46px;
		height: 46px;
		font-size: 16px;
	}

	.process-timeline::before {
		left: 23px;
	}

	.step-title {
		font-size: 18px;
	}

}


/*****/
.container-section-header {
	margin-bottom: 60px;
	text-align: center;
}


.container-main-subtitle {
	font-size: 16px;
	margin: 0;
	opacity: 0.8;
}

/* Outer Container Wrapper */
.container-split-wrapper {
	display: flex;
	flex-direction: column;
	border-top: 1px solid currentColor;
}

/* Individual Clean Row Structure */
.container-split-row {
	display: flex;
	padding: 35px 10px;
	border-bottom: 1px solid currentColor;
	background: inherit;
	transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Left Column: Heading Width */
.container-split-left {
	flex: 0 0 40%;
	max-width: 40%;
	padding-right: 30px;
}

/* Right Column: Description Width */
.container-split-right {
	flex: 0 0 60%;
	max-width: 60%;
	display: flex;
	align-items: center;
}

.container-split-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	transition: transform 0.3s ease;
}

.container-split-desc {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

/* --- Premium Interaction FX --- */
.container-split-row:hover {
	padding-left: 25px;
	padding-right: 25px;
	background-color: rgb(0 0 0 / 5%);
	/* Aapki body theme ke hisab se mild blend hoga */
}

.container-split-row:hover .container-split-title {
	transform: translateX(5px);
}

.container-split-row:hover .container-split-desc {
	opacity: 1;
}

/* --- Responsive Adaptability Rules --- */

/* For Tablets & Small Screens */
@media (max-width: 992px) {
	.container-split-left {
		flex: 0 0 45%;
		max-width: 45%;
	}

	.container-split-right {
		flex: 0 0 55%;
		max-width: 55%;
	}

	.container-split-title {
		font-size: 20px;
	}

}

/* For Mobile Devices (Splits into clean stack rows) */
@media (max-width: 768px) {
	.container-split-row {
		flex-direction: column;
		gap: 12px;
		padding: 25px 5px;
	}

	.container-split-left,
	.container-split-right {
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 0;
	}

	.container-split-row:hover {
		padding-left: 10px;
		padding-right: 10px;
	}

	.container-split-title {
		font-size: 19px;
	}

	.container-split-desc {
		font-size: 14.5px;
	}


	.container-section-header {
		margin-bottom: 40px;
	}
}


/********/

.process-box {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 25px 15px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.step-img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	margin-bottom: 15px;
}


.doc-card {
	display: flex;
	align-items: center;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 15px 20px;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.doc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: currentColor;
}

.doc-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	margin-right: 15px;
	flex-shrink: 0;
}


.process-box:hover,
.doc-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


/***********/

/* Premium Wrapper with Rounded Edges like your original image */
.shipping-table-container {
	width: 100%;
	overflow-x: auto;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	background: #ffffff;
}

.shipping-custom-matrix {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 15px;
}

/* Header with Impexship Dark Blue Theme */
.shipping-custom-matrix th {
	background-color: #fbb330;
	color: #000;
	padding: 18px 24px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-family: 'Poppins';
}

/* Table Body Rows */
.shipping-custom-matrix td {
	padding: 16px 24px;
	border-bottom: 1px solid #e9ecef;
	color: #333333;
	line-height: 1.5;
}

/* Clean Row Stripping */
.shipping-custom-matrix tbody tr:nth-child(even) {
	background-color: #f8f9fa;
}

.shipping-custom-matrix tbody tr:last-child td {
	border-bottom: none;
}

/* First Column Bold Styling */
.shipping-factor-name {
	font-weight: 700;
	color: #0a2540 !important;
	width: 25%;
}

/* Subtle Highlights for key points */
.ocean-highlight {
	font-weight: 600;
	color: #28a745;
	/* Success Green for low cost */
}

.air-highlight {
	font-weight: 600;
	color: #f4a62a;
	/* Impex Yellow/Orange for fast speed */
}

/* Bottom Text Styling */
.shipping-table-summary {
	font-size: 14.5px;
	color: #fff;
	line-height: 1.6;
	text-align: center;
	width: 70%;
	margin: 0 auto !important;
	margin-top: 30px !important;
}

/* --- Mobile View Responsiveness --- */
@media (max-width: 768px) {

	.shipping-custom-matrix th,
	.shipping-custom-matrix td {
		padding: 12px 16px;
		font-size: 14px;
	}

	.shipping-factor-name {
		width: 30%;
	}
}


/********/


.countries-main-subtitle {
	color: #555555;
	font-size: 16px;
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.5;
}

/* responsive grid structural setup */
.countries-flag-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

/* Upgraded anchor framework matrix element */
.country-pill-box {
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 16px 20px;
	text-decoration: none !important;
	/* Neutralizing native browser overrides */
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.country-flag-img {
	width: 32px;
	height: auto;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	margin-right: 15px;
	flex-shrink: 0;
}

.country-name-text {
	font-size: 15px;
	font-weight: 600;
	color: #0a2540;
	line-height: 1.3;
}

/* Premium Hover State with your yellow/orange brand accent tint */
.country-pill-box:hover {
	transform: translateY(-3px);
	border-color: #f4a62a;
	/* Matches GET FREE QUOTE aesthetic rules */
	box-shadow: 0 6px 15px rgba(10, 37, 64, 0.08);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
	.countries-flag-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

}

@media (max-width: 768px) {
	.countries-flag-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.country-pill-box {
		padding: 12px 15px;
		display: block;
	}

	.country-name-text {
		display: block;
		text-align: center;
		margin-top: 10px;
	}

	.country-flag-img {
		display: block;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.countries-flag-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/********/


.faq-item {
	border-bottom: 1px solid #ddd;
	padding: 25px 0
}

.faq-item:last-child {
	border: 0
}

.faq-question {
	width: 100%;
	background: 0;
	border: 0;
	font-size: 25px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	color: #111
}

.faq-icon {
	font-size: 20px;
	transition: transform .3s ease
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease, opacity .3s ease;
	opacity: 0
}

.faq-answer p {
	margin-top: 15px
}

.faq-item.active .faq-answer {
	max-height: 300px;
	opacity: 1;
	max-width: 90%
}

.faq-item.active .faq-icon {
	transform: rotate(180deg)
}

.active .faq-question {
	color: #000
}

@media(max-width: 992px) {
	.faq-question {
		font-size: 16px
	}
}


/*******/

.industries-shapes {
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: .4
}

ul.services-list li {
	display: inline-flex;
	background: #fff;
	align-items: center;
	padding: 10px 15px;
	border-radius: 50px;
	font-size: 16px;
	gap: 10px;
	margin: 10px 0;
	color: var(--text);
	box-shadow: 0 0 30px #dcdcdc
}

ul.services-list li a {
	text-decoration: none;
	color: #000
}

.services-list li img {
	width: 60px;
	height: 60px;
	border-radius: 100%
}

.services-list {
	margin: 0 auto;
	text-align: center;
	padding: 0
}

.services-text {
	border-top: 1px solid #fff;
	padding-top: 50px
}

.section-footer-text p span {
	display: inline-block;
	font-weight: 500;
	line-height: 1em;
	background: var(--secondary);
	color: var(--background);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 5px
}

.section-footer-text p a {
	border-bottom: 1px solid;
	padding-bottom: 5px;
	font-weight: 600;
	text-decoration: none;
	color: var(--text)
}

@media(max-width: 991px) {
	ul.services-list li {
		width: 49%;
		text-align: left;
		font-size: 14px
	}
}

@media(max-width: 420px) {
	ul.services-list li {
		width: 100%;
		text-align: left;
		font-size: 14px
	}
}


.partner-contact-info-content p a {
	font-family: unset
}

.partner-contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 60px;
	margin-top: 30px
}

.partner-contact-info-item {
	position: relative;
	width: calc(50% - 30px);
	display: flex;
	flex-wrap: wrap
}

.partner-contact-info-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: #104b5a1a;
	width: 1px;
	height: 100%
}

.partner-contact-info-item .icon-box {
	width: 50px;
	height: 50px;
	background: #ffb400;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px
}

.partner-contact-info-item .icon-box img {
	width: 100%;
	max-width: 24px;
	filter: invert(1)
}

.partner-contact-info-content {
	width: calc(100% - 65px)
}

.partner-contact-info-content p {
	margin: 0 0 5px
}

.partner-contact-info-content h3 {
	font-size: 18px;
	line-height: 30px
}

.partner-contact-info-content h3 a {
	color: inherit;
	transition: all .3s ease-in-out;
	text-decoration: none
}

.partner-contact-info-item.location-info-item {
	width: 100%;
	border-top: 1px solid #104b5a1a;
	padding-top: 50px
}

.partner-contact-info-item:last-child:before,
.partner-contact-info-item:nth-child(2n+2):before {
	display: none
}

.partner-world-map-image img {
	width: 100%;
	aspect-ratio: 1 / .65;
	object-fit: cover;
	border-radius: 10px
}

.our-partner-content {
	position: relative;
	z-index: 0
}

.partner-world-map-image img {
	width: 100%;
	aspect-ratio: 1 / .65;
	object-fit: cover;
	border-radius: 10px;
	position: absolute;
	z-index: -1;
	opacity: .6
}

.inquiry-container {
	background: #fff;
	width: 100%;
	max-width: 850px;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
}

@media(max-width: 991px) {
	.partner-contact-info-item {
		width: 100%
	}

	.partner-contact-info-item::before {
		display: none
	}

	.partner-contact-info-item {
		width: 100%;
		padding: 30px 0;
		border-top: 1px solid #104b5a1a
	}

	.partner-contact-info-list {
		gap: 0
	}

	.partner-contact-info-list .partner-contact-info-item:nth-child(1) {
		border-top: 0
	}

	.partner-contact-info-list .partner-contact-info-item:nth-child(1) {
		border-top: 0;
		padding-top: 0
	}

	.partner-contact-info-item.location-info-item {
		padding-top: 30px
	}

	.inquiry-container {
		padding: 25px
	}
}

.section-wrapper {
	margin-bottom: 30px
}

.section-heading {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px
}

.service-flex {
	display: flex;
	gap: 30px
}

.service-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px
}

.service-item input {
	display: none
}

.custom-box {
	width: 18px;
	height: 18px;
	border: 1px solid #ccc;
	border-radius: 4px;
	position: relative
}

.service-item input:checked+.custom-box {
	background: #f1b434;
	border-color: #f1b434
}

.service-item input:checked+.custom-box::after {
	content: '✓';
	color: #000;
	position: absolute;
	left: 3px;
	top: -1px;
	font-size: 12px;
	font-weight: bold
}

.input-grid {
	display: flex;
	gap: 20px;
	margin-bottom: 25px
}

.field-group {
	flex: 1;
	position: relative
}

.full-width {
	width: 100%;
	margin-bottom: 25px
}

.field-group label,
.field-label-main {
	position: absolute;
	top: -10px;
	left: 15px;
	background: #fff;
	padding: 0 8px;
	font-size: 12px;
	font-weight: 700;
	color: #000;
	z-index: 10
}

.field-label-main {
	position: static;
	margin-bottom: 10px;
	display: block;
	padding-left: 0
}

.input-inner {
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	display: flex;
	align-items: center;
	padding: 12px 15px;
	overflow: inherit !important
}

.input-inner svg {
	color: #888;
	margin-right: 12px;
	font-size: 16px
}

.no-padding {
	padding: 0 !important;
	border: 1px solid #dcdcdc;
	overflow: hidden
}

input,
select,
textarea {
	width: 100%;
	border: 0;
	outline: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	background: transparent
}

.iti {
	width: 100%
}

.iti input {
	padding-left: 85px !important;
	height: 48px;
	border: none !important
}

.segmented-control {
	display: flex;
	gap: 10px;
	width: 100%
}

.segment-item {
	flex: 1;
	cursor: pointer;
	position: relative !important;
	left: 0 !important;
	padding: 0 !important;
	z-index: 0 !important
}

.segment-item input {
	display: none
}

.segment-label {
	display: block;
	padding: 12px;
	text-align: center;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: .3s
}

.segment-item input:checked+.segment-label {
	background: #fab32f;
	color: #000;
	border-color: #000
}

.consent-wrapper {
	margin-bottom: 30px
}

.custom-checkbox {
	display: flex;
	gap: 12px;
	cursor: pointer
}

.custom-checkbox input {
	display: none
}

.checkmark {
	min-width: 18px;
	height: 18px;
	border: 1px solid #ccc;
	border-radius: 4px;
	position: relative;
	margin-top: 2px
}

.custom-checkbox input:checked+.checkmark {
	background: #000;
	border-color: #000
}

.custom-checkbox input:checked+.checkmark::after {
	content: '✓';
	color: #fff;
	position: absolute;
	left: 4px;
	top: 0;
	font-size: 10px
}

.custom-checkbox p {
	font-size: 12px;
	color: #666;
	margin: 0;
	line-height: 1.4
}

.submit-btn-black {
	width: 100%;
	background: #fbb330;
	color: #000;
	border: 0;
	padding: 18px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: .3s
}

.submit-btn-black:hover {
	background: #000;
	color: #fff;
	transform: translateY(-2px)
}

@media(max-width: 650px) {
	.input-grid {
		flex-direction: column;
		gap: 25px
	}

	.service-flex {
		flex-direction: column;
		gap: 15px
	}

	.partner-contact-info-content h3 {
		font-size: 14px;
		line-height: 20px
	}

	.faq-item {
		padding: 12px 0
	}
}

@media(max-width: 991px) {
	.bio-location {
		margin-top: 30px
	}
}

@media(max-width: 991px) {
	.img-tag {
		margin-bottom: 15px
	}

	.table-tracking {
		margin: 10px 0;
		height: inherit
	}

	.cta-sec {
		padding-bottom: 30px
	}

	ul.list-icon li {
		font-size: 14px
	}
}




.air-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px 35px
}

.air-card img {
    width: 70px;
    margin-bottom: 20px;
    transition: .3s;
    background: #fbb330;
    padding: 10px;
    border-radius: 5px
}

.air-card h3 {
    font-size: 18px;
    margin-bottom: 10px
}

.air-card p {
    font-size: 16px;
    line-height: 1.6
}

.air-card {
    transition: all .3s ease
}

.air-card:hover {
    transform: translateY(-5px)
}

.air-card:hover img {
    transform: scale(1.1)
}

@media(max-width: 992px) {
    .air-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .hero-section {
        padding: 0
    }

    .about-service {
        padding-bottom: 20px
    }
}

@media(max-width: 576px) {
    .air-grid {
        grid-template-columns:1fr
    }
}

.cta-sec .badge-top-minimal:before {
    background: url(../img/meta-bg-w.png) no-repeat left center;
}
.cta-sec p {
    color: #fff;
}
.cta-sec .badge-top-minimal{
    color: #fff;
}