:root {
	--primary-color: #2c1e3d;
	--secondary-color: #D95757;
	--text-color: #5f5a68;
	--bg-light: #f9f7fb;
	--border-color: #eee;
}

body {
	background-color: var(--bg-light);
	font-family: 'Inter', 'Segoe UI', sans-serif;
	color: var(--text-color);
}

.container {
	max-width: 1300px;
	margin: auto;
}

/* Top Bar */
.top-bar {
	background-color: var(--primary-color);
	color: white;
	padding: 10px 0;
	font-size: 14px;
}

.top-bar a {
	color: white;
	text-decoration: none;
	margin-left: 20px;
}

.top-bar a:hover {
	text-decoration: underline;
}

/* Header */
.main-header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 5px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.logo {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.logo:hover {
	color: var(--secondary-color);
}

.navbar-nav .nav-link {
	color: var(--primary-color);
	font-weight: 500;
	padding: 8px 20px !important;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--secondary-color);
}

.btn-primary-custom {
	background-color: var(--secondary-color);
	border: none;
	padding: 10px 25px;
	border-radius: 25px;
	color: white;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary-custom:hover {
	background-color: #c14545;
	transform: translateY(-2px);
}

header #menu-top-menu li{
    position: relative;
}
header #menu-top-menu li ul{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;padding: 0;
    margin: 0;
    background: #fff;
    padding-top: 5px;
    min-width: 250px;
}
header #menu-top-menu li:hover ul{
    display: block;
    
}
header #menu-top-menu li li{
    padding: 8px 2px;
    list-style: none;
    border-bottom: solid 1px #ccc;
}
/* Hero Banner */
.hero-banner {
	background: linear-gradient(135deg, rgba(44, 30, 61, 0.95), rgba(217, 87, 87, 0.85)),
		url('../images/interior-design.webp') center/cover;
	color: white;
	padding: 140px 0;
	text-align: center;
}

