/* Modern Luxury Estates CSS with CSS3 Transformations */

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #34495e;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Modern Header with Transform */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.navbar-brand h4{
    font-size: 35px;
    font-weight: 800;
}


.logo img {
    width: 66%;
}
.navbar-nav .nav-link {
    position: relative;
    transition: var(--transition);
    margin: 0 15px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

/* Hero Section with 3D Transform */
.hero-section {
    min-height: 100vh;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background: url('../img/banner.jpg') center/cover;
    min-height: 100vh;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transform: skew(-10deg);
    transition: var(--transition);
}

.hero-badge:hover {
    transform: skew(-10deg) scale(1.05);
}

.hero-title {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

.highlight {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.explore-btn, .video-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.explore-btn {
    background: #e74c3c !important;
    border: none;
    color: var(--white);
}

/* Call Now button - same red background */
.cta-buttons .btn-primary {
    background: #e74c3c !important;
    border: none;
    color: var(--white);
}

.explore-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.video-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.video-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px) rotate(2deg);
}

/* Hero Image with 3D Transform */
.hero-image-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
}

.hero-image {
	width: 85%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	margin: 0 70px;
}

.floating-card {
    position: absolute;
    top: 20%;
    right: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: rotate(5deg);
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Features Section with Skew */
.features-section {
    padding: 5rem 0;
    background: var(--light-gray);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition);
    z-index: 1;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-card.active {
    background: var(--gradient);
    color: var(--white);
}

.feature-card.active .feature-icon {
    background: var(--white);
    color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}


.feature-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

/* First and last feature cards - change text color to white on hover */
.features-section .col-lg-4:first-child .feature-card:hover h3,
.features-section .col-lg-4:first-child .feature-card:hover p,
.features-section .col-lg-4:last-child .feature-card:hover h3,
.features-section .col-lg-4:last-child .feature-card:hover p {
    color: var(--white) !important;
}

/* First and last feature cards - change icon background to white and icon to gradient on hover */
.features-section .col-lg-4:first-child .feature-card:hover .feature-icon,
.features-section .col-lg-4:last-child .feature-card:hover .feature-icon {
    background: var(--white) !important;
}

.features-section .col-lg-4:first-child .feature-card:hover .feature-icon i,
.features-section .col-lg-4:last-child .feature-card:hover .feature-icon i {
    background: var(--gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.feature-link {
	background-color: var(--secondary);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	color: #fff;
	padding: 10px 13px;
	position: relative;
	z-index: 2;
	border-radius: 5px;
    margin-top: 10px;
}

.feature-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Properties Section */
.properties-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.property-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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


.property-content {
    padding: 2rem;
}

.property-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.property-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.property-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.property-price .location {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.property-feature {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--gradient);
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* About Hero */
.about-hero {
    padding: 5rem 0;
    background: var(--light-gray);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content .lead {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	border-radius: 10px;

	transition: var(--transition);
	flex: 1;
}

.stat-item:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(15deg);
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transform: rotate(5deg);
    animation: pulse 2s infinite;
}

.experience-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--white);
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    
    transition: var(--transition);
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.team-info p {
    color: var(--secondary);
    font-weight: 500;
    font-size: 20px;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px) rotate(10deg);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: var(--gradient);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gradient);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.author-info p {
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
    font-style: normal;
}

/* About Image Container */
.about-image-container {
    position: relative;
    padding: 2rem;
}

/* Services Section */
.services-hero {
    padding: 5rem 0;
    background: var(--light-gray);
}

.services-image-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.services-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
}

.services-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
}

