/*
Theme Name: Xorbeo
Theme URI: https://xorbeo.com/
Author: Xorbeo Theme
Author URI: https://xorbeo.com/
Description:Create a fully responsive menu and widget system featuring modern category tabs, smooth pagination, and an intuitive user interface. Ensure mobile-first design, fast performance, clean navigation, accessibility, and seamless adaptation across all screen sizes and devices.
Version: 1.2
*/
#load-data img {
    width: 100%;
}
/* =========================
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%;
}
.footer-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-item-397 .sub-menu {
    width: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.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;
}
/* =========================
HERO SLIDER
========================= */
.hero-slider {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}
.slides {
	width: 100%;
	height: 100%;
}
.slide {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease;
}
.slide.active {
	opacity: 1;
	visibility: visible;
}
.slide-content {
	width: 90%;
	max-width: 950px;
	text-align: center;
	color: #fff;
}
.slide-content span {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 3px;
	margin-bottom: 18px;
}
.slide-content h1 {
	font-size: 60px;
	line-height: 1.1;
	margin-bottom: 20px;
}
.slide-content p {
	max-width: 700px;
	margin: 0 auto 30px;
	font-size: 19px;
	line-height: 1.7;
}
.banner-btn {
	display: inline-block;
	background: #b46704;
	color: #fff;
	padding: 15px 35px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}
.banner-btn:hover {
	background: #fff;
	color: #b46704;
}
/* =========================
SLIDER ARROWS
========================= */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255,255,255,0.5);
	background: rgba(0,0,0,0.30);
	color: #fff;
	border-radius: 50%;
	font-size: 23px;
	cursor: pointer;
	z-index: 10;
	transition: 0.3s;
}
.slider-arrow:hover {
	background: #b46704;
	border-color: #b46704;
}
.slider-arrow.prev {
	left: 30px;
}
.slider-arrow.next {
	right: 30px;
}
/* =========================
SLIDER DOTS
========================= */
.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.6);
	cursor: pointer;
	transition: 0.3s;
}
.dot.active {
	width: 32px;
	border-radius: 10px;
	background: #b46704;
}
/* =========================
PACKAGES
========================= */
.packages {
	padding: 80px 20px;
}
.container {
	max-width: 1200px;
	margin: auto;
}
.section-title {
	text-align: center;
	margin-bottom: 50px;
}
.section-title span {
	color: #b46704;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
}
.section-title h2 {
	font-size: 40px;
	color: #173b57;
	margin: 10px 0 12px;
}
.section-title p {
	color: #777;
	font-size: 16px;
}
.package-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.package-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0,0,0,0.08);
	transition: 0.3s;
}
.package-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.package-image {
	height: 180px;
	overflow: hidden;
	position: relative;
}
.package-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}
.package-card:hover .package-image img {
	transform: scale(1.08);
}
.package-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #b46704;
	color: #fff;
	padding: 7px 13px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
}
.package-content {
	padding: 7px;
}
.package-content h3 {
	color: #173b57;
	font-size: 20px;
	margin-bottom: 10px;
}
.package-content p {
	color: #777;
	line-height: 1.6;
	margin-bottom: 18px;
}
.package-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid #eee;
}
.price {
	font-size: 23px;
	font-weight: bold;
	color: #b46704;
}
.duration {
	color: #777;
	font-size: 14px;
}
.package-btn {
	display: block;
	text-align: center;
	background: #173b57;
	color: #fff;
	padding: 13px;
	border-radius: 7px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}
.package-btn:hover {
	background: #b46704;
}
/* =========================
WHY CHOOSE US
========================= */
.features {
	background: #fff;
	padding: 80px 20px;
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}
.feature-box {
	text-align: center;
	padding: 30px 20px;
}
.feature-icon {
	width: 65px;
	height: 65px;
	margin: 0 auto 20px;
	background: #fff0ea;
	color: #b46704;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}
.feature-box h3 {
	color: #173b57;
	margin-bottom: 10px;
}
.feature-box p {
	color: #777;
	line-height: 1.6;
	font-size: 14px;
}
/* =========================
About
========================= */
.about p {
    font-size: 14px;
}
.about-panel {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 250px 250px;
gap: 20px;
width: 100%;
margin: 0 auto;
box-sizing: border-box;
margin-top:100px;
}

.about-panel * {
    box-sizing: border-box;
}

/* Text section */
.about-panel .intro {
    grid-column: 1;
    grid-row: 1;
    padding-top: 5px;
}

.about-panel .subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d76b6b;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-panel .subtitle::before {
    content: "";
    width: 60px;
    height: 2px;
    background: #e36d6d;
}

.about-panel .intro h1 {
    margin: 0 0 15px;
    color: #142747;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
}

.about-panel .intro p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Images */
.about-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image positions */
.about-panel .image-1 {
    grid-column: 2;
    grid-row: 1;
}

.about-panel .image-2 {
    grid-column: 3;
    grid-row: 1;
}

.about-panel .image-3 {
    grid-column: 1;
    grid-row: 2;
}

.about-panel .image-4 {
    grid-column: 2 / 4;
    grid-row: 2;
}
.about-section{
	margin-bottom:100px;
}
.about-header {
    text-align: center;
}

.about-label {
    display: block;
    color: #386fd3;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 10px;
}

.about-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    color: #17344d;
    margin-bottom: 12px;
}