.hero-banner h1 {
	font-family: 'Playfair Display', serif;
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-banner p {
	font-size: 20px;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-banner .btn {
	margin: 10px;
}

/* Card Styles */
.card {
	border: none;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: transform 0.3s ease;
}

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

.card img {
	border-bottom: 1px solid var(--border-color);
	height: 220px;
	object-fit: cover;
	width: 100%;
}

.card-body {
	text-align: center;
}

.card-title {
	font-weight: 700;
	color: var(--primary-color);
}

.card-text {
	color: var(--text-color);
	margin-bottom: 1rem;
}

.card-link {
	text-decoration: none;
	display: block;
}

.arrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	border-radius: 50%;
	background-color: transparent;
	transition: background-color 0.4s ease;
}

.arrow-icon:hover {
	background-color: #ffc0cb;
}

.arrow-icon:hover .material-icons {
	color: var(--secondary-color);
}

.material-icons {
	font-family: 'Material Icons', sans-serif !important;
	display: inline-block;
	font-size: 24px;
}

.section-title {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 35px;
	line-height: 42px;
}

.section-subtitle {
	color: var(--text-color);
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.25rem;
	line-height: 1.75rem;
}



/* About Us Section */
.about-section {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 0px;
    margin-top: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}
.about-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

.about-info {
    flex: 1;
    margin-right: 30px;
    color: #d1d1d1;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    color: #D95757;
    margin-bottom: 10px;
}

.specialization {
    font-size: 12px;
    color: #b3b3b3;
    margin-bottom: 15px;
	line-height: 1px;
}

.role {
    font-size: 12px;
    color: #b3b3b3;
    margin-bottom: 15px;
}

.bio {
    font-size: 16px;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.read-more {
    font-size: 18px;
    color: #D95757;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #ff6f61;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    background-color: #ff6f61;
    color: #fff;
}

.profile {
        display: flex;
    }

.profile img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px; /* Square with rounded corners */
}

.menu-close-btn{
	display:none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.menu-close-btn{
		display:block;
	}
    .about-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .about-info {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .profile img {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 28px;
    }

    .specialization, .role {
        font-size: 16px;
    }

    .bio {
        font-size: 14px;
    }

    .read-more {
        font-size: 16px;
        padding: 8px 16px;
    }

}

/* For very small screens (mobile devices) */
@media screen and (max-width: 480px) {
    .about-section {
        padding: 15px;
		text-align: center; /* Center all content */
    }
     
	.profile {
        display: flex;
        justify-content: center; /* Center the image */
        align-items: center;
    }
	
    .profile img {
        width: 180px;
        height: 180px;
        margin: 0 auto; /* Center the profile image */
    }

    h2 {
        font-size: 24px;
    }

    .specialization, .role {
        font-size: 12px;
    }

    .bio {
        font-size: 16px;
    }

    .read-more {
        font-size: 14px;
        padding: 6px 12px;
    }

    
}

/* Why Choose Us Section */
.whyus {
	display: flex;
	margin-top: 10px;
	margin-bottom: 0px;
}

.why-choose-us {
	padding: 40px 0;
	background-color: #f9f9f9;
	border-radius: 20px;
}

.why-choose-us h2 {
	font-size: 35px;
	line-height: 42px;
	font-weight: 700;
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 40px;
}

.marquee-wrapper {
	overflow: hidden;
	position: relative;
}

.marquee-wrapper ul {
	display: flex;
	gap: 24px;
	animation: marquee 20s linear infinite;
	list-style: none;
	padding: 0;
	margin: 0;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.whycard {
	background-color: white;
	padding: 20px;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	flex-shrink: 0;
	width: 193px;
	display: flex;
	margin-bottom: 20px;
	flex-direction: column;
	align-items: center;
}

.whycard img {
	border-radius: 50%;
	margin-bottom: 16px;
	width: 80px;
	height: 80px;
}

.whycard p {
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	margin: 0;
}

/* Blog Section */
.blog-section {
	padding: 50px 0;
	background-color: white;
}

.blog-card {
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

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

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

.blog-meta {
	font-size: 14px;
	color: var(--text-color);
	margin-bottom: 10px;
}

.blog-meta span {
	margin-right: 15px;
}

/* Testimonial Section */
.testimonial-section {
	padding: 50px 0;
	background-color: var(--bg-light);
}

.testimonial-card {
	background: white;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	height: 100%;
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.author-info h5 {
	margin: 0;
	font-weight: 600;
	color: var(--primary-color);
}

.author-info p {
	margin: 0;
	font-size: 14px;
	color: var(--text-color);
}

.stars {
	color: #ffc107;
	margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
	padding: 50px 0;
	background-color: white;
}

.accordion-button {
	font-weight: 600;
	color: var(--primary-color);
	background-color: var(--bg-light);
}

.accordion-button:not(.collapsed) {
	background-color: var(--secondary-color);
	color: white;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: var(--secondary-color);
}

.accordion-item {
	border: none;
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
}

/* Footer */
.footer {
	background-color: var(--primary-color);
	color: white;
	padding: 40px 0 20px;
}

.footer h5 {
	font-weight: 700;
	margin-bottom: 20px;
}

.footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
}

.footer a:hover {
	color: white;
}

.social-icons a {
	display: inline-block;
	margin-right: 15px;
	font-size: 24px;
}

/* Estimate Section */
.estimate-section {
	background-color: var(--bg-light);
}

.estimate-card {
	background-color: white;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estimate-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.estimate-icon svg {
	margin-bottom: 20px;
}

.estimate-title {
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	font-size: 22px;
}

.estimate-description {
	font-size: 15px;
	color: var(--text-color);
	margin-bottom: 25px;
	min-height: 50px;
	/* Ensure consistent height */
}

.btn-calculate {
	background-color: var(--secondary-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-calculate:hover {
	background-color: #c14545;
	transform: translateY(-2px);
}

.btn-calculate .material-icons {
	font-size: 18px;
	margin-left: 5px;
}

/* Inspiration Gallery Section */
.inspiration-section {
	background-color: white;
}

.inspiration-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspiration-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.inspiration-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.inspiration-card.large {
	height: 400px;
	/* Adjust as needed */
}

.inspiration-card:not(.large) {
	height: 190px;
	/* Adjust as needed */
}

.inspiration-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	color: white;
	font-weight: 700;
	font-size: 18px;
	text-align: left;
}

.inspiration-overlay .inspiration-label {
	position: relative;
	z-index: 1;
}

.view-all-link {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	display: flex;
	align-items: center;
	transition: color 0.3s ease;
}

.view-all-link:hover {
	color: #c14545;
}

.view-all-link .material-icons {
	font-size: 22px;
	margin-left: 8px;
}

.text-highlight {
	color: var(--secondary-color);
}

/* Added styles for estimate section */
.estimate-section {
	background: linear-gradient(135deg, #f9f7fb 0%, #ffffff 100%);
	padding: 80px 0;
}

.text-highlight {
	color: var(--secondary-color);
	position: relative;
}

.estimate-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	height: 100%;
	border: 2px solid transparent;
}

.estimate-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 40px rgba(217, 87, 87, 0.15);
	border-color: var(--secondary-color);
}

.estimate-icon {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
}

.estimate-icon svg {
	transition: transform 0.3s ease;
}

.estimate-card:hover .estimate-icon svg {
	transform: scale(1.1);
}

.estimate-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.estimate-description {
	color: var(--text-color);
	font-size: 15px;
	margin-bottom: 25px;
	min-height: 45px;
}

.btn-calculate {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #e67373 100%);
	color: white;
	border: none;
	padding: 14px 35px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 15px rgba(217, 87, 87, 0.3);
}

.btn-calculate:hover {
	background: linear-gradient(135deg, #c14545 0%, var(--secondary-color) 100%);
	transform: translateX(5px);
	box-shadow: 0 6px 20px rgba(217, 87, 87, 0.4);
}

.btn-calculate .material-icons {
	font-size: 18px;
	transition: transform 0.3s ease;
}

.btn-calculate:hover .material-icons {
	transform: translateX(3px);
}

/* Added styles for inspiration gallery */
.inspiration-section {
	background-color: white;
	padding: 80px 0;
}

.view-all-link {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
}

.view-all-link:hover {
	gap: 10px;
	color: #c14545;
}

.inspiration-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	height: 250px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
}

.inspiration-card.large {
	height: 100%;
	min-height: 515px;
}

.inspiration-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.col-md-7 .inspiration-card img,
.col-md-7 .inspiration-card {
	height: 580px;
}

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

.inspiration-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	padding: 30px 20px 20px;
	transition: all 0.3s ease;
}

.inspiration-card:hover .inspiration-overlay {
	background: linear-gradient(to top, rgba(44, 30, 61, 0.9) 0%, transparent 100%);
}

.inspiration-label {
	color: white;
	font-size: 18px;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Added modal styles */
.modal-content {
	border-radius: 20px;
	border: none;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
	padding: 25px 30px 15px;
}

.modal-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
}

.form-label {
	color: var(--primary-color);
	margin-bottom: 8px;
}

.form-control,
.form-select {
	border: 2px solid #e8e8e8;
	border-radius: 10px;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(217, 87, 87, 0.15);
}

.form-check-input:checked {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

/* Responsive styles for new sections */
@media (max-width: 767px) {
	.hero-banner h1 {
		font-size: 36px;
	}

	.hero-banner p {
		font-size: 16px;
	}

	.section-title {
		font-size: 28px;
		line-height: 34px;
	}

	.section-subtitle {
		font-size: 1rem;
	}

	.whyus {
		margin-top: 40px;
	}

	.card img {
		height: auto;
	}

	.arrow-icon {
		display: none;
	}

	.estimate-section .col-md-6 {
		margin-bottom: 20px;
	}

	.inspiration-card.large,
	.inspiration-card:not(.large) {
		height: 250px;
	}

	.inspiration-overlay {
		padding: 10px;
		font-size: 16px;
	}

	.view-all-link {
		font-size: 16px;
		margin-top: 15px;
	}

	/* Responsive styles for new sections */
	.estimate-section {
		padding: 40px 0;
	}

	.estimate-card {
		padding: 30px 20px;
		margin-bottom: 20px;
	}

	.estimate-title {
		font-size: 20px;
	}

	.btn-calculate {
		padding: 12px 25px;
		font-size: 14px;
	}

	.inspiration-section {
		padding: 40px 0;
	}

	.inspiration-card {
		height: 200px;
	}

	.inspiration-card.large {
		min-height: 300px;
	}

	.view-all-link {
		font-size: 14px;
	}

	.modal-title {
		font-size: 22px;
	}
}

@media (min-width: 992px) {
	.inspiration-section .col-md-6:nth-child(2) .row {
		height: 100%;
		/* Ensure right column divs take full height */
	}

	.inspiration-section .col-md-6:nth-child(2) .row>div {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.inspiration-card.large {
		height: 100%;
		/* Make large card fill its container */
	}
}






/* Page Hero */
.page-hero {
	background: linear-gradient(135deg, rgba(44, 30, 61, 0.95), rgba(217, 87, 87, 0.85)),
		url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600') center/cover;
	color: white;
	padding: 100px 0 80px;
	text-align: center;
}

.page-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
}

.page-hero p {
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}

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

.section-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	color: var(--primary-color);
	font-size: 38px;
	margin-bottom: 20px;
}

.section-subtitle {
	color: var(--text-color);
	font-size: 18px;
	line-height: 1.8;
	max-width: 800px;
}

/* Story Section */
.story-section {
	background-color: white;
}

.story-image {
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.story-content {
	padding: 40px;
}

.story-content h3 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 28px;
}

.story-content p {
	line-height: 1.8;
	margin-bottom: 15px;
}

.highlight-text {
	color: var(--secondary-color);
	font-weight: 600;
}

/* Mission Vision Cards */
.mission-vision-section {
	background-color: var(--bg-light);
}

.mv-card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid transparent;
}

.mv-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(217, 87, 87, 0.15);
	border-color: var(--secondary-color);
}

.mv-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--secondary-color), #e67373);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.mv-icon .material-icons {
	font-size: 40px;
	color: white;
}

