/*
Theme Name: Xorbeo
Theme URI: https://xorbeo.com/
Author: Xorbeo Theme
Author URI: https://xorbeo.com/
Description: Xorbeo Theme v1.1 - Responsive menu and widget system.
Version: 1.1
*/

/* =========================
Navbar
========================= */
nav{
	background: #fff;
	position: fixed;
	top: 0;
	left: 0px;
	width: 100%;
	z-index: 1000;
	padding: 0px 75px;
	box-shadow:1px 1px 18px -10px #ccc;
}

.nav-container{
	margin:auto;
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.logo a{
	color:#000;
	text-decoration:none;
	font-size:24px;
	font-weight:700;
}
.logo img {
	width: 25%;
}
/* =========================
Menu
========================= */
.menu{
	list-style:none;
	display:flex;
	margin:0;
	padding:0;
}

.menu li{
	position:relative;
}

.menu a{
	display:block;
	color:#000;
	text-decoration:none;
	padding:15px 20px;
	transition:.3s;
	background-color:#fff;
}

.menu a:hover{
	background:transparent;
}

/* =========================
Dropdown Arrow
========================= */
.menu-item-has-children > a{
	display:flex;
	align-items:center;
	gap:8px;
}

.menu-item-has-children > a::after{
	content:"";
	width:6px;
	height:6px;
	border-right:2px solid #000;
	border-bottom:2px solid #000;
	transform:rotate(45deg);
	transition:.3s;
	margin-top:0px;
}

.menu-item-has-children:hover > a::after{
	transform:rotate(225deg);
	margin-top:10px;
}

/* =========================
Sub Menu
========================= */
.sub-menu{
	position:absolute;
	top:100%;
	left:0;
	min-width:220px;
	list-style:none;
	margin:0;
	padding:0;
	background:#fff;
	border-radius:8px;
	overflow:hidden;
	box-shadow:0 10px 25px rgba(0,0,0,.15);

	opacity:0;
	visibility:hidden;
	transform:translateY(10px);
	transition:.3s;
	z-index:999;
}

.sub-menu li{
	width:100%;
}

.sub-menu a{
	color:#333;
	padding:12px 15px;
	white-space:nowrap;
}

.sub-menu a:hover{
	background:transition;
}

.menu li:hover > .sub-menu{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

/* =========================
Mobile Controls
========================= */
#menu-toggle{
	display:none;
}

.hamburger{
	display:none;
	color:#000;
	font-size:30px;
	cursor:pointer;
	z-index:1002;
}
.hamburger {
	font-size: 30px;
	cursor: pointer;
}

/* Default icon */
.hamburger::before {
	content: "☰";
}

/* When checked, show X */
#menu-toggle:checked + .hamburger::before {
	content: "✕";
}
/* =========================
Mobile Controls
========================= */
.fixed-height {
	margin-top: 80px;
}
/* Overlay */
.overlay{
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.5);
	opacity:0;
	visibility:hidden;
	transition:.3s;
	z-index:998;
}
/* Slider */
.slider {
	position: relative;
	overflow: hidden;
}

/* Slides */
.slides {
	display: flex;
	transition: 0.5s;
}

.slides img {
	width: 50%;
	object-fit: cover;
	flex: 0 0 50%;
}

/* Buttons */
.prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	color: #fff;
	border: none;
	padding: 6px 15px;
	cursor: pointer;
	border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
	margin-top: 10px;
}

.dot {
	height: 10px;
	width: 10px;
	margin: 5px;
	display: inline-block;
	background: #ccc;
	border-radius: 50%;
	cursor: pointer;
}

.active {
	background: #333;
}
.stats-panel{
	display:flex;
	justify-content:space-between;
}
.stats {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: #10161d;
	color: #fff;
	padding: 15   px;
	text-align: center;
	flex-wrap: wrap;
}

.stat {
	max-width: 260px;
	margin: 20px 59px;
	float: left;
}

.icon {
	font-size: 42px;
	margin-bottom: 15px;
}

.stat h2 {
	font-size: 48px;
	margin: 10px 0;
	font-weight: bold;
}

.stat p {
	font-size: 16px;
	line-height: 1.6;
	color: #ddd;
}
.about p{
	text-align:justify;
}
.globbg{
	background-image:url("/wp-content/uploads/2026/06/bg1-about-us.jpg");
	background-repeat: no-repeat;
	background-size: cover;      
	background-position: center; 
	text-align: center;
	color: #fff;
	padding: 20px 250px 125px;
}
.globbg .heading{
	padding:10px 25px;
}
.cardcontainer {
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	padding:45px 0px;
	margin-top:-150px;
}
.card {
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	transition: 0.3s ease;
	border:none;
}

