:root {
    --primary: #1a1a1a;
    --secondary: #c8a97e;
    --light: #f8f5f0;
    --dark: #2a2a2a;
    --text: #555555;
    --white: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    /* color: var(--primary); */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text);
}

/* Header styles moved to header.css */
/*
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.logo-text p {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--secondary);
    margin: 0;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}
*/

/* Mobile header styles moved to header.css */
/*
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}
*/

/* Hero Section */
.hero {
    /* height: 100vh; */
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assests/index/h1.webp') no-repeat center center / cover;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* margin-top: 4rem; */
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    width: 400px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    color: var(--dark);
}

.hero-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.phone-input {
    display: flex;
    align-items: center;
}

.phone-input select {
    width: 80px;
    margin-right: 10px;
}

.phone-input input {
    flex: 1;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.form-submit:hover {
    background-color: var(--primary);
}

/* Perfect Interior Section */
.perfect-interior {
    padding: 100px 0;
    background-color: var(--white);
}

.services-highlight {
    margin: 50px 0;
}

.services-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.service-highlight {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    transition: all 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-highlight i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-highlight h4 {
    font-size: 18px;
}

.cta-box {
    text-align: center;
    margin-top: 50px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background-color: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

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

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: var(--white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-overlay p {
    color: var(--white);
    transform: translateY(20px);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light);
    overflow: hidden;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 20px;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.client-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.client-designation {
    color: var(--secondary);
    font-size: 14px;
}

/* Slick Slider Custom Styles */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: var(--secondary);
}

.slick-prev:before,
.slick-next:before {
    color: var(--secondary);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: var(--white);
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--secondary);
    opacity: 0.3;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

@media (max-width: 992px) {
    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 10px;
        padding: 30px 20px;
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assests/index/f1.webp') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
}

/* Footer styles moved to footer.css */
/*
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 0;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
*/

/* Form Success */
.form-success {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.form-success i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Error States */
.error {
    border-color: #ff6b6b !important;
}

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
}

/* No Scroll */
.no-scroll {
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-form {
        width: 100%;
        max-width: 500px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-img {
        margin-bottom: 40px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services-row {
        flex-direction: column;
        align-items: center;
    }

    .service-highlight {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .hero-form {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .portfolio-item {
        height: 300px;
    }
}




/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--white);
}

.features-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.features-img {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.features-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.features-list {
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary);
    transform: rotate(15deg);
}

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-text p {
    line-height: 1.8;
}



@media (max-width: 992px) {


    .features-container {
        flex-direction: column;
    }


    .features-img {
        margin-bottom: 40px;
    }
}