.mv-card h3 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 24px;
}

.mv-card p {
	line-height: 1.8;
	color: var(--text-color);
}

/* Team Section */
.team-section {
	background-color: white;
}

.team-card {
	text-align: center;
	transition: transform 0.3s ease;
}

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

.team-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
	border: 5px solid var(--bg-light);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-name {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 22px;
	margin-bottom: 5px;
}

.team-role {
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 10px;
}

.team-bio {
	color: var(--text-color);
	font-size: 14px;
	line-height: 1.6;
}

/* Values Section */
.values-section {
	background-color: var(--bg-light);
}

.value-item {
	background: white;
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 20px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: all 0.3s ease;
}

.value-item:hover {
	transform: translateX(10px);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.value-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--secondary-color), #e67373);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 20px;
	flex-shrink: 0;
}

.value-content h4 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 20px;
}

.value-content p {
	color: var(--text-color);
	margin: 0;
	line-height: 1.6;
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, var(--primary-color), rgba(217, 87, 87, 0.9));
	color: white;
	padding: 60px 0;
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	font-family: 'Playfair Display', serif;
}

.stat-label {
	font-size: 16px;
	opacity: 0.9;
}

/* CTA Section */
.cta-section {
	background-color: white;
	text-align: center;
	padding: 80px 0;
}