.card:hover {
	transform: translateY(-5px);
}
.card a{
	text-decoration: none;
}
.card img {
	width: 100%;
	height: 290px;
	object-fit: cover;
	display: block;
}

.content {
	text-align: center;
	padding: 15px;
	height: 150px;
}

.content h3 {
	font-size: 22px;
	color: #1c2539;
	margin-bottom: 15px;
	font-weight: 500;
}

.content p {
	font-size: 16px;
	color: #222;
}

.card-footer {
	border-top: 1px solid #ddd;
	padding: 15px;
	background:#fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #1c2539;
	font-size: 15px;
	font-weight: 700;
}
.card:hover .card-footer {
	background: #14100e;
	color: #fff;
	transition: all 0.5s ease;
}
.card-footer i {
	color: #1c2539;
	font-size: 14px;
	position: absolute;
	right: 19px;
	margin-top: 8px;
}
.card:hover .card-footer i {
	color: #fff;
	transition: all 0.5s ease;
}
.slide-heading {
	opacity: 0;
	transform: translateX(-100px);
	animation: slideInLeft 1s ease-out forwards;
	padding: 11px 30px 0px 0px;
	text-align: left;
	font-size: 28px;
	line-height: 38px;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes blink {
	50% { border-color: transparent; }
}
.marquee{
	width:100%;
	overflow:hidden;
	padding:30px;
}
.marquee img {
	width: 10%;
}
.track{
	display:flex;
	gap:125px;
}
.track img{
	flex-shrink:0;
	display:block;
}
.marquee #track2 {
	gap: 60px !important;
}
.testmonialbg{
	background-image:url("/wp-content/uploads/2026/06/shape30.png");
	background-repeat: no-repeat;
	background-size: cover;      
	background-position: center; 	
}
.testimonial-slider{
	position:relative;
	width:100%;
	overflow:hidden;
}

.testimonial-wrapper{
	display:flex;
	transition:transform 0.5s ease-in-out;
}

.testimonial-slide{
	flex: 0 0 50%;
	margin: 13px;
	background:#fff;
	padding:25px;
	border-radius:12px;
	text-align:center;
	box-shadow: 0 4px 10px rgb(243 243 243);
	margin-bottom: 22px;
}

.testimonial-slide img{
	width:80px;
	height:80px;
	border-radius:50%;
	object-fit:cover;
	margin-bottom:15px;
	border:3px solid #f0f0f0;
}

.testimonial-slide p{
	color:#333;
	line-height:1.6;
	margin-bottom:15px;
	padding:0px 75px 0px 20px;
}

.testimonial-slide h4{
	color:#10161d;
}

/* Navigation Buttons */
.slider-controls{
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	transform:translateY(-50%);
	display:flex;
	justify-content:space-between;
	pointer-events:none;
}

.slider-controls button{
	pointer-events:auto;
	width:45px;
	height:45px;
	border:none;
	border-radius:50%;
	background:#10161d;
	color:#fff;
	font-size:20px;
	cursor:pointer;
	transition:0.3s;
}

.slider-controls button:hover{
	background:#222;
}
.service-panel{
	display:grid;
	grid-template-columns: repeat(4, 1fr);
	gap:17px;
	width:100%;
	max-width:1600px;
}

.service-card {
	height: 300px;
	border-radius: 10px;
	padding: 25px;
	position: relative;
	overflow: hidden;
}

.service-card h2{
	font-size:25px;
	line-height:1.15;
	font-weight:600;
	color:#000;
	max-width:320px;
}

.service-card p{
	margin-top: 25px;
	font-size: 18px;
	color: #000000;
	font-weight: 400;
	text-align:left !important;
}

.service-card img {
	position: absolute;
	bottom: 15px;
	left: 70%;
	transform: translateX(-50%);
	width: 50%;
	object-fit: contain;
}

