/* ================Animation=================== */
.animate {
	opacity: 0;
	transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.image-effect {
    transition: transform 0.4s ease;
}
/* Fade Up */
.fade-up {
	transform: translateY(60px);
}
.fade-up.active {
	opacity: 1;
	transform: translateY(0);
}

/* Slide Left */
.slide-left {
	transform: translateX(-100px);
}
.slide-left.active {
	opacity: 1;
	transform: translateX(0);
}

/* Slide Right */
.slide-right {
	transform: translateX(100px);
}
.slide-right.active {
	opacity: 1;
	transform: translateX(0);
}

/* Zoom In */
.zoom-in {
	transform: scale(0.8);
}
.zoom-in.active {
	opacity: 1;
	transform: scale(1);
}

/* Zoom Out */
.zoom-out {
	transform: scale(1.2);
}
.zoom-out.active {
	opacity: 1;
	transform: scale(1);
}

/* Rotate + Fade */
.rotate-in {
	transform: rotate(-5deg) scale(0.9);
}
.rotate-in.active {
	opacity: 1;
	transform: rotate(0) scale(1);
}
html, body {
	overflow-x: hidden;
}

.section-padding {
	overflow: hidden;
}


/* ================================================ */

body {
	font-family: 'Poppins', serif;
	padding-top: 90px;
	background: #f5f8fc;
}
h1{
	font-family: 'Playfair Display', serif !important;
}
h2{
	color:#1F2D4A !important;
}
/* Navbar */
.site-header {
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(8px);
}

.nav-logo {
	height: 50px !important;
	width: auto;
}


.nav-link {
	font-weight: 500;
	margin-left: 20px;
}

.btn-primary-custom:hover {
	background: linear-gradient(135deg, #ff8c1a, #ff6a00);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* .hero-slide::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.55);
} */

.hero-content {
	position: relative;
	color: #fff;
	max-width: 600px;
}

.hero-content h1 {
	font-size: 58px ;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
}

.hero-content span {
	color: #ff6600;
}

.btn-primary-custom {
	background: #ff6600;
	padding: 12px 30px;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
}


.hero-slide {
	position: relative;
	height: 90vh;
	background-size: cover;
	background-position: center;
	display: flex;
	background-repeat: no-repeat;
	align-items: center;
}

/* IMPORTANT FIX */
.hero-nav {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
	z-index: 9999;
	pointer-events: none;   /* Trick */
}

.hero-nav button {
	pointer-events: auto;   /* Trick */
	width: 50px;
	height: 50px;
	border: none;
	background: rgba(0,0,0,0.5);
	color: #fff;
	font-size: 22px;
	border-radius: 50%;
	cursor: pointer;
}


.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: 60px;
	font-weight: 700;
}

.hero-title span {
	color: #ffb347;
}

/* Sections */
.section-padding {
	padding: 80px 0;
}

.section-heading {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
}

/* ================= About SECTION ================= */
.about-img {
	transition: transform 0.8s ease;
}

.about-img-wrapper:hover .about-img {
	transform: scale(1.08);
}

.about-img-wrapper {
	overflow: hidden;
	border-radius: 12px;
}

.about-img {
	width: 100%;
	height: 550px;       /* Tall image look */
	object-fit: cover;
	border-radius: 12px;
}

/* Typography */
.about-content h2 {
	font-size: 36px;
	font-weight: 600;
	color: #1f2d4a;
}

.about-content p {
	color: #555;
	line-height: 1.8;
}

.about-list {
	list-style: none;
	padding: 0;
}

.about-list li {
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.about-list li::before {
	content: "🪔";
	/* content: "✔"; */
	position: absolute;
	left: 0;
	color: #f4a261;
	font-weight: bold;
}



.contact-btn:hover {
	background: #e76f51;
	color: #fff;
}

/* Responsive Fix */
@media (max-width: 991px) {
	.about-img {
		height: auto;
	}
}
section.about-section.py-5 {
	margin-top: -12px;
}



/* =================Home Content======================== */
.content-section {
	background: #f8fbff;
}

.content-section .lead {
	font-size: 18px;
	font-weight: 500;
	color: #555;
}

.content-section p {
	color: #666;
	line-height: 1.8;
}

/* =================Testimonial======================== */
.review-card {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	transition: 0.3s ease;
	height: 100%;
}

.review-card:hover {
	transform: translateY(-10px);
}

.review-stars {
	color: #ffb400;
	font-size: 18px;
	letter-spacing: 3px;
}

.review-card p {
	color: #555;
	line-height: 1.7;
}

.review-user span {
	display: block;
	font-size: 14px;
	color: #888;
}

/* =================Home Contact======================== */

/* .contact-section {
	background: #f8fbff;
}

.contact-info {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-box {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.contact-box i {
	font-size: 22px;
	color: #ff6600;
}

.contact-box h6 {
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-box p {
	margin: 0;
	color: #555;
}

.contact-form-wrapper {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.form-control {
	border-radius: 10px;
	padding: 12px;
	border: 1px solid #ddd;
}

.form-control:focus {
	border-color: #ff6600;
	box-shadow: none;
}
h2 {
	color: #1e3a8a; 
	/* -webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}
 */
/* =================Home Service======================== */
/* Cards */
.service-card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.service-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}


.service-card img {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.card-body {
	padding: 20px;
}

.card-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	font-weight: 600;
	color: #ff8c1a;
}
.packages-section {
	background: linear-gradient(135deg, #fffaf0, #f5e6d3);
}
.service-card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}


/* Left Side */
.package-left p {
	color: #000000;
	line-height: 1.7;
	margin-top: 15px;
}

/* Right Side */
.package-list {
	background: #ffffff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.package-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid #eee;
	transition: 0.3s;
}

.package-item:last-child {
	border-bottom: none;
}

.package-item h5 {
	margin: 0;
	font-weight: 600;
}

.package-item a {
	text-decoration: none;
	color: #2563eb;
	font-weight: 500;
	transition: 0.3s;
}

.package-item:hover {
	padding-left: 10px;
}

.package-item:hover a {
	color: #1e40af;
}


/*=================== Why Choose================ */

.why-box {
	height: 100%;
	padding: 30px 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	transition: 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.why-box {
	padding: 30px 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	transition: 0.3s ease;
}

.why-box:hover {
	transform: translateY(-8px);
}

.why-icon {
	margin-bottom: 15px;
}
.why-icon img {
	width: 160px;      /* icon size */
	height: 160px;
	object-fit: contain;
	margin-bottom: -33px;
}

.why-box {
	padding: 30px 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	transition: 0.3s ease;
}

.why-box:hover {
	transform: translateY(-8px);
}


/* =======================Packages========================== */
.packages-section {
	position: relative;
	/* background: url('../image/common-bg.png') center/cover no-repeat; */
	background-attachment: fixed;   /* 👈 eta add koro */
	overflow: hidden;
}


/*======================= CTA =========================*/

/*======================= Testimonial =========================*/
.testimonial-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.testimonial-body {
	padding: 20px;
}


.site-header {
	position: absolute;
	width: 100%;
	z-index: 999;
	background: rgba(255,255,255,0.95);
}
.hero-section {
	position: relative;
	height: 90vh;
	display: flex;
	align-items: center;
}
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: all 0.3s ease;
	background: transparent;
}

/* When scrolling */
.site-header.scrolled {
	background: rgba(255,255,255,0.95);
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}



/* ================= FAQ ================= */

.faq-section {
	background: #f8fbff;
}

.accordion-item {
	border: none;
	margin-bottom: 15px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.accordion-button {
	font-weight: 600;
	background: #fff;
}

.accordion-button:not(.collapsed) {
	background: #ff6600;
	color: #fff;
}

.accordion-body {
	background: #fff;
}


/* ================= BLOG SECTION ================= */
.blog-img img {
	transition: transform 0.6s ease;
}

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


.blog-section {
	background: #f5f8fc;
}

.section-subtitle {
	color: #6c757d;
	font-size: 15px;
}

.blog-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	transition: 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-6px);
}