.cta-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 18px;
	color: var(--text-color);
	margin-bottom: 30px;
}





/* Page Hero */
.contact-page-hero {
	background: linear-gradient(135deg, rgba(44, 30, 61, 0.95), rgba(217, 87, 87, 0.85)),
		url('../images/homeBanner.jpg') center/cover;
	color: white;
	padding: 100px 0 80px;
	text-align: center;
}

.contact-page-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
}

.contact-page-hero p {
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}

/* Section Styles */
.contact-section-padding {
	padding: 80px 0;
}

.contact-section-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	color: var(--primary-color);
	font-size: 38px;
	margin-bottom: 20px;
}

.contact-section-subtitle {
	color: var(--text-color);
	font-size: 18px;
	line-height: 1.8;
	max-width: 800px;
}

/* Contact Info Cards */
.contact-info-section {
	background-color: white;
	padding: 80px 0 40px;
}

.contact-info-card {
	background: var(--bg-light);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.contact-info-card:hover {
	transform: translateY(-10px);
	background: white;
	box-shadow: 0 10px 30px rgba(217, 87, 87, 0.15);
	border-color: var(--secondary-color);
}

.contact-info-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--secondary-color), #e67373);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.contact-info-icon .material-icons {
	font-size: 40px;
	color: white;
}