.about-description {
    max-width: 690px;
    margin: 0 auto;
    color: #536b83;
    font-size: 15px;
    line-height: 1.5;
	margin-bottom:25px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #eee;
    cursor: pointer;
}

.about-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.about-item:hover img {
    transform: scale(1.06);
}

.about-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity .4s ease;
}

.about-item:hover .about-overlay {
    opacity: 1;
}

.about-overlay span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    transform: translateY(20px);
    transition: transform .4s ease;
}

.about-item:hover .about-overlay span {
    transform: translateY(0);
}

.about-column.left .about-item:first-child {
    height: 312px;
}

.about-column.left .about-item:last-child {
    height: 215px;
}

.about-column.center .about-item {
    height: 524px;
}

.about-column.right .about-item:first-child {
    height: 250px;
}
.about-column.right .about-item:last-child {
    height: 247px;
}

/* =========================
FOOTER
========================= */
footer {
	background: #1d190e;
	color: #fff;
	padding: 65px 20px 20px;
}
.footer-grid {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 45px;
	margin-bottom: 45px;
}
.footer-box h3 {
	font-size: 21px;
	margin-bottom: 20px;
}
.footer-box ul{padding:0px;}
.footer-logo {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 18px;
}
.footer-logo span {
	color: #b46704;
}
.footer-box p {
	color: #c5d0d8;
	line-height: 1.8;
}
.footer-box ul {
	list-style: none;
}
.footer-box ul li {
	margin-bottom: 13px;
}
.footer-box ul li a {
	color: #c5d0d8;
	text-decoration: none;
	transition: 0.3s;
}
.footer-box ul li a:hover {
	color: #b46704;
	padding-left: 4px;
}
.contact-item {
	color: #c5d0d8;
	margin-bottom: 14px;
	line-height: 1.5;
}
.contact-item a {
    color: #c5d0d8;
    text-decoration: none;
}
.social-links {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.social-links a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.social-links a:hover {
	background: #b46704;
}
.footer-bottom {
	max-width: 1200px;
	margin: auto;
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 20px;
	text-align: center;
	color: #aebbc4;
	font-size: 14px;
}
@media (max-width: 950px) {
	.package-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.slide-content h1 {
		font-size: 48px;
	}
}
@media (max-width: 900px) {
    .about-title {
        font-size: 30px;
    }
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-column.center {
        grid-column: span 2;
        order: -1;
    }
    .about-column.center .about-item {
        height: 450px;
    }
}
@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;
	}
	/* 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;
	}
}
@media (max-width: 750px) {
    .about-panel {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 220px 220px;
        gap: 15px;
    }

    .about-panel .intro {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .about-panel .image-1 {
        grid-column: 1;
        grid-row: 2;
    }

    .about-panel .image-2 {
        grid-column: 2;
        grid-row: 2;
    }

    .about-panel .image-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .about-panel .image-4 {
        grid-column: 2;
        grid-row: 3;
    }

    .about-panel .intro h1 {
        font-size: 32px;
    }
}
@media (max-width: 700px) {
.hero-slider {
                height: 500px;
            }

            .slide-content h1 {
                font-size: 38px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .slide-content span {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .slider-arrow.prev {
                left: 15px;
            }

            .slider-arrow.next {
                right: 15px;
            }

            .packages {
                padding: 60px 20px;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .package-grid,
            .feature-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                gap: 30px;
            }
}
@media (max-width: 600px) {
    .about-section {
        padding: 20px 15px 30px;
		display:none;
    }
    .about-header {
        margin-bottom: 30px;
    }
    .about-title {
        font-size: 25px;
    }
    .about-description {
        font-size: 14px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .about-column {
        gap: 15px;
    }
    .about-column.center {
        grid-column: auto;
        order: 0;
    }
    .about-column.left .about-item:first-child,
    .about-column.left .about-item:last-child,
    .about-column.center .about-item,
    .about-column.right .about-item:first-child,
    .about-column.right .about-item:last-child {
        height: 260px;
    }
    .about-overlay span {
        font-size: 18px;
    }
}
@media (max-width: 500px) {
    .about-panel {
        display: none;
        flex-direction: column;
    }

    .about-panel .intro {
        padding-bottom: 10px;
    }

    .about-panel img {
        height: 250px;
    }

    .about-panel .intro h1 {
        font-size: 30px;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
	.container{
		width:100%;
	}
	.logo{
		margin-left: -15px;
	}
	.logo img {
    width: 18%;
    padding: 4px 9px 10px 8px;
}
	.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;
	}
	#menu-item-397.active .sub-menu {
    display: block;
}
	#menu-item-397 .sub-menu {
    width: auto;
    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*/
}