.blog-img img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.blog-content {
	padding: 20px;
}

.blog-date {
	font-size: 13px;
	color: #ff8c1a;
	font-weight: 500;
}

.blog-content h5 {
	margin-top: 8px;
	font-weight: 600;
}

.blog-content p {
	font-size: 14px;
	color: #555;
}

.read-more {
	text-decoration: none;
	font-weight: 600;
	color: #ff8c1a;
	transition: 0.3s;
}

.read-more:hover {
	color: #e67300;
}

/* ================= FOOTER ================= */

.footer-section {
	position: relative;
	background-image: url("../image/common-bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
	z-index: 1;
}

/* Fixed Overlay */
.footer-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(15, 32, 70, 0.95),
		rgba(10, 20, 50, 0.95)
	);
	z-index: 0;   /* Important */
}

/* Keep content above overlay */
.main-footer {
	background: linear-gradient(135deg, #f9efdb, #f5e6d3);  color: #fff;
	padding-top: 70px;
	color: #000;
}

.footer-logo {
	width: 200px;
	margin-bottom: 20px;
}

.footer-about p {
	font-size: 15px;
	color: #000000;
	line-height: 1.7;
}

.footer-links h5,
.footer-contact h5 {
	font-weight: 600;
	margin-bottom: 20px;
	color: #ff9c3f;
}

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

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

.footer-links ul li a {
	color: #000000;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links ul li a:hover {
	color: #ff9c3f;
	padding-left: 5px;
}

.footer-contact h4 {
	font-weight: 600;
	margin: 10px 0;
}

.whatsapp-btn {
	display: inline-block;
	background: #25d366;
	color: #fff;
	padding: 10px 18px;
	border-radius: 30px;
	margin: 15px 0;
	text-decoration: none;
	transition: 0.3s;
}

.whatsapp-btn:hover {
	background: #1ebe5d;
	transform: translateY(-3px);
}

.address {
	display: block;
	font-size: 14px;
	color: #d1d8f0;
}

.social-icons a {
	display: inline-block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	margin-right: 10px;
	color: #fff;
	transition: 0.3s;
}

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

.footer-bottom {
	background: #0c1530;
	padding: 20px 0;
	margin-top: 50px;
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
}

.footer-mini-links a {
	color: #d1d8f0;
	margin-left: 15px;
	font-size: 14px;
	text-decoration: none;
}

.footer-mini-links a:hover {
	color: #ff9c3f;
}
.social-icons a {
    background-color: #ff6600 !important;
    display: inline-block;          /* Important for transform */
    transition: all 0.3s ease;      /* Smooth animation */
}

.social-icons a:hover {
    background-color: #1f2d4a !important;
    transform: scale(1.2);          /* Zoom effect */
}
/* ==============Back To Top======================= */
#backToTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background:#ff6600;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
	overflow: hidden;
	z-index: 999;
	transition: 0.3s ease;
}

