.header {
	z-index: 999;
	position: relative; /* or fixed dynamically */
}
.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: #fff;
	width: 100%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.fixed-header-active {
	padding-top: 90px; /* Change according to header height */
}
.nav-menu {
	z-index: 998;
	position: absolute;
	top: 100%; /* dropdown appears below header */
}
.nav-btn {
	z-index: 1000; /* always above everything */
}
.client-item{
	padding:20px;
}
.custom-white{
	color:#fff;
}
.custom-client-box{
	padding: 10px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgb(0 0 0 / 35%);
	transition: 0.3s ease;
}
.custom-client-box img{
	width: 100%;
    height: 100px;
    object-fit: contain;
}
.banner-container { 
	position: relative; 
	max-width: 100%; 
	overflow: hidden; 
}
.banner { 
	display: flex; 
	transition: transform 2s ease-in-out; 
}
.banner-bottom { 
	min-width: 100%; 
}
.banner img { 
	width: 100%; 
	display: block; 
}
.prev, .next {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: rgba(0,0,0,0.5); color: white; border: none;
	padding: 10px; cursor: pointer; font-size: 18px;
	z-index: 10;
}
.prev { left: 10px; }
.next { right: 10px; }
.custom-new-product .slide-item {
	padding: 20px;
}
.slide-item .card {
	background: linear-gradient(to bottom, #f5f8fa, #cfe3f7);
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.slide-item .card img {
	width: 100%;
	max-width: 200px;
	margin: 0 auto 10px;
}
.slide-item .card .custom-title {
	font-size: 18px;
	font-weight: bold;
}
.slide-item .card .button {
	margin-top: 10px;
	background-color: #007bff;
	color: #fff;
	padding: 8px 16px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
}
/* Container: Flex grid */
.md-mission-uppar {
	margin-top: 50px;
}
/* Container for the title */
.md-mission-uppar-title {
	text-align: center;
    margin-bottom: 50px;
}
/* Title column styling */
.md-mission-uppar-title h1 {
	font-size: 30px;
	font-weight: 700;
	color: #f4821e;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 3px solid #f4821e;
	display: inline-block;
	padding-bottom: 10px;
}
/* Individual Box */
.md-mission-lower {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgb(0 0 0 / 35%);
	padding: 30px 20px;
	width: 100%;
	min-width: 100%;
	height: auto;
	text-align: center;
	transition: 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.md-mission-lower:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
/* Icon styling */
.md-mission-lower-icon {
	background: #f4821e;
	color: #fff;
	padding: 18px;
	border-radius: 50%;
	font-size: 28px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
}
/* Heading */
.md-mission-lower h3 {
	font-size: 18px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: capitalize;
}
/* Paragraph */
.md-mission-lower p {
	font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.custom-team-section {
	display: flex;
    flex-direction: column;
    gap: 60px;
}
.custom-team-member {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 35%);
    padding: 30px 20px;
    width: 100%;
    min-width: 100%;
    transition: 0.3s ease;
}
.custom-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.custom-team-member.reverse {
    flex-direction: row-reverse;
}
.custom-team-image {
    position: relative; /* Needed for absolute positioning of the button */
}
.custom-team-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fba21c;
    box-shadow: 0 4px 20px rgb(0 0 0 / 37%);
}
.linkedin-button {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0077b5;
    color: #fff;
    padding: 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
    letter-spacing: 1px;
}
.linkedin-button:hover {
    background-color: #006597;
}
.linkedin-button i {
    font-size: 18px; /* LinkedIn icon size */
}
.custom-team-content {
	flex: 1;
}
.custom-team-content h4 {
	font-size: 24px;
    color: #f9a415;
    margin-bottom: 5px;
    text-transform: none;
    font-weight: 500;
}
.custom-team-content h5 {
	font-size: 16px;
	color: #2a2a2a;
	margin-bottom: 15px;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 1px;
}
.custom-team-content p {
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.6;
    margin-bottom: 15px;
}
.custom-team-content blockquote {
    font-style: italic;
    color: #131213;
    border-left: 4px solid #000000;
    padding-left: 15px;
    margin: 0;
    box-shadow: 0 4px 20px rgb(0 0 0 / 37%);
}
/* Services CSS */
.mj-services-top {
    padding-top: 100px;
	 padding-bottom: 60px;
}


.mj-services-top img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Reuse title and list styles if already defined, otherwise define here */
.mj-services-top .mj-services-title h1 {
    font-size: 28px;
    color: #f5821f;
    margin-bottom: 10px;
}
.mj-services-top .mj-services-title p {
    font-size: 18px;
    color: #4c4c4c;
    margin-bottom: 25px;
}
.mj-services-top .mj-services-drone-lab h3 {
    font-size: 24px;
    color: #f5821f;
    margin-bottom: 15px;
}
.mj-services-top .mj-services-drone-lab p {
    font-size: 16px;
    margin-bottom: 15px;
}
.mj-services-top .mj-services-drone-lab .list li {
    font-size: 18px;
    color: #4c4c4c;
    margin-bottom: 10px;
    line-height: 1.6;
}
.mj-services-offer {
    margin-bottom: 50px;
}
.mj-services-offer h3 {
    font-size: 28px;
    color: #f5821f;
    margin-bottom: 40px;
    border-bottom: 2px solid #f5821f;
    padding-bottom: 10px;
}
.mj-services-offer .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 32%);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.mj-services-offer .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.mj-services-offer .card h3 {
    color: #f5821f;
    font-size: 22px;
    margin-bottom: 10px;
}
.mj-services-offer .card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    margin-top: 20px;
}
.mj-services-ideal {
    margin-bottom: 50px;
}
.mj-services-ideal h3 {
    font-size: 28px;
    color: #f5821f;
    border-bottom: 2px solid #f5821f;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.mj-services-ideal h6 {
    font-size: 20px;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 0px;
    letter-spacing: 1px;
    font-style: italic;
}
.mj-services-ideal .list{
    margin-left: 20px;
}
.mj-services-ideal .list li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #4c4c4c;
    line-height: 1.6;
    list-style: disc;
}
.mj-services-ideal p {
    font-size: 16px;
    color: #555;
    margin-top: 15px;
    margin-bottom: 15px;
}
.mj-services-ideal table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 20px;
	border: 1px solid #eee;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	overflow-x: auto;
}
.mj-services-ideal th, td {
	border: none;
	text-align: left;
	padding: 15px 12px;
	font-size: 15px;
}
.mj-services-ideal th {
	background-color: #f5811e;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 14px;
}
.mj-services-ideal tr:nth-child(even) {
	background-color: #f9f9f9;
}
.mj-services-ideal tr:hover {
	background-color: #f1f1f1;
}
.mj-services-build {
    margin-bottom: 50px;
}
.mj-services-build h3 {
    font-size: 28px;
    color: #f5821f;
    border-bottom: 2px solid #f5821f;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.mj-services-build p {
    font-size: 18px;
    color: #4c4c4c;
    margin-bottom: 15px;
    line-height: 1.7;
}
.mj-services-contact {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 100px;
    text-align: center;
    box-shadow: 0 4px 10px rgb(0 0 0 / 29%);
}
.mj-services-contact h3 {
    font-size: 26px;
    color: #f5821f;
    margin-bottom: 15px;
}
.mj-services-contact p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}
.mj-services-contact .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f5821f;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.mj-services-contact .cta-button:hover {
    background-color: #16314a;
}
.drone-section {
	padding: 0;
	text-align: center;
	margin-bottom: 30px;
}
/* Image and Button Styling */
.drone-image-wrapper {
	position: relative;
	display: inline-block;
	margin-top: 30px;
}
.drone-image-wrapper img {
	width: 100%;
	max-width: 100%;
	display: block;
}
.drone-image-wrapper .download-btn {
	position: absolute;
	top: 90%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #f5811e;
	color: #fff;
	padding: 12px 25px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 16px;
	transition: background 0.3s ease;
	white-space: nowrap;
}
.drone-image-wrapper .download-btn:hover {
	background-color: #000;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 0px;
	left: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 8px 10px;
	border-radius: 20px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 135px;
	text-decoration: none;
	transition: transform 0.3s ease;
	letter-spacing: 1px;
	font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #f5821f;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
.footer-document {
    background: #000000;
    color: #fff;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}
.footer-document .heading-footer {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.footer-document .line-style::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #f5821f;
    margin-top: 6px;
}
.footer-document .content-box p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.6;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    text-align: justify;
}
.footer-document .follow-wrap ul {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.footer-document .follow-wrap ul li a img {
    width: 40px;
    height: 40px;
}
.footer-document .nav-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-document .nav-footer ul li {
    margin-bottom: 8px;
}
.footer-document .nav-footer ul li a {
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-document .nav-footer ul li a:hover {
    color: #f5821f;
}
.footer-document .content-box ul {
    list-style: none;
    padding: 0;
}
.footer-document .content-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #ccc;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.footer-document .content-box ul li i {
    margin-right: 10px;
    color: #f5821f;
}
.footer-document .content-box ul li a {
    color: #ccc;
    text-decoration: none;
    text-transform: none;
}
.footer-document .content-box ul li a:hover {
    color: #f5821f;
}
.footer-document .sub-footer {
    border-top: 1px solid #f5821f;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
.footer-document .sub-footer ul {
    display: flex;
    align-items: center;
    margin: 0;
    gap: calc(15px + (50 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.footer-document .sub-footer ul li a img {
    width: 45px;
    height: auto;
}
.footer-document .sub-footer p {
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    text-align: center;
    color: #ccc;
    font-size: 18px;
}
.footer-document .bg-footer-l {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.footer-document .bg-footer-l img {
    width: 330px;
}
.footer-document .bg-footer-r {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.footer-document .bg-footer-r img {
    width: 355px;
}
.footer-document .main-footer {
    position: relative;
    z-index: 1;
}
.footer-document .main-footer .content-box ul li .nav {
    transition: all 0.5s ease;
}
.footer-document .main-footer .content-box ul li .nav:hover {
    transform: translateX(10px);
    color: #f5821f;
}
[dir="rtl"] .footer-document .main-footer .content-box ul li .nav:hover {
    transform: translateX(-10px);
}
/* Base styling for slick-dots */
.slick-dots {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 20px 0;
	margin: 0;
}
/* Individual dot item */
.slick-dots li {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ccc;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
/* Active dot */
.slick-dots .slick-active,
.slick-dots li[aria-selected="true"] {
	background-color: #007BFF;
	transform: scale(1.3);
}
/* Dot button styling */
.slick-dots li button {
	opacity: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
}
/* Responsive for smaller screens */
@media (max-width: 992px) {
	.md-mission-lower {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.custom-team-member, .custom-team-member.reverse {
		flex-direction: column;
        text-align: center;
        gap: 40px;
	}
	.custom-team-content {
		max-width: 100%;
	}
	.custom-team-image img {
		width: 220px;
		height: 220px;
	}
	.mj-services-top{
		padding-bottom: 40px;
	}
	.mj-services-top .mj-services-title h1 {
        font-size: 23px;
        margin-top: 20px;
    }
    .mj-services-top .mj-services-title p {
        font-size: 16px;
    }
    .mj-services-top .mj-services-drone-lab h3 {
        font-size: 20px;
    }
    .mj-services-top .mj-services-drone-lab .list li {
        font-size: 15px;
    }
	.mj-services-ideal h3,
	.mj-services-ideal h3,
	.mj-services-build h3{
		font-size: 23px;
	}
    .mj-services-offer .card p,
    .mj-services-ideal .list li,
    .mj-services-build p,
    .mj-services-contact p {
        font-size: 15px;
    }
    .mj-services-offer .card h3 {
        font-size: 20px;
    }
    .mj-services-contact .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
	.mj-services-ideal table, thead, tbody, td, tr {
        display: block;
        width: 100%;
	}
	.mj-services-ideal thead th {
		display: none;
	}
	.mj-services-ideal thead tr {
        display: none; /* Hide table header on mobile */
	}
	.mj-services-ideal tr {
        margin-bottom: 15px;
        background: #fff;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.05);
	}
	.mj-services-ideal td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        font-size: 14px;
	}
	.mj-services-ideal td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #333;
        text-transform: capitalize;
	}
	.drone-image-wrapper .download-btn {
		top: 95%;
		padding: 10px 20px;
		font-size: 14px;
	}
	.drone-image-wrapper {
		margin-top: 0px;
	}
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
	.footer-document {
        padding-top: 60px;
        text-align: left;
        padding-bottom: 50px;
    }
    .footer-document .follow-wrap ul {
        justify-content: left;
        flex-wrap: wrap;
    }
    .footer-document .nav-footer ul li {
        margin: 10px 0px;
    }
	.footer-document .heading-footer {
		font-size: 18px;
	}
	.footer-document .content-box ul {
		list-style: none;
		padding: 0;
        margin-bottom: 20px;
	}
    .footer-document .content-box ul li {
        justify-content: left;
        text-align: left;
    }
    .footer-document .sub-footer {
        flex-direction: column;
        text-align: left;
		margin-top: 20px;
    }
    .footer-document .sub-footer p {
        text-align: left;
        margin-top: 10px;
    }
    .footer-document .bg-footer-l img,
    .footer-document .bg-footer-r img {
        width: 400px;
    }
    .footer-document .content-box ul li .nav {
        justify-content: left;
    }
}
@media (max-width: 600px) {
	.md-mission-uppar-title h1 {
		font-size: 22px;
	}
	.md-mission-lower {
		width: 100%;
		margin-bottom: 30px;
	}
}
 /* Responsive Design */
@media (max-width: 480px) {
	.drone-image-wrapper .download-btn {
		top: 98%;
        padding: 8px 18px;
        font-size: 12px;
	}
	.slick-dots {
		gap: 6px;
	}
	.slick-dots li {
		width: 10px;
		height: 10px;
	}
}