:root {
 --primary-color: #1a472a;
 --secondary-color: #d4af37;
 --dark-color: #0d2818;
 --light-color: #f8f9fa;
 --text-color: #333;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Poppins', sans-serif;
	color: var(--text-color);
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
}
/* Navbar */
        .navbar {
	background: rgba(26, 71, 42, 0.95) !important;
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}
.navbar.scrolled {
	background: rgba(26, 71, 42, 1) !important;
	padding: 0.5rem 0;
}
.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color) !important;
	letter-spacing: 1px;
}

.navbar-brand img {
    width: 300px;
}

.navbar-nav .nav-link {
	color: #fff !important;
	font-weight: 500;
	margin: 0 0.5rem;
	transition: color 0.3s ease;
	position: relative;
}
.navbar-nav .nav-link:hover {
	color: var(--secondary-color) !important;
}
/*
 .navbar-nav .nav-link::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 2px;
 background: var(--secondary-color);
 transition: width 0.3s ease;
}
 .navbar-nav .nav-link:hover::after {
 width: 80%;
}

*/

/* Open dropdown on hover (desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }

  .navbar .dropdown.show .dropdown-toggle::after,
  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
/* Hero Section */
 .hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(0 0 0 / 60%), rgb(1 1 1 / 60%)), url(../images/bannerhome.jpg) center / cover no-repeat;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 46%);
}
.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 2rem;
}
.hero-content h1 {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease;
}
.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1.2s ease;
}
.hero-btn {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	animation: fadeInUp 1.4s ease;
}
.btn-primary-custom {
	background: var(--secondary-color);
	border: none;
	color: var(--dark-color);
}
.btn-primary-custom:hover {
	background: #c19d26;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.btn-outline-custom {
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color);
	background: transparent;
}
.btn-outline-custom:hover {
	background: var(--secondary-color);
	color: var(--dark-color);
}
/* Overview Section */
        .overview-section {
	padding: 5rem 0;
	background: var(--light-color);
}
.section-title {
	text-align: center;
	margin-bottom: 3rem;
}
.section-title h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}
.section-title p {
	color: #666;
	font-size: 1.1rem;
}
.overview-card {
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
	height: 100%;
}
.overview-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.overview-card i {
	font-size: 3rem;
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
}
.overview-card h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}
/* About Us Section */
.about-us-section {
	padding: 5rem 0;
	background: #fff;
}
.about-image {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}
.about-image:hover img {
	transform: scale(1.05);
}
.about-image-overlay {
	position: absolute;
	bottom: 0;
	right: 0;
	background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
	padding: 2rem;
	border-radius: 15px 0 0 0;
}
.experience-badge {
	text-align: center;
	color: #fff;
}
.experience-badge h3 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 0.5rem;
}
.experience-badge p {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
}
.about-content {
	padding-left: 2rem;
}

.about-content .section-title{
	margin-bottom:10px;
}