/* Arrow center */
#backToTop .arrow {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

/* Sliding Text Layer */
#backToTop .text {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #111;
	/* border: 2px solid #ff6600; */
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
}

/* Hover Effect */
#backToTop:hover .text {
	top: 0;
}

#backToTop:hover .arrow {
	opacity: 0;
}

/* Map Section */
.map-section {
	background: #f8f9fb;
}

.map-wrapper {
	width: 100%;
	height: 450px;
}

.map-wrapper iframe {
	width: 100%;
	height: 100%;
	display: block;
}


/* ============Contact============ */
/* Hero CSS */
.contact-hero-pro {
	position: relative;
	height: 75vh;
	background: url('assets/images/mayapur-hero.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	color: #fff;
}

.contact-hero-pro .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
}

.hero-inner {
	position: relative;
	z-index: 2;
}

.hero-inner h1 {
	font-size: 48px;
	font-weight: 700;
}

/* Glass Contact Form Section */
.section-padding {
	padding: 100px 0;
	background: #f8f9fb;
}

.contact-form-box {
	background: #fff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.primary-btn {
	background: linear-gradient(135deg, #ff8c1a, #007bff);
	color: #fff;
	border: none;
	padding: 12px 25px;
	border-radius: 30px;
	cursor: pointer;
}

.contact-card {
	background: #111;
	color: #fff;
	padding: 40px;
	border-radius: 15px;
}

.whatsapp-btn {
	display: block;
	margin-top: 20px;
	padding: 12px;
	background: #25D366;
	text-align: center;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
}

.vendor-btn {
	display: block;
	margin-top: 15px;
	padding: 12px;
	background: #ff8c1a;
	text-align: center;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
}


/* ======Contact Page===== */
/* SECTION */
.contact-section {
    padding: 100px 0;
    background: #f3f4f6;
}

/* HEADER */
.contact-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 15px;
}