.services-image-wrapper:hover .services-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Main Services Section */
.main-services {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-card.featured {
    background: var(--gradient);
    color: var(--white);
}

.service-card.featured .service-icon {
    background: var(--white);
    color: var(--primary);
}

.service-card.featured .service-link {
    color: var(--white);
}

/* First and last service cards - change text color to white when hovered */
.main-services .col-lg-4:first-child .service-card:hover h3,
.main-services .col-lg-4:first-child .service-card:hover p,
.main-services .col-lg-4:last-child .service-card:hover h3,
.main-services .col-lg-4:last-child .service-card:hover p {
    color: var(--white) !important;
}

.main-services .col-lg-4:first-child .service-card:hover .service-link,
.main-services .col-lg-4:last-child .service-card:hover .service-link {
    color: var(--white) !important;
}

/* First and last service cards - change service features list and icons to white when hovered */
.main-services .col-lg-4:first-child .service-card:hover .service-features li,
.main-services .col-lg-4:last-child .service-card:hover .service-features li {
    color: var(--white) !important;
}

.main-services .col-lg-4:first-child .service-card:hover .service-features li i,
.main-services .col-lg-4:last-child .service-card:hover .service-features li i {
    color: var(--white) !important;
}

/* First and last service cards - change icon background to white and icon to gradient when hovered */
.main-services .col-lg-4:first-child .service-card:hover .service-icon,
.main-services .col-lg-4:last-child .service-card:hover .service-icon {
    background: var(--white) !important;
}

.main-services .col-lg-4:first-child .service-card:hover .service-icon i,
.main-services .col-lg-4:last-child .service-card:hover .service-icon i {
    background: var(--gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    color: white !important;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    color: white !important;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--secondary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Additional Services Section */
.additional-services {
    padding: 5rem 0;
    background: var(--light-gray);
}

.specialized-service {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.specialized-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.specialized-service:hover::before {
    transform: scaleX(1);
}

.specialized-service:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.specialized-service:hover .service-icon-large {
    transform: rotate(360deg) scale(1.1);
}

.specialized-service h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.specialized-service p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}
.interior-video {
	margin-bottom: 50px;
}
.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.interior-video-section {
    padding: 50px;
    text-align: center;
    background-color: #f8f8f8;
}

.interior-video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color:  #4b6af3;
}

.interior-video-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Responsive video container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    max-width: 100%;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Adjust text on smaller screens */
@media (max-width: 768px) {
    .interior-video-section h2 {
        font-size: 2rem;
    }
    .interior-video-section p {
        font-size: 1rem;
    }
.logo {
	margin-bottom: 10px;
	width: 82%;
 }
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--secondary);
    transition: var(--transition);
}

.benefit-item:hover i {
    color: var(--white);
}

.benefit-item span {
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .step-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transform: skew(-10deg);
}

/* Services Content */
.services-content h2 {
    font-size: 35px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.services-content .lead {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.services-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Services Image Container */
.services-image-container {
    position: relative;
    padding: 2rem;
}

/* Contact Section */
.contact-hero {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-image-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(15deg);
    transition: var(--transition);
}

.contact-image-wrapper:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
}

.contact-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
}

.contact-image-wrapper:hover .contact-overlay {
    opacity: 1;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-content .lead {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--dark-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    transform: translateY(-2px);
}

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

.contact-info-sidebar {
    position: sticky;
    top: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.info-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: rotate(360deg) scale(1.1);
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-item {
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--gradient);
    color: var(--white);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--dark-gray);
    line-height: 1.6;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Footer */
.modern-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand img {
    margin-bottom: 1rem;
    transform: scale(1);
    transition: var(--transition);
}

.footer-brand img:hover {
    transform: scale(1.1) rotate(2deg);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.modern-footer .social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.modern-footer .social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px) rotate(10deg);
}

.modern-footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.modern-footer ul li {
    margin-bottom: 0.5rem;
}

.modern-footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.modern-footer ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px) rotate(2deg);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(5deg);
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-card {
        position: relative;
        right: 0;
        margin-top: 2rem;
    }
    
    .hero-image-wrapper,
    .about-image-wrapper,
    .services-image-wrapper,
    .contact-image-wrapper {
        transform: none;
    }
    
    .hero-image-wrapper:hover,
    .about-image-wrapper:hover,
    .services-image-wrapper:hover,
    .contact-image-wrapper:hover {
        transform: scale(1.05);
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        flex: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .service-card,
    .value-card,
    .specialized-service {
        margin-bottom: 1.5rem;
    }
    
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .property-card {
        margin-bottom: 1.5rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        margin-bottom: 0.5rem;
    }
    
    .service-benefits {
        gap: 0.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .modern-footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-brand,
    .modern-footer .col-lg-2,
    .modern-footer .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 25px;
	    margin-top: 40px;

    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content h2,
    .services-content h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .service-card,
    .value-card,
    .specialized-service {
        padding: 2rem 1.5rem;
    }
    
    .team-card .team-info {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .property-content {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .experience-badge {
        padding: 1rem;
        bottom: -10px;
        right: -10px;
    }
    
    .experience-badge span {
        font-size: 1.2rem;
    }
    
    .section-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .floating-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .value-icon,
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .feature-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .property-features {
        gap: 0.5rem;
    }
    
    .property-feature {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    .service-features li i {
        font-size: 0.7rem;
    }
    
    .form-control {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .modern-footer h5 {
        font-size: 1.1rem;
    }
    
    .modern-footer ul li a {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Additional Enhancements */
.feature-card:hover .feature-icon,
.service-card:hover .service-icon,
.value-card:hover .value-icon,
.specialized-service:hover .service-icon-large,
.process-step:hover .step-icon,
.info-card:hover .info-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(360deg) scale(1.1);
    }
    40% {
        transform: translateY(-10px) rotate(360deg) scale(1.1);
    }
    60% {
        transform: translateY(-5px) rotate(360deg) scale(1.1);
    }
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Enhanced hover effects for better interactivity */
.feature-card:hover,
.service-card:hover,
.value-card:hover,
.specialized-service:hover,
.team-card:hover,
.testimonial-card:hover,
.property-card:hover,
.info-card:hover {
    cursor: pointer;
}

/* Gradient text effect for headings */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced shadows for depth */
.depth-shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.05);
}

.depth-shadow:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 15px 30px rgba(0,0,0,0.1);
}

/* Project Slider Section */
.project-slider-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.project-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.project-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

.project-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.project-slide.active {
    opacity: 1;
    display: block;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-slide:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-slide:hover .project-overlay {
    transform: translateY(0);
}

.project-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.project-status {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-arrow i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.slider-arrow:hover i {
    color: var(--secondary);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive Design for Project Slider */
@media (max-width: 768px) {
    .project-slider {
        height: 400px;
    }
    
    .project-overlay {
        padding: 1.5rem;
    }
    
    .project-info h4 {
        font-size: 1.3rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow i {
        font-size: 1rem;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .project-slider {
        height: 300px;
    }
    
    .project-overlay {
        padding: 1rem;
    }
    
    .project-info h4 {
        font-size: 1.1rem;
    }
    
    .project-info p {
        font-size: 0.9rem;
    }
    
    .project-status {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow i {
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    .feature-card {

	 height: 95%; 
    }
    .hero-image {
        width: 100%;

        margin: 0;
    }
    .value-card {

        height: 95%;
    }
    .service-card {

        height: 95%;
    }
    .specialized-service {
        height: 95%;

    }
    .map-container {
        box-shadow:none;
    }
    .video-container {
	height: 450px;
    }
    .interior-video {
	margin-bottom: 0; 
}

}