.contact-info-card h4 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 22px;
}

.contact-info-card p {
	color: var(--text-color);
	margin-bottom: 10px;
	line-height: 1.6;
}

.contact-info-card a {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
}

.contact-info-card a:hover {
	text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
	background-color: var(--bg-light);
}

.contact-form-container {
	background: white;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-label {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 8px;
}

.contact-form-control,
.contact-form-select {
	border: 2px solid #e8e8e8;
	border-radius: 10px;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.contact-form-control:focus,
.contact-form-select:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(217, 87, 87, 0.15);
}

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

.contact-btn-submit {
	background: linear-gradient(135deg, var(--secondary-color), #e67373);
	color: white;
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(217, 87, 87, 0.3);
}

.contact-btn-submit:hover {
	background: linear-gradient(135deg, #c14545, var(--secondary-color));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(217, 87, 87, 0.4);
}

/* Map Section */
.contact-map-section {
	background-color: white;
	padding: 0;
}

.contact-map-container {
	width: 100%;
	height: 450px;
	background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	overflow: hidden;
}

.contact-map-placeholder {
	text-align: center;
	color: var(--text-color);
}

.contact-map-placeholder .material-icons {
	font-size: 80px;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

/* Office Hours */
.contact-office-hours-section {
	background-color: var(--bg-light);
}

.contact-hours-card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-hours-card h3 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 28px;
}

.contact-hours-item {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
}

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

.contact-hours-day {
	font-weight: 600;
	color: var(--primary-color);
}

.contact-hours-time {
	color: var(--text-color);
}

.contact-hours-time.closed {
	color: var(--secondary-color);
}

/* Success Message */
.contact-success-message {
	background: linear-gradient(135deg, #4caf50, #66bb6a);
	color: white;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	display: none;
}

.contact-success-message .material-icons {
	font-size: 48px;
	margin-bottom: 10px;
}


/* Project Hero */
.interior-project-hero {
	position: relative;
	height: 500px;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1600') center/cover;
}

.interior-project-hero-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 60px 0 40px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
}

.interior-project-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
}

.interior-project-meta {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.interior-project-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Project Overview */
.interior-project-overview {
	background: white;
	padding: 60px 0;
}

.interior-section-title {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.interior-project-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.interior-stat-card {
	text-align: center;
	padding: 15px;
	background: var(--bg-light);
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.interior-stat-card:hover {
	transform: translateY(-5px);
}

.interior-stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 10px;
}

.interior-stat-label {
	font-size: 14px;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Image Gallery */
.interior-gallery-section {
	padding: 60px 0;
	background: var(--bg-light);
}

.interior-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.interior-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	cursor: pointer;
	height: 300px;
}

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

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

.interior-gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(44, 30, 61, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.interior-gallery-item:hover .interior-gallery-overlay {
	opacity: 1;
}

.interior-gallery-overlay .material-icons {
	color: white;
	font-size: 48px;
}

/* Features Section */
.interior-features-section {
	padding: 60px 0;
	background: white;
}

.interior-feature-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.interior-feature-item {
	display: flex;
	gap: 15px;
}

.interior-feature-icon {
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.interior-feature-icon .material-icons {
	color: white;
	font-size: 24px;
}

.interior-feature-content h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.interior-feature-content p {
	font-size: 14px;
	color: var(--text-color);
	margin: 0;
}

/* Materials Section */
.interior-materials-section {
	padding: 60px 0;
	background: var(--bg-light);
}

.interior-material-card {
	background: white;
	padding: 30px;
	border-radius: 16px;
	text-align: center;
	transition: transform 0.3s ease;
}

.interior-material-card:hover {
	transform: translateY(-5px);
}

.interior-material-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 20px;
}

.interior-material-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

/* Before After Section */
.interior-before-after-section {
	padding: 60px 0;
	background: white;
}

.interior-comparison-container {
	position: relative;
	max-width: 800px;
	margin: 40px auto;
	border-radius: 16px;
	overflow: hidden;
}

.interior-comparison-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}

.interior-comparison-images img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.interior-comparison-label {
	position: absolute;
	top: 20px;
	padding: 8px 20px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	font-weight: 600;
	border-radius: 20px;
	font-size: 14px;
}

.interior-comparison-label.before {
	left: 20px;
}

.interior-comparison-label.after {
	right: 20px;
}

/* Related Projects */
.interior-related-projects {
	padding: 60px 0;
	background: var(--bg-light);
}

.interior-project-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.interior-project-card:hover {
	transform: translateY(-5px);
}

.interior-project-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.interior-project-card-body {
	padding: 25px;
}

.interior-project-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.interior-project-card p {
	color: var(--text-color);
	margin-bottom: 15px;
}

/* CTA Section */
.interior-cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	text-align: center;
}

.interior-cta-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	margin-bottom: 20px;
}

.interior-cta-section p {
	font-size: 18px;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.interior-btn-light-custom {
	background: white;
	color: var(--primary-color);
	border: none;
	padding: 15px 40px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.interior-btn-light-custom:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}



/* Blog Hero */
.blog-detail-hero {
	position: relative;
	height: 500px;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('https://anirudhmaggo.in/wp-content/grand-media/image/thumb/7_4.webp?w=1600') center/cover;
	display: flex;
	align-items: center;
	color: white;
}

.blog-detail-hero-content {
	max-width: 800px;
}

.blog-detail-category {
	display: inline-block;
	background: var(--secondary-color);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
}

.blog-detail-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.blog-detail-meta {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	font-size: 15px;
}

.blog-detail-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Blog Content */
.blog-detail-content {
	background: white;
	padding: 60px 0;
}

.blog-detail-article {
	max-width: 800px;
	margin: 0 auto;
}

.blog-detail-article p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 25px;
	color: var(--text-color);
}

.blog-detail-article h2 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	margin-top: 40px;
	margin-bottom: 20px;
}

.blog-detail-article h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	margin-top: 30px;
	margin-bottom: 15px;
}