.contact-header p {
    color: #555;
    line-height: 1.6;
}

/* CARD WRAPPER */
.contact-card {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    background: #fff;
}

/* LEFT SIDE */
.contact-left {
    flex: 0 0 40%;
    background: #F8EDD9;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h5 {
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 5px;
}

.contact-left p {
    margin: 0;
    color: #444;
}

/* RIGHT SIDE */
.contact-right {
    flex: 0 0 60%;
    padding: 60px 50px;
    background: #ffffff;
}

.contact-right h2 {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
}

/* FORM */
.contact-form {
    margin-top: 10px;
}

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

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background: #f9f9f9;
    transition: 0.3s ease;
}

.form-group textarea {
    height: 130px;
    resize: none;
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: 0.3s ease;
    background: #f9f9f9;
    padding: 0 4px;
}

/* Floating effect */
.form-group input:focus,
.form-group input:valid,
.form-group textarea:focus,
.form-group textarea:valid {
    border-color: #ff6a00;
    background: #fff;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: #ff6a00;
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #ff6a00;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #e55b00;
}


/* ============About Page============== */

/*  HERO  */
.about-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* Dark overlay */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width:991px){
    .about-hero {
        height: 60vh;
    }
}

/* ================= GENERAL ================= */
.section-title {
    font-weight: 700;
    color: #b8860b;
}

.section-subtitle {
    color: #555;
}

/* ================= ABOUT ================= */
.about-img {
    transition: transform 0.4s ease;
}

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

/* ================= WHY ================= */
/* ================= BRAND SECTION ================= */

.brands-section {
/*     background: linear-gradient(135deg, #fff8e1, #f3e5ab); */
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    color: #FF6A00;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* ===== 5 COLUMN FLEX GRID ===== */

.brand-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.brand-col {
    width: 20%;   /* 5 equal columns */
    padding: 10px;
    display: flex;
}

/* ===== BRAND BOX ===== */

.brand-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: all 0.4s ease;
}

.brand-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== LOGO ===== */

.brand-logo {
    height: 140px;
    width: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.brand-box:hover .brand-logo {
    transform: scale(1.08);
}

.brand-box h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2d4a;
    margin: 0;
}

/* ===== ONE ROOF SECTION ===== */

.one-roof-box {
    background: #1f2d4a;
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    max-width: 900px;
    margin: 70px auto 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.one-roof-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .brand-col {
        width: 25%;   /* 4 per row */
    }
}

@media (max-width: 992px) {
    .brand-col {
        width: 33.33%;   /* 3 per row */
    }
}

@media (max-width: 768px) {
    .brand-col {
        width: 50%;   /* 2 per row */
    }
}

@media (max-width: 480px) {
    .brand-col {
        width: 100%;   /* 1 per row */
    }
}
/* 02-03-2026 - Shop Page */
.shop-inner-banner {
	background: #F7EAD7;
	color: #1F2D4A;
	padding: 80px 0;
}

.breadcrumb-wrapper a {
	color: #ff6600;
	text-decoration: none;
	font-weight: 800;
}

.product-card {
	border: 1px dashed #666;
	border-radius: 10px;
	padding: 15px;
	gap: 10px;
	background-color: #fff;
	transition: 0.6s;
	height: 100%;
}
.product-card a {
	text-decoration: none;
}
.product-card h3, .product-card p{
	color: #1F2D4A;
}

.pricing-section {
	padding: 80px 0;
}