/* service-card Colors */
.service-panel .service-card:nth-child(1) {background-color:#D8E5F7;}
.service-panel .service-card:nth-child(2) {background-color:#D8EEDF;}
.service-panel .service-card:nth-child(3) {background-color:#F2D9EF;}
.service-panel .service-card:nth-child(4) {background-color:#FDF1C9;}
.service-panel .service-card:nth-child(5) {background-color:#FEDCDB;}
.service-panel .service-card:nth-child(6) {background-color:#D0C3F1;}
.service-panel .service-card:nth-child(7) {background-color:#E9F9E5;}
.service-panel .service-card:nth-child(8) {background-color:#CEEEF8;}
.service-panel .service-card:nth-child(9) {background-color:#FFD7EE;}
.service-panel .service-card:nth-child(10) {background-color:#FEF1AB;}
.service-panel .service-card:nth-child(11) {background-color:#D5D1E9;}
.service-panel .service-card:nth-child(12) {background-color:#D0E4EE;}
.service-panel .service-card:nth-child(13) {background-color:#F3F5A9;}
.service-panel .service-card:nth-child(14) {background-color:#F5CF9F;}
.service-panel .service-card:nth-child(15) {background-color:#F5A7A6;}
.service-panel .service-card:nth-child(16) {background-color:#FCF9DA;}
.service-panel .service-card:nth-child(17) {background-color:#E0EBF7;}
.service-panel .service-card:nth-child(18) {background-color:#D3EDDB;}
.service-panel .service-card:nth-child(19) {background-color:#F9D7F6;}
.service-panel .service-card:nth-child(20) {background-color:#FCDFD7;}
.ads img {
	width: 72%;
	display: block;
	margin: 0 auto;
	padding: 15px;
}
.page-body h1 {
    font-size: 30px;
    margin-top: 10px;
    font-weight: 700;
}
}
.page-body p{
	text-align:justify;
	line-height:25px;
}
.about h2{
	font-size: 30px !important;
	color: #180030 !important;
	text-align:center;
	font-weight:bold;
	margin-bottom:50px;
}
.about h4{
	font-size: 25px !important;
	color: #180030 !important;
	font-weight:bold;
}
.about .rightimg{
	margin-top: -220px;
}
.about .img-100{
	width:100%;
}
.contact-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #130033;
    margin-bottom: 20px;
    margin-top: 15px;
}

.contact-section .intro{
    color:#666;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:26px;
}

.ico{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    background:#eaf0ea;
    display:flex;
    align-items:center;
    justify-content:center; /* Fixed */
}

.ico i{
    color:#160036;
    font-size:20px;
}

.contact-section .contact-text h3{
    font-size:22px;
    font-weight:700;
    color:#140032;
    margin-bottom:6px;
}

.contact-section .contact-text p{
    font-size:15px;
    color:#333;
    line-height:1.5;
	font-weight:600;
}
.contact-section .contact-text p a {
    text-decoration: none;
    color: #000;
}

/*========================= Footer Start=========================*/
.footer{
	background:#10161d;
	color:#fff;
	padding:70px 0 40px;
}
.footer a{
	color:#fff;
}
.container{
	width:90%;
	max-width:1800px;
	margin:auto;
}

.footer-top{
	display:flex;
	justify-content:space-between;
	gap:50px;
	flex-wrap:wrap;
}

.footer-col h4{
	color:#777;
	font-size:14px;
	font-weight:700;
	margin-bottom:30px;
	text-transform:uppercase;
}

.footer-col ul{
	list-style:none;
	padding:0px;
}

.footer-col ul li{
	margin-bottom:10px;
}

.footer-col ul li a{
	color:#fff;
	text-decoration:none;
	font-size:14px;
	font-weight:600;
	transition:.3s;
}

.footer-col ul li a:hover{
	color:#82b440;
}

.footer-stats{
	margin-left:auto;
}

.logo{
	font-size:28px;
	font-weight:700;
}

.logo span{
	font-weight:300;
}

.stats{
	display:flex;
	gap:70px;
}

.stats h3{
	font-size:22px;
	margin-bottom:10px;
}

.stats p{
	color:#999;
	font-size:16px;
}

.footer-bottom{
	border-top:1px solid rgba(255,255,255,.12);
	margin-top:50px;
	padding-top:35px;
	position:relative;
}

.footer-links{
	display:flex;
	flex-wrap:wrap;
	gap:40px;
	margin-bottom:25px;
}

.footer-links a{
	color:#fff;
	text-decoration:none;
	font-size:18px;
	font-weight:600;
}

.price-text{
	color:#b0b0b0;
	font-size:16px;
	margin-bottom:20px;
}

.copyright{
	color:#8f8f8f;
	font-size:15px;
}

.social-icons{
	position:absolute;
	right:0;
	bottom:0;
	display:flex;
	gap:15px;
}

.social-icons a{
	width:38px;
	height:38px;
	border-radius:50%;
	background:#4b4b4b;
	color:#fff;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
	transition:.3s;
}

.social-icons a:hover{
	background:#904ced;
}

/*========================= Footer End =========================*/
@media (max-width: 991px) {
	.container {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-top{
		flex-direction:column;
	}

	.footer-stats{
		margin-left:0;
	}

	.stats{
		flex-direction:column;
		gap:20px;
	}

	.social-icons{
		position:static;
		margin-top:30px;
	}

	.footer-links{
		gap:20px;
	}
}
@media (max-width:768px){

	.hamburger{
		display:block;
	}

	.menu{
		position:fixed;
		top:0;
		right:-300px;
		width:280px;
		height:100vh;
		background:#fff;
		flex-direction:column;
		padding-top:70px;
		transition:right .35s ease;
		z-index:999;
		box-shadow:-5px 0 20px rgba(0,0,0,.25);
		overflow-y:auto;
	}

	#menu-toggle:checked ~ .overlay{
		opacity:1;
		visibility:visible;
	}

	#menu-toggle:checked ~ .menu{
		right:0;
	}

	.menu a{
		padding:16px 25px;
		display:flex;
		align-items:center;
		border-bottom:1px solid #eee;
	}
	.about .d-flex {
		display: block !important;
	}
	.about .rightimg {
		margin-top: -85px;
	}
	.about .rightimg img {
		width: 98%;
	}
	/* Mobile Arrow */

	.menu-item-has-children > a::after{
		margin-left:auto;
		transition:transform .3s ease;
		transform:rotate(313deg);
		margin-top:7px;
	}
	.menu-item-has-children:hover > a::after{
		transform:rotate(313deg);
		margin-top:7px;
	}
	.menu-item-has-children.active > a::after{
		transform:rotate(45deg);
	}

	/* Mobile Sub Menu */
	.sub-menu{
		position:static;
		display:none;
		width:100%;
		background:#fff;
		box-shadow:none;
		border-radius:0;
		opacity:1;
		visibility:visible;
		transform:none;
	}

	.menu-item-has-children.active > .sub-menu{
		display:block;
	}

	.sub-menu a{
		color:#000;
		padding-left:40px;
	}

	.sub-menu a:hover{
		background:transparent;
	}
	.stats {
		flex-direction: column;
	}
	.cardcontainer {
		grid-template-columns: 1fr;
	}

	.content {
		min-height: auto;
	}
	.testimonial-slide{
		flex:0 0 calc(50% - 20px);
	}
	.page-body h1{
		margin-top:90px;
	}
	.service-card{
		height:400px;
		padding:40px 30px;
	}

	.service-card h2{
		font-size:18px;
	}

	.service-card p{
		font-size:1.1rem;
		margin-top:8px;
	}

	.service-panel{
		grid-template-columns: repeat(2, 1fr);
	}
	.service-card{
		height: 190px;
		padding: 15px;
	}
	.service-card img{
		width: 100px;
		bottom: 10px;
		left: 66%;
	}
	.ads img {
		width:100%;
	}
}
@media (max-width: 767px) {
	.slides img {
		flex: 0 0 100% !important;
		width: 100% !important;
	}
	.footer{
		padding:50px 0;
	}

	.footer-col ul li{
		margin-bottom:18px;
	}

	.footer-col ul li a{
		font-size:16px;
	}

	.footer-links{
		flex-direction:column;
		gap:15px;
	}
}
@media (max-width: 576px){
	.testimonial-slide{
		flex: 0 0 calc(100% - 10px);
		margin: 0 9px 11px;
	}

}
@media (min-width: 320px) and (max-width: 480px) {
	.container{
		width:100%;
	}
	.logo{
		margin-left: -15px;
	}
	.globbg{
		padding: 15px;
	}
	.cardcontainer{
		margin-top: -62px;
	}
	.card img{
		height:auto;
	}
	nav {
		padding: 0px 10px;
	}
	.slide-heading{
		padding: 11px 0px 0px 0px;
		text-align: left;
		font-size: 14px;
		line-height: 24px;
		margin-top: -50px;
	}
	.about p{
		font-size:13px;
	}
	.stats-panel{
		display:block;
	}
	.stat{
		max-width: 50%;
		margin: 0px;
		float: left;
		padding:15px;
		height:300px;
	}
	.marquee img {
		width: 50%;
	}
	.track{
		gap:10px;
	}
	.testimonial-slide p{
		padding:15px;
		margin-bottom:0px;
		font-size:18px;
	}
	.globbg .heading{
		padding: 10px 10px;
		font-size: 16px;
	}
	.globbg p {
		font-size: 12px;
	}
	.page-body p{
		font-size:13px;
	}
	.contact-left{
		display:none;
	}
	/*Blog Panel*/
	.single-post .left-side{
		padding:10px !important;
	}
	.card.muse_threeblock_card img{
		height:auto;
	}
	.blog-panel .card-body{
		padding:5px;
	}
	.blog-panel .card-title {
		font-size: 14px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.blog-panel input.search-field, .single-post input.search-field{
		width:75%;
	}
	.search-submit{
		position: relative;
		top: 0px;
		float: inherit;
		right: 0px;
	}
	.related-post h4 {
		color: #000;
		font-size: 14px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.search-item a{
	    font-size:18px;
	}
	/*Blog Panel*/
}