.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 450px;
  overflow: hidden;
  width:100%;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  padding: 20px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 12px 30px;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ff8c33;
  transform: translateY(-3px);
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
}








.courier-section {
  padding: 25px 20px;
  background: #f9fafb;
  max-width: 80%;
  margin: auto;
}

.courier-container {
  max-width: 80%;
  margin: auto;
}

.courier-header {
  text-align: center;
  margin-bottom: 40px;
}

.courier-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.courier-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

.restaurant-section {
   padding: 25px 20px;
  background: linear-gradient(to right, #fff7ed, #ffffff);
  max-width: 80%;
  margin: auto;
}

.restaurant-container {
  max-width: 80%;
  margin:auto;
}

.restaurant-header {
  text-align: center;
  margin-bottom: 40px;
}

.restaurant-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.restaurant-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.business-section {
   padding: 25px 20px;
  background: #f3f4f6;
    max-width: 80%;
  margin: auto;
}

.business-container {
  max-width: 80%;
  margin:auto;
}

.business-header {
  text-align: center;
  margin-bottom: 40px;
}

.business-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.business-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/*.courier-hero {
  width: 100%;
  margin: auto;
  border-radius: 0px;
  background-image: url('../courier_images/courier_bg_3.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.courier-hero__overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55));
	padding: 80px 20px;
  /*padding: 60px 40px;
  border-radius: 0px;
  text-align: center;
  color: #fff;
}

.courier-hero h1 {
  margin: 0 0 20px;
  font-size: 2.2rem;
}

.courier-hero p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
}
*/
.courier-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.hero-btn {
  background: #2563eb;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  min-width: 200px;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  background-color: linear-gradient(135deg, #0f172a, #1e3a8a);
  transform: translateY(-2px);
}

.hero-btn--outline {
  background: transparent;
  border: 2px solid #fff;
}

.hero-btn--outline:hover {
  background-color: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
}

/* Mobile */
@media (max-width: 600px) {
  /*.courier-hero {
    width: 100%;
    border-radius: 0;
  }

  .courier-hero__overlay {
    padding: 40px 20px;
    border-radius: 0;
    text-align: left;
  }

  .courier-hero h1 {
    font-size: 1.7rem;
    text-align: center;
  }

  .courier-hero p {
    text-align: justify;
  }
*/
  .hero-btn {
    width: 100%;
  }
}

.btn-primary {
  background: #13683F;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #0f5534;
}

.btn-icon {
  background: #13683F;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}

.btn-icon img {
  width: 36px;
  height: 36px;
}


/* SECTION */
.courier-section {
  padding: 25px 20px;
  background: #f8fafc;
}

/* CONTAINER */
.courier-container {
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.courier-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  gap: 40px;
  transition: 0.3s ease;
}

.courier-card:hover {
  transform: translateY(-5px);
}

/* LEFT SIDE */
.card-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.card-left p {
  color: #6b7280;
  margin-bottom: 25px;
  max-width: 400px;
}

/* ACTION BUTTONS */
.card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}

.btn-primary:hover {
  background: #000;
}

.btn-light {
  background: #f1f5f9;
}

.btn-light:hover {
  background: #e2e8f0;
}

/* RIGHT SIDE */
.card-right {
  flex-shrink: 0;
}

.qr-preview {
  width: 160px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.qr-preview:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.modal-header {
  padding: 20px;
  background: #111827;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  cursor: pointer;
  font-size: 22px;
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.modal-body img {
  max-width: 100%;
  border-radius: 12px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .courier-card {
    flex-direction: column;
    text-align: center;
  }

  .card-left p {
    max-width: 100%;
  }
}






















































/*delete after is necessary*/

.courier_header
{
display:flex;
 width:80%;
 margin:auto;
 margin-top:0px;
 height:auto;
 background-image:url('../courier_images/courier_bg_3.jpg');
 background-size: cover;
 background-repeat: no-repeat;
 border-radius:10px 10px 10px 10px;
}

.main_head_banner img
{
width:100%; 
height:100%;
border-radius:10px 0 0 10px;
}

.courier_header_child_1
{
width:80%;
margin:auto; 
color:white; 
text-align:center;
}

.courier_header_child_3
{
color:white;
text-align:center; 
margin:auto;
line-height:40px; 
font-size:large;
height:auto;
width:80%;
}

.courier_container
{
	width:100%; 
	margin:auto;
	margin-top:0px;
	text-align:justify;
	line-height:35px;
}

.sections_properties
{
	width:80%; 
	margin:auto;
	border-radius:10px;
	
}
/*
.sections_properties:hover
{
	box-shadow: 2px 2px 5px #aaa;
}
*/
.Courier_nav_sections_parent
{
	display:flex; 
	flex-wrap:wrap;
    align-items:flex-end;	
	justify-content:space-around; 
	gap:1.5px; 
	width:80%; 
	margin:auto;
	margin-top:60px;
}

.Courier_nav_sections_parent a
{
text-decoration:none;	
}

.Courier_nav_sections_child
{
	background-color:#13683F;
	color:white; 
	padding:15px; 
	border-radius:10px;
	width:150px;
	text-align:center;
}

.Courier_calculator_section_parent
{
	display:flex; 
	flex-wrap:wrap;
	justify-content:space-between; 
	align-items:center; 
	width:80%;
	margin:auto;
	gap:25px;
	text-align:center;
}

.Courier_calculator_section_parent a
{
	text-decoration:none;
	color:white;
}

.Courier_calculator_section_child
{
	background-color:#13683F; 
	border-radius:10px;
	padding-right:15px;
	padding-left:15px;
	padding-top:1.5px;
	padding-bottom:1.5px;
	width:auto;
}

.Courier_calculator_child_container
{
	 display:flex; 
	 align-items:center; 
	 gap:10px; 
}

.Courier_calculator_section_child_2
{
	background-color:#13683F; 
	border-radius:10px;
	padding-right:55px; 
	padding-left:55px;
	padding-top:5.5px;
	padding-bottom:5.5px;
}

.Courier_calculator_section_child_2 img
{
	 width:40px; 
	 height:40px;
}
.courier-forms-heading {
  margin-bottom: 16px;
}

.courier-forms-heading h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 6px;
}

/* subtle underline accent */
.courier-forms-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background-color: #007bff;
  border-radius: 2px;
}


.Courier_forms_details_parent
{
	display:flex;
    flex-wrap:wrap;
    flex-grow: 1;	
	justify-content:space-between; 
	align-items:center; 
	margin-bottom:25px;
}

.Courier_forms_details_parent a
{
	text-decoration:none;
	color:white;
}
.Courier_forms_details_child
{
	background-color:#13683F; 
	border-radius:10px;
	padding-right:15px;
	padding-left:15px;
	padding-top:1.5px;
	padding-bottom:1.5px;
	width:120px;
	text-align:center;
}

.qrcode_link_container
{
	display:flex; 
	justify-content:center;
	gap:15px;
}

.qrcode_container
{
	background-color:#1DB954; 
	border-radius:10px;
	height:50px;
	width:170px;
	padding:5px;
	text-align:center;
	}
	
.qrcode_container img
{
	border-radius:10px;
	height:50px; 
	width:50px; 
	padding-right:25px;
	margin-left:250px;
	margin-top:50px;
	padding-left:25px;
}

@media screen and (max-width: 600px) {
.courier_header
{
margin-top:0px;
display:block;
width:100%;
}

.courier_header_child_3
{
text-align:justify; 
}
	
.courier_container
{
	width:100%;
}
.Courier_nav_sections_parent
{
	display:flex;
	justify-content:space-between;
	width:100%;
	margin:auto;
	gap:0px;
	margin-bottom:0px;
}
.Courier_nav_sections_child
{
	background-color:#13683F;
	color:white; 
	padding:15px; 
	border-radius:15px;
	margin-bottom:10px;
	width:200px;
	text-align:center;
    font-weight:bold;
}

.courier_header_child_1
{
text-align:center;
}
	
.Courier_calculator_section_parent
{
	display:block;
	width:80%;
	border:2px solid darkgreen;
	border-radius:15px;
}

.Courier_calculator_child_container
{
 display:flex;
 justify-content:space-between;
 align-items:flex-end;
}

.Courier_calculator_section_child
{
	background-color:#13683F;
	border-radius:0px 0px 0px 10px;
	width:130px;
	text-align:left;
}

.Courier_calculator_section_child_2
{
	border-radius:0px 0px 10px 0px;
	width:10px;
}

.Courier_forms_details_parent
{
	display:block; 
	justify-content:space-between; 
	align-items:center; 
	margin-bottom:15px;
	text-align:center;
	border:2px solid darkgreen;
	border-radius:15px;
}

.Courier_forms_details_child
{
	background-color:#13683F;
	border-radius:0px 0px 0px 10px;
	width:130px;
	text-align:center;
	height:60px;
}

/*.Courier_forms_details_parent
{ background-color:lightgreen;
}*/
}