.feature {
	display: flex;
	align-items: center;
	gap: 18px;
	justify-content: end;
}

.feature select {
	display: flex;
	align-items: center;
	border: 1px solid #bbb;
	border-radius: 0;
	overflow: hidden;
	padding: 11px 16px;
	background: #fff0;
	color: #5e5e5e;
	border-radius: 5px;
}

/* 02-03-2026 - Shop Page */

/* Event Page Style */
.event-breadcrumb{
    background: linear-gradient(135deg,#5b0f2f,#8a1c4f);
    padding: 110px 0;
    color: #fff;
}

.page-title{
    font-size: 40px;
    font-weight: 700;
}

.section-title{
    font-weight: 600;
}

.event-card{
    text-align: center;
    transition: 0.3s;
}

.event-card img{
    border-radius: 12px;
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.event-card h5{
    margin-top: 15px;
    font-weight: 600;
}

.event-card:hover{
    transform: translateY(-8px);
}

.event-contact{
    background: #f8f9fa;
}
/* ===== Contact Section Background ===== */
.event-contact{
    background-color:#F7EAD7 ;
    padding: 120px 0;
    position: relative;
}

/* ===== Floating Card ===== */
.event-contact form{
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* Form Heading */
.event-contact h2{
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #fff;
}

/* Input Fields */
.event-contact .form-control{
    padding: 14px;
    transition: 0.3s ease;
}

.event-contact .form-control:focus{
    box-shadow: 0 0 10px rgba(91,15,47,0.2);
}

/* Button */
.event-contact button{
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 14px 45px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s ease;
}

.event-contact button:hover{
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}
/* 22-02-2026 */
.whatsapp {
    background-color: #25D366;
    color: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 100px;
    position: fixed;
    bottom: 85px;
    right: 30px;
}


/* Menu Page */
.inner-baner {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

section.menu-main {
	padding: 70px 0px;
} 

.menu-main ul#pills-tab {
    gap: 15px;
}

.menu-main .nav-pills .nav-link.active {
    border-radius: var(--bs-nav-pills-border-radius);
    border-radius: 0px;
    border: 1px solid #000000;
    background: #ff6a00;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    width: 14rem;
    font-size: 19px;
    font-weight: 600;
	border-radius: 6px;
}

.menu-main .nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius);
    border-radius: 0px;
    border: 1px dashed #db9423;
    background: #fff;
    color: #ff6a00;
    text-transform: uppercase;
    letter-spacing: 3px;
    width: 14rem;
    font-size: 19px;
    font-weight: 600;
	border-radius: 6px;
}
.menu-main .menu-book-box {
    border: 1px dashed #666;
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
    background-color: #fff;
    transition: 0.6s;
    height: 100%;
}
.menu-main .menu-book-img img {
    width: 68px;
}
.menu-main .menu-book-box  .h2 a {
    font-size: 19px;
    color: #ff6a00;
    font-weight: bold;
}

.menu-main .menu-book-box p {
    margin: 0;
}

@media screen and (max-width: 767px) {
	.menu-main .menu-book-box {
    border: 1px dashed #666;
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
    background-color: #fff;
    transition: 0.6s;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
	.menu-main .menu-book-img img {
    width: 76px;
}
}

/* 22-02-2026 */


/* ===== Blog ===== */
.blog-banner {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;   /* left align */
    padding-left: 80px;            /* space from left */
    color: #fff;
}

.blog-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
}

.blog-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 42px;
    font-weight: 700;
}

/* ===== Blog Cards ===== */
.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    height: 220px;
    object-fit: cover;
}

.blog-card .card-body h5 {
    font-weight: 600;
}

.read-btn {
    text-decoration: none;
    color: #ff6600;
    font-weight: 500;
}

.read-btn:hover {
    text-decoration: underline;
}
/* ====Inner Blog=== */
/* ===== Banner ===== */
.blog-banner {
    height: 50vh;
    background: url('https://picsum.photos/1920/800') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.blog-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

/* ===== Blog Card ===== */
.blog-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.blog-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* ===== Sidebar ===== */
.sidebar-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
}