.blog-detail-article ul,
.blog-detail-article ol {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 25px;
	padding-left: 30px;
}

.blog-detail-article li {
	margin-bottom: 10px;
}

.blog-detail-article img {
	width: 100%;
	border-radius: 16px;
	margin: 30px 0;
}

.blog-detail-article blockquote {
	border-left: 4px solid var(--secondary-color);
	padding-left: 25px;
	margin: 30px 0;
	font-style: italic;
	font-size: 20px;
	color: var(--primary-color);
}

/* Author Box */
.blog-author-box {
	background: var(--bg-light);
	padding: 30px;
	border-radius: 16px;
	margin: 50px 0;
	display: flex;
	gap: 25px;
	align-items: center;
}

.blog-author-box img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 !important;
}

.blog-author-info h4 {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.blog-author-info p {
	font-size: 16px;
	margin-bottom: 15px;
}

.blog-author-social a {
	display: inline-block;
	margin-right: 15px;
	color: var(--secondary-color);
}

/* Share Section */
.blog-share-section {
	text-align: center;
	padding: 40px 0;
	border-top: 2px solid var(--border-color);
	border-bottom: 2px solid var(--border-color);
	margin: 40px 0;
}

.blog-share-section h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.blog-share-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.blog-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.3s ease;
}

.blog-share-btn:hover {
	transform: translateY(-3px);
}

.blog-share-btn.facebook {
	background: #1877f2;
	color: white;
}

.blog-share-btn.twitter {
	background: #1da1f2;
	color: white;
}

.blog-share-btn.linkedin {
	background: #0077b5;
	color: white;
}

.blog-share-btn.pinterest {
	background: #e60023;
	color: white;
}

/* Related Posts */
.blog-related-posts {
	padding: 60px 0;
	background: var(--bg-light);
}

.blog-section-title {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 40px;
}

.blog-post-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease;
	height: 100%;
}

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

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

.blog-post-card-body {
	padding: 25px;
}

