* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', sans-serif;
	line-height: 1.6;
	color: #333;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

a {
	text-decoration: none;
	color: inherit;
}
.text-center {
	text-align: center;
}
/* Header */
.site-header {
	background: #02116b;
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.site-header .header-inner {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo img {
	height: 50px;
}

.site-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
}
.sub-title {
	font-size: 0.8rem;
}
.nav-toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: none;
}

.hamburger, .hamburger::before, .hamburger::after {
	content: '';
	display: block;
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 4px 0;
}

.site-nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

.site-nav a {
	color: #fff;
	font-weight: 600;
}

.header-contact a {
	background: #e50914;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Hero */
.hero {
	background: url('image-3.jpg') center/cover no-repeat;
	color: #fff;
	text-align: center;
	padding: 10rem 0;
}

.hero .subtitle {
	font-size: 1.4rem;
	margin: 0.5rem 0 2rem;
}

.rotating-title {
	font-size: 1.9rem;
	font-weight: 700;
	position: relative;
	height: 2.5rem;         /* Reserve space for rotated titles */
	margin-bottom: 1rem;    /* Space below before subtitles */
}
.title-text { opacity: 0; position: absolute; left: 50%; top: 0; transform: translateX(-50%); transition: opacity 0.5s ease-in-out; }
.title-text.active { opacity: 1; }
.btn-primary {
	background: #e50914;
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
}

/* Services Grid */
.services {
	padding: 3rem 0;
}

.services h2 {
	text-align: center;
	margin-bottom: 2rem;
	color: #02116b;
}

.services .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.service-card {
	overflow: hidden;
	height: 200px;
	border-radius: 8px;
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Pricing */
.pricing, .our-specials, .about-us {
	padding: 3rem 0;
}
.pricing-note {
	padding-top: 2rem;
	text-align: center;
	font-weight: bold;
}
.specials { padding: 3rem 0; background: #f5f5f5; }
.specials .container { max-width: 800px; margin: 0 auto; background: #fff; border: 2px solid #28a745; border-radius: 8px; padding: 2rem; }
.specials h2 { text-align: center; margin-bottom: 1.5rem; color: #02116b; font-size: 1.75rem; }
.specials-list { list-style: disc inside; font-size: 1rem; line-height: 1.6; color: #333; }
.specials-list li { margin-bottom: 0.75rem; }
.corporate-cabs, .tourism, .pilgrimage-trips {
	padding-bottom: 2rem;
}
.pricing h2, .our-specials h2, .about-us h2 {
	text-align: center;
	margin-bottom: 2rem;
	color: #02116b;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}
.about-us-grid {
	text-align: center;
}
.our-specials-grid {
	display: flex;
	justify-content: center;
	align-items: center;
}

.plan {
	background: #f9f9f9;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan h3 {
	margin-bottom: 1rem;
	color: #e50914;
	text-align: center;
	min-height: 60px;
}

.plan ul {
	list-style: disc;
	margin-left: 1rem;
}

/* Contact & Footer */
.contact, .site-footer {
	background: #02116b;
	color: #fff;
	text-align: center;
	padding: 2rem 0;
}

.site-footer p {
	font-size: 0.875rem;
}

/* Responsive Nav */
@media (max-width: 768px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #02116b;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.site-nav.open {
		max-height: 300px;
	}

	.site-nav ul {
		flex-direction: column;
		padding: 1rem;
	}
}