.sidebar-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.popular-post li {
    margin-bottom: 10px;
}

.popular-post a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.popular-post a:hover {
    color: #0d6efd;
}
/* HEADER */
.contact-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 15px;
}

.contact-header p {
    color: #555;
    line-height: 1.6;
}

/* CARD WRAPPER */
.contact-card {
    display: flex;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    background: #fff;
}

/* LEFT SIDE */
.contact-left {
    flex: 0 0 40%;
    background: #F8EDD9;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	color:#000;
}
.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-box i {
    font-size: 20px;
    min-width: 30px;   /* IMPORTANT */
    flex-shrink: 0;    /* icon shrink hobe na */
    color: #ff6a00;
}

.contact-box h6 {
    margin: 0;
    font-weight: 600;
}

.contact-box a {
    display: block;
    font-size: 14px;
    color: #444;
    text-decoration: none;
}
.contact-left h5 {
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 5px;
}

.contact-left p {
    margin: 0;
    color: #444;
}

/* RIGHT SIDE */
.contact-right {
    flex: 0 0 60%;
    padding: 60px 50px;
    background: #ffffff;
}

.contact-right h2 {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
}

/* FORM */
.contact-form {
    margin-top: 10px;
}

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

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background: #f9f9f9;
    transition: 0.3s ease;
}

.form-group textarea {
    height: 130px;
    resize: none;
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: 0.3s ease;
    background: #f9f9f9;
    padding: 0 4px;
}

/* Floating effect */
.form-group input:focus,
.form-group input:valid,
.form-group textarea:focus,
.form-group textarea:valid {
    border-color: #ff6a00;
    background: #fff;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: #ff6a00;
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #ff6a00;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #e55b00;
}
.row.align-items-stretch.g-4 {
    background: #a1a1a1;
    padding: 15px;
    color: #fff;
	border-radius:20px;
}
.contact-section {
    padding: 50px 0;
    background: #ffffff;
}
.hero-content h1{
	font-size:58px;
}
.hero-content p{
	color: #ffffff !important;
}
.contact-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}
h1,h2,h3,h4{
	    font-family: 'Playfair Display', serif;
}
.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
	color:#ff6600;
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  background: #f3e6d2;
  padding: 80px 0;
}

/* Equal height */
.contact-section .row {
  display: flex;
  align-items: stretch;
}