.blog-post-card-category {
	color: var(--secondary-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.blog-post-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.blog-post-card p {
	font-size: 15px;
	color: var(--text-color);
	margin-bottom: 15px;
}

.blog-post-card-meta {
	font-size: 14px;
	color: var(--text-color);
}

nav.navbar li a {
	color: var(--primary-color);
	font-weight: 500;
	padding: 8px 20px !important;
	transition: color 0.3s ease;
	text-decoration: none;
}

nav.navbar li a:hover {
	color: var(--secondary-color);
}

    .inspiration-section .row {
	display: flex;    margin-bottom: 25px;
	flex-wrap: wrap;
}

.inspiration-row-1 > div:nth-child(1) {
	flex: 0 0 45%;
	max-width: 45%;
}

.inspiration-row-1 > div:nth-child(2),
.inspiration-row-1 > div:nth-child(3) {
	flex: 0 0 27.5%;
	max-width: 27.5%;
}

.inspiration-row-2 > div {
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
}

.inspiration-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.inspiration-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

.inspiration-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
}
.inspiration-label {
	font-size: 1rem;
	font-weight: 600;
}
.inspiration-card:not(.large)
 {
    height: 100%;
}
@media only screen and (max-width:767px){
    #offerings .col-6 {
    flex: 0 0 auto;
}
 #offerings .card img {
        height: auto;
    }
#offerings .card-title {
            font-weight: 600;
            color: #2c1e3d;
            margin-bottom: 0.5rem;
            font-size: 16px;
        }

#offerings .card-text {
            color: #5f5a68;
            margin-bottom: 0;
            font-size: 15px;
            line-height: 1.5rem;
        }
    .inspiration-section  .d-flex.justify-content-between{
        display: block!important;
    }
    .hero-banner{
        padding: 80px 0;
    }
    .top-bar .d-flex div:nth-child(2) a:last-child{
        display: none;
    }
  .about-section .container {
    flex-direction: column-reverse; /* reverses the order of child divs */
    width: 100%; /* ensures full width */
    align-items: flex-start; /* optional: align items to start if needed */
  }

  .about-section .container > div {
    width: 100%; /* make each child div full width */
}
.about-section .profile{
    margin-bottom: 30px;
}
.about-section {
        padding: 30px 15px;
    }
    .inspiration-row-1 > div:nth-child(1),.inspiration-row-1 > div:nth-child(2), .inspiration-row-1 > div:nth-child(3),.inspiration-row-2 > div {
    flex: 0 0 100%;
    max-width: 100%;
}
.inspiration-section .row{
    display: block!important;
}
    .inspiration-card.large, .inspiration-card:not(.large) {
        height: auto;min-height: auto;
    }
    .cta-section {
    padding: 30px 0;
}
.cta-section  a{
    margin: 10px 0;
}
}

/* Overlay for mobile menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9;
  display: none;
}

/* Animate side menu */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 95%;
    height: 100%;
    background: #fff;
    z-index: 10;
    padding: 2rem;
    overflow-y: auto;
    transition: right 0.4s ease-in-out;
            min-height: 1000px;
        overflow-y: hidden;
  }

  .navbar.nav-active .navbar-collapse {
    right: 0;
  }
  .navbar-collapse .btn-primary-custom{
      display: none;
  }
.section-padding {
    padding: 35px 0;
}
.story-content {
    padding: 10px 20px 40px 20px;
}
  /* Close button */
  .menu-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #000;
    z-index: 11;
  }
  .contact-form-container {
    padding: 40px 20px;
  }

  .menu-close-btn:hover {
    color: #007bff;
  }

  /* Submenu toggle (+ / -) */
  .submenu-toggle {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    z-index: 11;
  }

  .submenu-toggle.active {
    color: #007bff;
  }

  /* Submenu styling */
  .sub-menu {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
    border-left: 2px solid #eee;
  }
.submenu-toggle{
    display: none;
}
  .navbar-nav li {
    position: relative;
    margin-bottom: 10px;
  }

  .navbar-nav li a {
    display: block;
    padding: 10px 0;
  }
  header #menu-top-menu li {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: solid 1px #e4dcdc;
}
header #menu-top-menu li ul{
    display: block!important;
    position: static;border-left: 0;
}
.navbar-collapse{
            padding: 2rem 0;
}
header #menu-top-menu li li {
    padding: 3px 16px;
    list-style: none;
    border-bottom: solid 1px #ccc;
    margin: 0;
}
header #menu-top-menu li li:last-child{
    border-bottom: 0;
}
    .navbar-nav li {
        position: relative;
        margin-bottom: 0;
    }
    nav.navbar li a{
        padding: 10px 20px !important;
    }

}