.section-subtitle {
	display: inline-block;
	color: var(--secondary-color);
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}
.section-description {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}
.about-text {
	color: #555;
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}
.about-features {
	margin-top: 2rem;
}
.about-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--light-color);
	border-radius: 10px;
	transition: all 0.3s ease;
}
.about-feature-item:hover {
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}
.about-feature-item i {
	font-size: 1.5rem;
	color: var(--secondary-color);
	margin-top: 0.25rem;
	flex-shrink: 0;
}
.about-feature-item h5 {
	color: var(--primary-color);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.about-feature-item p {
	color: #666;
	font-size: 0.95rem;
	margin: 0;
}
.about-cta {
	margin-top: 2rem;
}
@media (max-width: 991px) {
	.about-content {
		padding-left: 0;
		margin-top: 3rem;
	}
	.about-image-overlay {
		position: static;
		background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
		padding: 2rem;
		border-radius: 15px;
		margin-top: 1rem;
	}
}
/* Property Cards Section */
        .properties-section {
	padding: 5rem 0;
	background: #fff;
}
.property-card {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.property-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.property-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}
.property-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.property-card:hover .property-image img {
	transform: scale(1.1);
}
.property-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--secondary-color);
	color: var(--dark-color);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
}
.property-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.property-title {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}
.property-location {
	color: #666;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}
.property-location i {
	color: var(--secondary-color);
	margin-right: 0.5rem;
}
.property-features {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding: 1rem 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.property-feature {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.property-feature i {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}
.property-feature span {
	display: block;
	font-size: 0.9rem;
	color: #666;
}
.property-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.property-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
}
.property-btn:hover {
	background: var(--secondary-color);
	color: var(--dark-color);
	transform: translateY(-2px);
}
/* Blog Section */
        .blog-section {
	padding: 5rem 0;
	background: var(--light-color);
}
.blog-card {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	background: #fff;
	height: 100%;
}
.blog-card:hover {
	transform: translateY(-5px);
}
.blog-image {
	height: 200px;
	overflow: hidden;
}
.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
	transform: scale(1.1);
}
.blog-content {
	padding: 1.5rem;
}
.blog-date {
	color: var(--secondary-color);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}
.blog-title {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}
.blog-excerpt {
	color: #666;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}
.blog-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}
.blog-link:hover {
	color: var(--secondary-color);
}
/* Features Section */
        .features-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
	color: #fff;
}
.features-section .section-title h2,  .features-section .section-title p {
	color: #fff;
}
.feature-item {
	text-align: center;
	padding: 2rem;
}
.feature-item i {
	font-size: 3.5rem;
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
}
.feature-item h4 {
	margin-bottom: 1rem;
}
/* Testimonials Section */
        .testimonials-section {
	padding: 5rem 0;
	background: #fff;
}
.testimonial-card {
	background: var(--light-color);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	height: 100%;
	position: relative;
}
 .testimonial-card::before {
 content: '"';
 font-size: 5rem;
 color: var(--secondary-color);
 position: absolute;
 top: -10px;
 left: 20px;
 font-family: 'Playfair Display', serif;
}
.testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #555;
	font-size: 1.05rem;
}
.testimonial-author {
	font-weight: 600;
	color: var(--primary-color);
}
.testimonial-rating {
	color: var(--secondary-color);
	margin-bottom: 1rem;
}
/* CTA Section */
        .cta-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--secondary-color), #c19d26);
	text-align: center;
	color: var(--dark-color);
}
.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}
/* Footer */
.footer {
    background: #184328;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer img{
	width:300px;
}

.footer h5 {
	color: var(--secondary-color);
	margin-bottom: 10px;
}
.footer a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer ul li {
    padding: 0 0 10px 0;
}
.footer a:hover {
	color: var(--secondary-color);
}
.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.footer-social a:hover {
	background: var(--secondary-color);
	color: var(--dark-color);
	transform: translateY(-3px);
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 2rem;
	padding-top: 1rem;
	text-align: center;
}
        
        /* Animations */
        @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
        
        /* Responsive */
        @media (max-width: 768px) {
 .hero-content h1 {
 font-size: 2.5rem;
}
 .hero-content p {
 font-size: 1.1rem;
}
 .section-title h2 {
 font-size: 2rem;
}
}









  /* Contact Hero */
        .contact-hero {
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.9), rgba(13, 40, 24, 0.95)),
                        url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
            padding: 8rem 0 4rem;
            color: #fff;
            text-align: center;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: var(--light-color);
        }
        
        .contact-card {
            background: #fff;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        
        .contact-card h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 0.5rem;
        }
        
        /* Contact Form */
        .contact-form-section {
            padding: 5rem 0;
            background: #fff;
        }
        
        .form-card {
            background: var(--light-color);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .form-title {
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            margin-bottom: 1.5rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .btn-submit {
            background: var(--primary-color);
            color: #fff;
            padding: 0.75rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            background: var(--secondary-color);
            color: var(--dark-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            height: 400px;
        }
        
        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
         
        
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2rem;
            }
            
            .form-card {
                padding: 2rem;
            }
        }