.contact-section .col-lg-6 {
  display: flex;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Contact items */
.contact-box {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-box:last-child {
  border-bottom: none;
}

.contact-box i {
  width: 42px;
  height: 42px;
  background: #ff6600;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Map bigger */
.map-wrapper {
  margin-top: 30px;
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  border: none;
}

/* RIGHT SIDE FORM */
.contact-form-wrapper {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Inputs */
.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: #ff6600;
  box-shadow: none;
}

/* Button */
.btn-primary-custom {
  background: #ff6600;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #e55c00;
}

/* Mobile */
@media (max-width: 992px) {
  .contact-section .row {
    flex-direction: column;
  }

  .contact-form-wrapper {
    margin-top: 30px;
  }
}
/* ===Home Page Contact=== */
.contact-header p {
    color: #555;
    line-height: 1.;
}


/* Make WP menu behave like Bootstrap */

.navbar-nav {
    align-items: center;
}

.navbar-nav .menu-item {
    margin-left: 15px;
}

.navbar-nav .menu-item a {
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 500;
}

.navbar-nav .menu-item a:hover {
    color: #ff6a00;
}

/* Book Now Button */
.navbar-nav .menu-item:last-child a {
    background: #ff6a00;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 18px;
}
@media (max-width: 991px) {
.navbar-nav .menu-item:last-child a {
        padding: 6px 14px;   
        font-size: 14px;     
        border-radius: 6px;  
        width: auto;        
        display: inline-block;
	      margin-left:10px;
				margin-top:5px;
    }
    .navbar-nav {
        align-items: flex-start !important; /* left align */
        text-align: left;
        width: 100%;
    }

    .navbar-nav .menu-item {
        width: 100%;
        margin: 0; /* gap maintain */
    }

    .navbar-nav .menu-item a {
        display: block;
        padding: 0p ;
    }

}

/* Responsive */
@media (max-width: 991px) {
	.hero-content h1{
	font-size:35px;
}
	.hero-content a{
	font-size:15px;
}
    .contact-card {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: 0 0 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input {
        width: 100%;
    }
}

.contact-form {
    margin-top: 30px;
}

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

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background: #fff;
    transition: 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: 0.3s ease;
    background: #fff;
    padding: 0 4px;
}

/* Floating Effect */
.form-group input:focus,
.form-group input:valid,
.form-group textarea:focus,
.form-group textarea:valid {
    border-color: #ff6a00;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: #ff6a00;
}

/* Button */
 {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff6a00, #ff8c00);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,106,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {

    .contact-form {
        margin-top: 20px;
    }

    .form-grid {
        flex-direction: column;
        gap: 1px;
        margin-bottom: 1px;
    }
	.about-conent{
		text-align:center;
	}
    .form-group input, .form-group textarea {
    padding: 18px;
    font-size: 10px;
    border-radius: 10px;
    margin-bottom: 14px;
}

    .form-group textarea {
        height: 140px;
    }

    .form-group label {
        font-size: 13px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 14px;
        border-radius: 10px;
    }
	.row .align-items-stretch{
		margin-top:35px;
	}
	.row .col-md-4{
		margin-top:15px;
	}
}


/*========== Service ==========*/
.services-gallery {
  background: #F7EAD7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
}

/* --------------------- */
/* TABLET RESPONSIVE */
/* --------------------- */

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  /* Remove spanning on tablet for clean alignment */
  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --------------------- */
/* MOBILE RESPONSIVE */
/* --------------------- */

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item {
    height: 220px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .overlay h4 {
    font-size: 16px;
  }
}

/* Home Gallery */
.travel-gallery {
  background: #F7EAD7;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.image-wrapper {
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Smooth Zoom */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive Height */
@media (max-width: 991px) {
  .image-wrapper img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .image-wrapper img {
    height: 220px;
  }
}

.contact-main-box{
background:#fff;
border-radius:15px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
overflow:hidden;
}

/* LEFT SIDE */

.contact-info{
background:#ff6a00;
padding:50px 35px;
height:100%;
color:#fff;
}

.info-item{
display:flex;
align-items:center;
margin-bottom:30px;
}

.info-item i{
font-size:22px;
width:45px;
height:45px;
background:#fff;
color:#ff6a00;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-right:15px;
}

.info-item h6{
margin:0;
font-weight:600;
}

.info-item p{
margin:0;
font-size:14px;
opacity:.9;
}

/* FORM */

.contact-form{
padding:50px;
background:#fafafa;
}

.contact-form .form-control{
height:50px;
border-radius:8px;
border:1px solid #ddd;
}

.contact-form textarea{
    min-height: 140px;
    resize: vertical;
}

.contact-btn{
background:#ff6a00;
border:none;
padding:14px;
width:240px;
border-radius:8px;
color:#fff;
font-weight:600;
transition:.3s;
}

.contact-btn:hover{
background:#e65c00;
}

/* 07/03/2026 */
#about-subtitle {
	color:#ff6600 !important; 
	font-size:42px !important;
	font-family:'Playfair Display', serif !important;
}

/* 23/03/2026 */
/* Apply same style to all fields */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1.5px solid #ff6600;
    font-size: 15px;
    background: #fff;
    height: 50px;
    box-sizing: border-box;
}

/* Fix textarea height */
.contact-form textarea {
    height: 150px;
}

/* 🔥 IMPORTANT: Target CF7 select wrapper */
.contact-form .wpcf7-form-control-wrap select {
    width: 100%;
}

/* Remove default arrow */
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/* Fix select height alignment */
.contact-form select {
    line-height: normal;
}

/* Focus same as others */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255,102,0,0.1);
}

/* Remove weird grey background (IMPORTANT) */
.contact-form select {
    background-color: #fff !important;
}
.contact-card {
    color: #000;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn {
    background: #ff6600;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.form-control {
    height: 214px;
}